Delete Link
networkmanager_delete_link | R Documentation |
Deletes an existing link¶
Description¶
Deletes an existing link. You must first disassociate the link from any devices and customer gateways.
Usage¶
Arguments¶
GlobalNetworkId
[required] The ID of the global network.
LinkId
[required] The ID of the link.
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"
)
)
)
)