Update Connection Group
cloudfront_update_connection_group | R Documentation |
Updates a connection group¶
Description¶
Updates a connection group.
Usage¶
cloudfront_update_connection_group(Id, Ipv6Enabled, IfMatch,
AnycastIpListId, Enabled)
Arguments¶
Id |
[required] The ID of the connection group. |
Ipv6Enabled |
Enable IPv6 for the connection group. For more information, see Enable IPv6 in the Amazon CloudFront Developer Guide. |
IfMatch |
[required] The value of the |
AnycastIpListId |
The ID of the Anycast static IP list. |
Enabled |
Whether the connection group is enabled. |
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$update_connection_group(
Id = "string",
Ipv6Enabled = TRUE|FALSE,
IfMatch = "string",
AnycastIpListId = "string",
Enabled = TRUE|FALSE
)