Amazon Route 53 Resolver · JSON Structure

Amazon Route53 Resolver Openapi Ip Address Request Structure

In a CreateResolverEndpoint request, the IP address that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). IpAddressRequest also includes the ID of the subnet that contains the IP address.

Type: object Properties: 3 Required: 1
DNSHybrid CloudNetworking

IpAddressRequest is a JSON Structure definition published by Amazon Route 53 Resolver, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

SubnetId Ip Ipv6

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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-ip-address-request-structure.json",
  "description": "In a <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverEndpoint.html\">CreateResolverEndpoint</a> request, the IP address that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). <code>IpAddressRequest</code> also includes the ID of the subnet that contains the IP address.",
  "type": "object",
  "properties": {
    "SubnetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SubnetId"
        },
        {
          "description": "The ID of the subnet that contains the IP address. "
        }
      ]
    },
    "Ip": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Ip"
        },
        {
          "description": "The IPv4 address that you want to use for DNS queries."
        }
      ]
    },
    "Ipv6": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Ipv6"
        },
        {
          "description": " The IPv6 address that you want to use for DNS queries. "
        }
      ]
    }
  },
  "required": [
    "SubnetId"
  ],
  "name": "IpAddressRequest"
}