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¶
Arguments¶
GlobalNetworkId[required] The ID of the global network.
SiteIdsOne or more site IDs. The maximum is 10.
MaxResultsThe maximum number of results to return.
NextTokenThe 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"
)