Skip to main content

associated_ipv6_pool_cidrs

Creates, updates, deletes, gets or lists an associated_ipv6_pool_cidrs resource.

Overview

Nameassociated_ipv6_pool_cidrs
TypeResource
Idaws.ec2.associated_ipv6_pool_cidrs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
associated_resourcestringThe resource that's associated with the IPv6 CIDR block.
ipv_6_cidrstringThe IPv6 CIDR block.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_associated_ipv6_pool_cidrsselectPoolId, regionNextToken, MaxResults, DryRunGets information about the IPv6 CIDR block associations for a specified IPv6 address pool.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
PoolIdstringThe ID of the IPv6 address pool.
regionstringAWS region (default: us-east-1)
DryRunbooleanChecks 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 is UnauthorizedOperation.
MaxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
NextTokenstringThe token for the next page of results.

SELECT examples

Gets information about the IPv6 CIDR block associations for a specified IPv6 address pool.

SELECT
associated_resource,
ipv_6_cidr
FROM aws.ec2.associated_ipv6_pool_cidrs
WHERE PoolId = '{{ PoolId }}' -- required
AND region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
AND DryRun = '{{ DryRun }}'
;