Skip to content

Get Sites

networkmanager_get_sites R Documentation

Gets information about one or more of your sites in a global network

Description

Gets information about one or more of your sites in a global network.

Usage

networkmanager_get_sites(GlobalNetworkId, SiteIds, MaxResults,
  NextToken)

Arguments

GlobalNetworkId

[required] The ID of the global network.

SiteIds

One or more site IDs. The maximum is 10.

MaxResults

The maximum number of results to return.

NextToken

The token for the next page of results.

Value

A list with the following syntax:

list(
  Sites = list(
    list(
      SiteId = "string",
      SiteArn = "string",
      GlobalNetworkId = "string",
      Description = "string",
      Location = list(
        Address = "string",
        Latitude = "string",
        Longitude = "string"
      ),
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_sites(
  GlobalNetworkId = "string",
  SiteIds = list(
    "string"
  ),
  MaxResults = 123,
  NextToken = "string"
)