List Cidr Locations
route53_list_cidr_locations | R Documentation |
Returns a paginated list of CIDR locations for the given collection (metadata only, does not include CIDR blocks)¶
Description¶
Returns a paginated list of CIDR locations for the given collection (metadata only, does not include CIDR blocks).
Usage¶
route53_list_cidr_locations(CollectionId, NextToken, MaxResults)
Arguments¶
CollectionId |
[required] The CIDR collection ID. |
NextToken |
An opaque pagination token to indicate where the service is to begin enumerating results. If no value is provided, the listing of results starts from the beginning. |
MaxResults |
The maximum number of CIDR collection locations to return in the response. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
CidrLocations = list(
list(
LocationName = "string"
)
)
)
Request syntax¶
svc$list_cidr_locations(
CollectionId = "string",
NextToken = "string",
MaxResults = "string"
)