Create Connection Group
cloudfront_create_connection_group | R Documentation |
Creates a connection group¶
Description¶
Creates a connection group.
Usage¶
cloudfront_create_connection_group(Name, Ipv6Enabled, Tags,
AnycastIpListId, Enabled)
Arguments¶
Name |
[required] The name of the connection group. Enter a friendly identifier that is unique within your Amazon Web Services account. This name can't be updated after you create the connection group. |
Ipv6Enabled |
Enable IPv6 for the connection group. The default is
|
Tags |
|
AnycastIpListId |
The ID of the Anycast static IP list. |
Enabled |
Enable the connection group. |
Value¶
A list with the following syntax:
list(
ConnectionGroup = list(
Id = "string",
Name = "string",
Arn = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Tags = list(
Items = list(
list(
Key = "string",
Value = "string"
)
)
),
Ipv6Enabled = TRUE|FALSE,
RoutingEndpoint = "string",
AnycastIpListId = "string",
Status = "string",
Enabled = TRUE|FALSE,
IsDefault = TRUE|FALSE
),
ETag = "string"
)
Request syntax¶
svc$create_connection_group(
Name = "string",
Ipv6Enabled = TRUE|FALSE,
Tags = list(
Items = list(
list(
Key = "string",
Value = "string"
)
)
),
AnycastIpListId = "string",
Enabled = TRUE|FALSE
)