associated_ipv6_pool_cidrs
Creates, updates, deletes, gets or lists an associated_ipv6_pool_cidrs resource.
Overview
| Name | associated_ipv6_pool_cidrs |
| Type | Resource |
| Id | aws.ec2.associated_ipv6_pool_cidrs |
Fields
The following fields are returned by SELECT queries:
- get_associated_ipv6_pool_cidrs
| Name | Datatype | Description |
|---|---|---|
associated_resource | string | The resource that's associated with the IPv6 CIDR block. |
ipv_6_cidr | string | The IPv6 CIDR block. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_associated_ipv6_pool_cidrs | select | PoolId, region | NextToken, MaxResults, DryRun | Gets 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.
| Name | Datatype | Description |
|---|---|---|
PoolId | string | The ID of the IPv6 address pool. |
region | string | AWS region (default: us-east-1) |
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 is UnauthorizedOperation. |
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. |
NextToken | string | The token for the next page of results. |
SELECT examples
- get_associated_ipv6_pool_cidrs
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 }}'
;