IpAddressRequest

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.

DNSHybrid CloudNetworking

Properties

Name Type Description
SubnetId object
Ip object
Ipv6 object
View JSON Schema on GitHub

JSON Schema

amazon-route53-resolver-openapi-ip-address-request-schema.json Raw ↑
{
  "$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-ip-address-request-schema.json",
  "title": "IpAddressRequest",
  "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"
  ]
}