List Connection Groups
cloudfront_list_connection_groups | R Documentation |
Lists the connection groups in your Amazon Web Services account¶
Description¶
Lists the connection groups in your Amazon Web Services account.
Usage¶
cloudfront_list_connection_groups(AssociationFilter, Marker, MaxItems)
Arguments¶
AssociationFilter |
Filter by associated Anycast IP list ID. |
Marker |
The marker for the next set of connection groups to retrieve. |
MaxItems |
The maximum number of connection groups to return. |
Value¶
A list with the following syntax:
list(
NextMarker = "string",
ConnectionGroups = list(
list(
Id = "string",
Name = "string",
Arn = "string",
RoutingEndpoint = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
ETag = "string",
AnycastIpListId = "string",
Enabled = TRUE|FALSE,
Status = "string",
IsDefault = TRUE|FALSE
)
)
)
Request syntax¶
svc$list_connection_groups(
AssociationFilter = list(
AnycastIpListId = "string"
),
Marker = "string",
MaxItems = 123
)