Get Connection Group By Routing Endpoint
cloudfront_get_connection_group_by_routing_endpoint | R Documentation |
Gets information about a connection group by using the endpoint that you specify¶
Description¶
Gets information about a connection group by using the endpoint that you specify.
Usage¶
cloudfront_get_connection_group_by_routing_endpoint(RoutingEndpoint)
Arguments¶
RoutingEndpoint |
[required] The routing endpoint for the target connection group, such as d111111abcdef8.cloudfront.net. |
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_by_routing_endpoint(
RoutingEndpoint = "string"
)