Create Link
| networkmanager_create_link | R Documentation |
Creates a new link for a specified site¶
Description¶
Creates a new link for a specified site.
Usage¶
Arguments¶
GlobalNetworkId[required] The ID of the global network.
DescriptionA description of the link.
Constraints: Maximum length of 256 characters.
TypeThe type of the link.
Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
Bandwidth[required] The upload speed and download speed in Mbps.
ProviderThe provider of the link.
Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
SiteId[required] The ID of the site.
TagsThe tags to apply to the resource during creation.
Value¶
A list with the following syntax:
list(
Link = 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"
)
)
)
)