Skip to main content

resolver_endpoint_ip_addresses

Creates, updates, deletes, gets or lists a resolver_endpoint_ip_addresses resource.

Overview

Nameresolver_endpoint_ip_addresses
TypeResource
Idaws.route53resolver.resolver_endpoint_ip_addresses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestringThe date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).
ipstringOne IPv4 address that the Resolver endpoint uses for DNS queries.
ip_idstringThe ID of one IP address.
ipv_6stringOne IPv6 address that the Resolver endpoint uses for DNS queries.
modification_timestringThe date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).
statusstringA 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_messagestringA message that provides additional information about the status of the request.
subnet_idstringThe ID of one subnet.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resolver_endpoint_ip_addressesselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;