Amazon Route 53 Resolver · Schema
ListResolverEndpointIpAddressesResponse
ListResolverEndpointIpAddressesResponse schema from openapi
DNSHybrid CloudNetworking
Properties
| Name | Type | Description |
|---|---|---|
| NextToken | object | |
| MaxResults | object | |
| IpAddresses | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-route53-resolver/refs/heads/main/json-schema/amazon-route53-resolver-openapi-list-resolver-endpoint-ip-addresses-response-schema.json",
"title": "ListResolverEndpointIpAddressesResponse",
"description": "ListResolverEndpointIpAddressesResponse schema from openapi",
"type": "object",
"properties": {
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "If the specified endpoint has more than <code>MaxResults</code> IP addresses, you can submit another <code>ListResolverEndpointIpAddresses</code> request to get the next group of IP addresses. In the next request, specify the value of <code>NextToken</code> from the previous response. "
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResults"
},
{
"description": "The value that you specified for <code>MaxResults</code> in the request."
}
]
},
"IpAddresses": {
"allOf": [
{
"$ref": "#/components/schemas/IpAddressesResponse"
},
{
"description": "Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints)."
}
]
}
}
}