EC2 / Client / get_associated_ipv6_pool_cidrs
get_associated_ipv6_pool_cidrs#
- EC2.Client.get_associated_ipv6_pool_cidrs(**kwargs)#
Gets information about the IPv6 CIDR block associations for a specified IPv6 address pool.
See also: AWS API Documentation
Request Syntax
response = client.get_associated_ipv6_pool_cidrs( PoolId='string', NextToken='string', MaxResults=123, DryRun=True|False )
- Parameters:
PoolId (string) –
[REQUIRED]
The ID of the IPv6 address pool.
NextToken (string) – The token for the next page of results.
MaxResults (integer) – The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.DryRun (boolean) – 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
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.
- Return type:
dict
- Returns:
Response Syntax
{ 'Ipv6CidrAssociations': [ { 'Ipv6Cidr': 'string', 'AssociatedResource': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
Ipv6CidrAssociations (list) –
Information about the IPv6 CIDR block associations.
(dict) –
Describes an IPv6 CIDR block association.
Ipv6Cidr (string) –
The IPv6 CIDR block.
AssociatedResource (string) –
The resource that’s associated with the IPv6 CIDR block.
NextToken (string) –
The token to use to retrieve the next page of results. This value is
null
when there are no more results to return.