Create Global Network
networkmanager_create_global_network | R Documentation |
Creates a new, empty global network¶
Description¶
Creates a new, empty global network.
Usage¶
networkmanager_create_global_network(Description, Tags)
Arguments¶
Description |
A description of the global network. Constraints: Maximum length of 256 characters. |
Tags |
The tags to apply to the resource during creation. |
Value¶
A list with the following syntax:
list(
GlobalNetwork = list(
GlobalNetworkId = "string",
GlobalNetworkArn = "string",
Description = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
Request syntax¶
svc$create_global_network(
Description = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)