{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-route53-resolver/refs/heads/main/json-structure/amazon-route53-resolver-openapi-target-address-structure.json",
"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. "
}
]
}
},
"name": "TargetAddress"
}