List Cidr Blocks
route53_list_cidr_blocks | R Documentation |
Returns a paginated list of location objects and their CIDR blocks¶
Description¶
Returns a paginated list of location objects and their CIDR blocks.
Usage¶
route53_list_cidr_blocks(CollectionId, LocationName, NextToken,
MaxResults)
Arguments¶
CollectionId |
[required] The UUID of the CIDR collection. |
LocationName |
The name of the CIDR collection location. |
NextToken |
An opaque pagination token to indicate where the service is to begin enumerating results. |
MaxResults |
Maximum number of results you want returned. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
CidrBlocks = list(
list(
CidrBlock = "string",
LocationName = "string"
)
)
)
Request syntax¶
svc$list_cidr_blocks(
CollectionId = "string",
LocationName = "string",
NextToken = "string",
MaxResults = "string"
)