Amazon Route 53 Resolver · Schema
ResolverConfig
A complex type that contains information about a Resolver configuration for a VPC.
DNSHybrid CloudNetworking
Properties
| Name | Type | Description |
|---|---|---|
| Id | object | |
| ResourceId | object | |
| OwnerId | object | |
| AutodefinedReverse | 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-resolver-config-schema.json",
"title": "ResolverConfig",
"description": "A complex type that contains information about a Resolver configuration for a VPC.",
"type": "object",
"properties": {
"Id": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceId"
},
{
"description": "ID for the Resolver configuration."
}
]
},
"ResourceId": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceId"
},
{
"description": "The ID of the Amazon Virtual Private Cloud VPC that you're configuring Resolver for."
}
]
},
"OwnerId": {
"allOf": [
{
"$ref": "#/components/schemas/AccountId"
},
{
"description": "The owner account ID of the Amazon Virtual Private Cloud VPC."
}
]
},
"AutodefinedReverse": {
"allOf": [
{
"$ref": "#/components/schemas/ResolverAutodefinedReverseStatus"
},
{
"description": "<p> The status of whether or not the Resolver will create autodefined rules for reverse DNS lookups. This is enabled by default. The status can be one of following:</p> <ul> <li> <p> <b>ENABLING:</b> Autodefined rules for reverse DNS lookups are being enabled but are not complete.</p> </li> <li> <p> <b>ENABLED:</b> Autodefined rules for reverse DNS lookups are enabled.</p> </li> <li> <p> <b>DISABLING:</b> Autodefined rules for reverse DNS lookups are being disabled but are not complete.</p> </li> <li> <p> <b>DISABLED:</b> Autodefined rules for reverse DNS lookups are disabled.</p> </li> </ul>"
}
]
}
}
}