Get Connection Group
cloudfront_get_connection_group | R Documentation |
Gets information about a connection group¶
Description¶
Gets information about a connection group.
Usage¶
cloudfront_get_connection_group(Identifier)
Arguments¶
Identifier |
[required] The ID, name, or Amazon Resource Name (ARN) of 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$get_connection_group(
Identifier = "string"
)