AssociateResolverEndpointIpAddressRequest

AssociateResolverEndpointIpAddressRequest schema from openapi

DNSHybrid CloudNetworking

Properties

Name Type Description
ResolverEndpointId object
IpAddress object
View JSON Schema on GitHub

JSON Schema

amazon-route53-resolver-openapi-associate-resolver-endpoint-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-associate-resolver-endpoint-ip-address-request-schema.json",
  "title": "AssociateResolverEndpointIpAddressRequest",
  "description": "AssociateResolverEndpointIpAddressRequest schema from openapi",
  "type": "object",
  "properties": {
    "ResolverEndpointId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The ID of the Resolver endpoint that you want to associate IP addresses with."
        }
      ]
    },
    "IpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpAddressUpdate"
        },
        {
          "description": "Either the IPv4 address that you want to add to a Resolver endpoint or a subnet ID. If you specify a subnet ID, Resolver chooses an IP address for you from the available IPs in the specified subnet."
        }
      ]
    }
  },
  "required": [
    "ResolverEndpointId",
    "IpAddress"
  ]
}