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.
MaxResultsThe maximum number of IP addresses that you want to return in the response to a
list_resolver_endpoint_ip_addressesrequest. If you don't specify a value forMaxResults, Resolver returns up to 100 IP addresses.NextTokenFor the first
list_resolver_endpoint_ip_addressesrequest, omit this value.If the specified Resolver endpoint has more than
MaxResultsIP addresses, you can submit anotherlist_resolver_endpoint_ip_addressesrequest to get the next group of IP addresses. In the next request, specify the value ofNextTokenfrom 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"
)
)
)