Describe Ipv 6 Pools
ec2_describe_ipv_6_pools | R Documentation |
Describes your IPv6 address pools¶
Description¶
Describes your IPv6 address pools.
Usage¶
ec2_describe_ipv_6_pools(PoolIds, NextToken, MaxResults, DryRun,
Filters)
Arguments¶
PoolIds |
The IDs of the IPv6 address pools. |
NextToken |
The token for the next page of results. |
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
Filters |
One or more filters.
|
Value¶
A list with the following syntax:
list(
Ipv6Pools = list(
list(
PoolId = "string",
Description = "string",
PoolCidrBlocks = list(
list(
Cidr = "string"
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_ipv_6_pools(
PoolIds = list(
"string"
),
NextToken = "string",
MaxResults = 123,
DryRun = TRUE|FALSE,
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)