Get Links
| networkmanager_get_links | R Documentation |
Gets information about one or more links in a specified global network¶
Description¶
Gets information about one or more links in a specified global network.
If you specify the site ID, you cannot specify the type or provider in the same request. You can specify the type and provider in the same request.
Usage¶
Arguments¶
GlobalNetworkId[required] The ID of the global network.
LinkIdsOne or more link IDs. The maximum is 10.
SiteIdThe ID of the site.
TypeThe link type.
ProviderThe link provider.
MaxResultsThe maximum number of results to return.
NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
Links = list(
list(
LinkId = "string",
LinkArn = "string",
GlobalNetworkId = "string",
SiteId = "string",
Description = "string",
Type = "string",
Bandwidth = list(
UploadSpeed = 123,
DownloadSpeed = 123
),
Provider = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)