List Resolver Endpoint Ip Addresses
route53resolver_list_resolver_endpoint_ip_addresses | R Documentation |
Gets the IP addresses for a specified Resolver endpoint¶
Description¶
Gets the IP addresses for a specified Resolver endpoint.
Usage¶
Arguments¶
ResolverEndpointId
[required] The ID of the Resolver endpoint that you want to get IP addresses for.
MaxResults
The maximum number of IP addresses that you want to return in the response to a
list_resolver_endpoint_ip_addresses
request. If you don't specify a value forMaxResults
, Resolver returns up to 100 IP addresses.NextToken
For the first
list_resolver_endpoint_ip_addresses
request, omit this value.If the specified Resolver endpoint has more than
MaxResults
IP addresses, you can submit anotherlist_resolver_endpoint_ip_addresses
request to get the next group of IP addresses. In the next request, specify the value ofNextToken
from the previous response.
Value¶
A list with the following syntax:
list(
NextToken = "string",
MaxResults = 123,
IpAddresses = list(
list(
IpId = "string",
SubnetId = "string",
Ip = "string",
Ipv6 = "string",
Status = "CREATING"|"FAILED_CREATION"|"ATTACHING"|"ATTACHED"|"REMAP_DETACHING"|"REMAP_ATTACHING"|"DETACHING"|"FAILED_RESOURCE_GONE"|"DELETING"|"DELETE_FAILED_FAS_EXPIRED"|"UPDATING"|"UPDATE_FAILED",
StatusMessage = "string",
CreationTime = "string",
ModificationTime = "string"
)
)
)