Amazon Route 53 Resolver · Schema
ListResolverConfigsRequest
ListResolverConfigsRequest schema from openapi
DNSHybrid CloudNetworking
Properties
| Name | Type | Description |
|---|---|---|
| MaxResults | object | |
| NextToken | 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-configs-request-schema.json",
"title": "ListResolverConfigsRequest",
"description": "ListResolverConfigsRequest schema from openapi",
"type": "object",
"properties": {
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/ListResolverConfigsMaxResult"
},
{
"description": "The maximum number of Resolver configurations that you want to return in the response to a <code>ListResolverConfigs</code> request. If you don't specify a value for <code>MaxResults</code>, up to 100 Resolver configurations are returned."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "<p>(Optional) If the current Amazon Web Services account has more than <code>MaxResults</code> Resolver configurations, use <code>NextToken</code> to get the second and subsequent pages of results.</p> <p>For the first <code>ListResolverConfigs</code> request, omit this value.</p> <p>For the second and subsequent requests, get the value of <code>NextToken</code> from the previous response and specify that value for <code>NextToken</code> in the request.</p>"
}
]
}
}
}