{
"$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-target-address-schema.json",
"title": "TargetAddress",
"description": "In a CreateResolverRule request, an array of the IPs that you want to forward DNS queries to.",
"type": "object",
"properties": {
"Ip": {
"allOf": [
{
"$ref": "#/components/schemas/Ip"
},
{
"description": "One IPv4 address that you want to forward DNS queries to."
}
]
},
"Port": {
"allOf": [
{
"$ref": "#/components/schemas/Port"
},
{
"description": "The port at Ip that you want to forward DNS queries to."
}
]
},
"Ipv6": {
"allOf": [
{
"$ref": "#/components/schemas/Ipv6"
},
{
"description": " One IPv6 address that you want to forward DNS queries to. "
}
]
}
}
}