resolver_endpoint_ip_addresses
Creates, updates, deletes, gets or lists a resolver_endpoint_ip_addresses resource.
Overview
| Name | resolver_endpoint_ip_addresses |
| Type | Resource |
| Id | aws.route53resolver.resolver_endpoint_ip_addresses |
Fields
The following fields are returned by SELECT queries:
- list_resolver_endpoint_ip_addresses
| Name | Datatype | Description |
|---|---|---|
creation_time | string | The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC). |
ip | string | One IPv4 address that the Resolver endpoint uses for DNS queries. |
ip_id | string | The ID of one IP address. |
ipv_6 | string | One IPv6 address that the Resolver endpoint uses for DNS queries. |
modification_time | string | The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC). |
status | string | A status code that gives the current status of the request. (CREATING, FAILED_CREATION, FAILED_CREATION_INSUFFICIENT_EC2_CAPACITY_IN_OUTPOST, ATTACHING, ATTACHED, REMAP_DETACHING, REMAP_ATTACHING, DETACHING, FAILED_RESOURCE_GONE, DELETING, DELETE_FAILED_FAS_EXPIRED, UPDATING, UPDATE_FAILED, ISOLATED) |
status_message | string | A message that provides additional information about the status of the request. |
subnet_id | string | The ID of one subnet. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_resolver_endpoint_ip_addresses | select | region | Gets the IP addresses for a specified Resolver endpoint. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_resolver_endpoint_ip_addresses
Gets the IP addresses for a specified Resolver endpoint.
SELECT
creation_time,
ip,
ip_id,
ipv_6,
modification_time,
status,
status_message,
subnet_id
FROM aws.route53resolver.resolver_endpoint_ip_addresses
WHERE region = '{{ region }}' -- required
;