UNPKG

@itentialopensource/adapter-amazon_route53

Version:

This adapter integrates with system described as: Amazon Route53.

11,634 lines 480 kB
openapi: 3.0.0
info:
  title: Amazon Route 53
  description: Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.
  contact:
    name: Mike Ralphson
    url: https://github.com/mermade/aws2openapi
    email: mike.ralphson@gmail.com
  version: '2013-04-01'
servers:
- url: https://route53.amazonaws.com
  description: The general Route 53 multi-region endpoint
  variables: {}
- url: http://route53.us-gov.amazonaws.com
  description: The general Route 53 endpoint for AWS GovCloud (US) and AWS GovCloud (US-East)
  variables: {}
- url: https://route53.us-gov.amazonaws.com
  description: The general Route 53 endpoint for AWS GovCloud (US) and AWS GovCloud (US-East)
  variables: {}
- url: http://route53.amazonaws.com.cn
  description: The general Route 53 endpoint for China (Beijing) and China (Ningxia)
  variables: {}
- url: https://route53.amazonaws.com.cn
  description: The general Route 53 endpoint for China (Beijing) and China (Ningxia)
  variables: {}
paths:
  /2013-04-01/keysigningkey/{HostedZoneId}/{Name}/activate:
    post:
      summary: ActivateKeySigningKey
      description: Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC. This operation changes the KSK status to <code>ACTIVE</code>.
      operationId: ActivateKeySigningKey
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HostedZoneId
        in: path
        description: A unique string used to identify a hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Name
        in: path
        description: A string used to identify a key-signing key (KSK). <code>Name</code> can include numbers, letters, and underscores (_). <code>Name</code> must be unique for each key-signing key in the same hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 128
          minLength: 3
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ActivateKeySigningKeyResponse'
                - xml:
                    name: ActivateKeySigningKeyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchKeySigningKey
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidKeySigningKeyStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidSigningStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidKMSArn
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/associatevpc:
    post:
      summary: AssociateVPCWithHostedZone
      description: <p>Associates an Amazon VPC with a private hosted zone. </p> <important> <p>To perform the association, the VPC and the private hosted zone must already exist. You can't convert a public hosted zone into a private hosted zone.</p> </important> <note> <p>If you want to associate a VPC that was created by using one Amazon Web Services account with a private hosted zone that was created by using a different account, the Amazon Web Services account that created the private hosted zone must first submit a <code>CreateVPCAssociationAuthorization</code> request. Then the account that created the VPC must submit an <code>AssociateVPCWithHostedZone</code> request.</p> </note>
      operationId: AssociateVPCWithHostedZone
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: <p>The ID of the private hosted zone that you want to associate an Amazon VPC with.</p> <p>Note that you can't associate a VPC with a hosted zone that doesn't have an existing VPC association.</p>
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/HostedzoneAssociatevpc201341Request'
              - xml:
                  name: HostedzoneAssociatevpc201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/AssociateVPCWithHostedZoneResponse'
                - description: A complex type that contains the response information for the <code>AssociateVPCWithHostedZone</code> request.
                  xml:
                    name: AssociateVPCWithHostedZoneResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NotAuthorizedException
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidVPCId
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: PublicZoneVPCAssociation
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: ConflictingDomainExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: LimitsExceeded
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
        '487':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response487
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/rrset/:
    post:
      summary: ChangeResourceRecordSets
      description: "<p>Creates, changes, or deletes a resource record set, which contains authoritative DNS information for a specified domain name or subdomain name. For example, you can use <code>ChangeResourceRecordSets</code> to create a resource record set that routes traffic for test.example.com to a web server that has an IP address of 192.0.2.44.</p> <p> <b>Deleting Resource Record Sets</b> </p> <p>To delete a resource record set, you must specify all the same values that you specified when you created it.</p> <p> <b>Change Batches and Transactional Changes</b> </p> <p>The request body must include a document with a <code>ChangeResourceRecordSetsRequest</code> element. The request body contains a list of change items, known as a change batch. Change batches are considered transactional changes. Route 53 validates the changes in the request and then either makes all or none of the changes in the change batch request. This ensures that DNS routing isn't adversely affected by partial changes to the resource record sets in a hosted zone. </p> <p>For example, suppose a change batch request contains two changes: it deletes the <code>CNAME</code> resource record set for www.example.com and creates an alias resource record set for www.example.com. If validation for both records succeeds, Route 53 deletes the first resource record set and creates the second resource record set in a single operation. If validation for either the <code>DELETE</code> or the <code>CREATE</code> action fails, then the request is canceled, and the original <code>CNAME</code> record continues to exist.</p> <note> <p>If you try to delete the same resource record set more than once in a single change batch, Route 53 returns an <code>InvalidChangeBatch</code> error.</p> </note> <p> <b>Traffic Flow</b> </p> <p>To create resource record sets for complex routing configurations, use either the traffic flow visual editor in the Route 53 console or the API actions for traffic policies and traffic policy instances. Save the configuration as a traffic policy, then associate the traffic policy with one or more domain names (such as example.com) or subdomain names (such as www.example.com), in the same hosted zone or in multiple hosted zones. You can roll back the updates if the new configuration isn't performing as expected. For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html\">Using Traffic Flow to Route DNS Traffic</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p> <b>Create, Delete, and Upsert</b> </p> <p>Use <code>ChangeResourceRecordsSetsRequest</code> to perform the following actions:</p> <ul> <li> <p> <code>CREATE</code>: Creates a resource record set that has the specified values.</p> </li> <li> <p> <code>DELETE</code>: Deletes an existing resource record set that has the specified values.</p> </li> <li> <p> <code>UPSERT</code>: If a resource record set does not already exist, Amazon Web Services creates it. If a resource set does exist, Route 53 updates it with the values in the request. </p> </li> </ul> <p> <b>Syntaxes for Creating, Updating, and Deleting Resource Record Sets</b> </p> <p>The syntax for a request depends on the type of resource record set that you want to create, delete, or update, such as weighted, alias, or failover. The XML elements in your request must appear in the order listed in the syntax. </p> <p>For an example for each type of resource record set, see \"Examples.\"</p> <p>Don't refer to the syntax in the \"Parameter Syntax\" section, which includes all of the elements for every kind of resource record set that you can create, delete, or update by using <code>ChangeResourceRecordSets</code>. </p> <p> <b>Change Propagation to Route 53 DNS Servers</b> </p> <p>When you submit a <code>ChangeResourceRecordSets</code> request, Route 53 propagates your changes to all of the Route 53 authoritative DNS servers. While your changes are propagating, <code>GetChange</code> returns a status of <code>PENDING</code>. When propagation is complete, <code>GetChange</code> returns a status of <code>INSYNC</code>. Changes generally propagate to all Route 53 name servers within 60 seconds. For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html\">GetChange</a>.</p> <p> <b>Limits on ChangeResourceRecordSets Requests</b> </p> <p>For information about the limits on a <code>ChangeResourceRecordSets</code> request, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html\">Limits</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>"
      operationId: ChangeResourceRecordSets
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the hosted zone that contains the resource record sets that you want to change.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/HostedzoneRrset201341Request'
              - xml:
                  name: HostedzoneRrset201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ChangeResourceRecordSetsResponse'
                - description: A complex type containing the response for the request.
                  xml:
                    name: ChangeResourceRecordSetsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidChangeBatch
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/tags/{ResourceType}/{ResourceId}:
    post:
      summary: ChangeTagsForResource
      description: <p>Adds, edits, or deletes tags for a health check or a hosted zone.</p> <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
      operationId: ChangeTagsForResource
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: ResourceType
        in: path
        description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/TagResourceType'
          - description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
            example: healthcheck
      - name: ResourceId
        in: path
        description: The ID of the resource for which you want to add, change, or delete tags.
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Tags201341Request'
              - xml:
                  name: Tags201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                description: Empty response for the request.
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: ThrottlingException
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: ListTagsForResource
      description: <p>Lists tags for one health check or hosted zone. </p> <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
      operationId: ListTagsForResource
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: ResourceType
        in: path
        description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/TagResourceType'
          - description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
            example: healthcheck
      - name: ResourceId
        in: path
        description: The ID of the resource for which you want to retrieve tags.
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTagsForResourceResponse'
                - description: A complex type that contains information about the health checks or hosted zones for which you want to list tags.
                  xml:
                    name: ListTagsForResourceResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: ThrottlingException
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/healthcheck:
    post:
      summary: CreateHealthCheck
      description: <p>Creates a new health check.</p> <p>For information about adding health checks to resource record sets, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId">HealthCheckId</a> in <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html">ChangeResourceRecordSets</a>. </p> <p> <b>ELB Load Balancers</b> </p> <p>If you're registering EC2 instances with an Elastic Load Balancing (ELB) load balancer, do not create Amazon Route 53 health checks for the EC2 instances. When you register an EC2 instance with a load balancer, you configure settings for an ELB health check, which performs a similar function to a Route 53 health check.</p> <p> <b>Private Hosted Zones</b> </p> <p>You can associate health checks with failover resource record sets in a private hosted zone. Note the following:</p> <ul> <li> <p>Route 53 health checkers are outside the VPC. To check the health of an endpoint within a VPC by IP address, you must assign a public IP address to the instance in the VPC.</p> </li> <li> <p>You can configure a health checker to check the health of an external resource that the instance relies on, such as a database server.</p> </li> <li> <p>You can create a CloudWatch metric, associate an alarm with the metric, and then create a health check that is based on the state of the alarm. For example, you might create a CloudWatch metric that checks the status of the Amazon EC2 <code>StatusCheckFailed</code> metric, add an alarm to the metric, and then create a health check that is based on the state of the alarm. For information about creating CloudWatch metrics and alarms by using the CloudWatch console, see the <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html">Amazon CloudWatch User Guide</a>.</p> </li> </ul>
      operationId: CreateHealthCheck
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Healthcheck201341Request'
              - xml:
                  name: Healthcheck201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateHealthCheckResponse'
                - description: A complex type containing the response information for the new health check.
                  xml:
                    name: CreateHealthCheckResponse
                    attribute: false
                    wrapped: false
        '480':
          description: TooManyHealthChecks
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: HealthCheckAlreadyExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: ListHealthChecks
      description: 'Retrieve a list of the health checks that are associated with the current Amazon Web Services account. '
      operationId: ListHealthChecks
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: marker
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more health checks. To get another group, submit another <code>ListHealthChecks</code> request. </p> <p>For the value of <code>marker</code>, specify the value of <code>NextMarker</code> from the previous response, which is the ID of the first health check that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more health checks to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 64
          type: string
      - name: maxitems
        in: query
        description: The maximum number of health checks that you want <code>ListHealthChecks</code> to return in response to the current request. Amazon Route 53 returns a maximum of 100 items. If you set <code>MaxItems</code> to a value greater than 100, Route 53 returns only the first 100 health checks.
        style: form
        explode: true
        schema:
          type: string
      - name: MaxItems
        in: query
        description: Pagination limit
        style: form
        explode: true
        schema:
          type: string
      - name: Marker
        in: query
        description: Pagination token
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListHealthChecksResponse'
                - description: A complex type that contains the response to a <code>ListHealthChecks</code> request.
                  xml:
                    name: ListHealthChecksResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: IncompatibleVersion
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone:
    post:
      summary: CreateHostedZone
      description: <p>Creates a new public or private hosted zone. You create records in a public hosted zone to define how you want to route traffic on the internet for a domain, such as example.com, and its subdomains (apex.example.com, acme.example.com). You create records in a private hosted zone to define how you want to route traffic for a domain and its subdomains within one or more Amazon Virtual Private Clouds (Amazon VPCs). </p> <important> <p>You can't convert a public hosted zone to a private hosted zone or vice versa. Instead, you must create a new hosted zone with the same name and create new resource record sets.</p> </important> <p>For more information about charges for hosted zones, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p> <p>Note the following:</p> <ul> <li> <p>You can't create a hosted zone for a top-level domain (TLD) such as .com.</p> </li> <li> <p>For public hosted zones, Route 53 automatically creates a default SOA record and four NS records for the zone. For more information about SOA and NS records, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html">NS and SOA Records that Route 53 Creates for a Hosted Zone</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>If you want to use the same name servers for multiple public hosted zones, you can optionally associate a reusable delegation set with the hosted zone. See the <code>DelegationSetId</code> element.</p> </li> <li> <p>If your domain is registered with a registrar other than Route 53, you must update the name servers with your registrar to make Route 53 the DNS service for the domain. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html">Migrating DNS Service for an Existing Domain to Amazon Route 53</a> in the <i>Amazon Route 53 Developer Guide</i>. </p> </li> </ul> <p>When you submit a <code>CreateHostedZone</code> request, the initial status of the hosted zone is <code>PENDING</code>. For public hosted zones, this means that the NS and SOA records are not yet available on all Route 53 DNS servers. When the NS and SOA records are available, the status of the zone changes to <code>INSYNC</code>.</p> <p>The <code>CreateHostedZone</code> request requires the caller to have an <code>ec2:DescribeVpcs</code> permission.</p>
      operationId: CreateHostedZone
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Hostedzone201341Request'
              - xml:
                  name: Hostedzone201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateHostedZoneResponse'
                - description: A complex type containing the response information for the hosted zone.
                  xml:
                    name: CreateHostedZoneResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidDomainName
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: HostedZoneAlreadyExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: TooManyHostedZones
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidVPCId
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: DelegationSetNotAvailable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: ConflictingDomainExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
        '487':
          description: NoSuchDelegationSet
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response487
                  attribute: false
                  wrapped: false
        '488':
          description: DelegationSetNotReusable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response488
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: ListHostedZones
      description: <p>Retrieves a list of the public and private hosted zones that are associated with the current Amazon Web Services account. The response includes a <code>HostedZones</code> child element for each hosted zone.</p> <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of hosted zones, you can use the <code>maxitems</code> parameter to list them in groups of up to 100.</p>
      operationId: ListHostedZones
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: marker
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more hosted zones. To get more hosted zones, submit another <code>ListHostedZones</code> request. </p> <p>For the value of <code>marker</code>, specify the value of <code>NextMarker</code> from the previous response, which is the ID of the first hosted zone that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more hosted zones to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 64
          type: string
      - name: maxitems
        in: query
        description: (Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If you have more than <code>maxitems</code> hosted zones, the value of <code>IsTruncated</code> in the response is <code>true</code>, and the value of <code>NextMarker</code> is the hosted zone ID of the first hosted zone that Route 53 will return if you submit another request.
        style: form
        explode: true
        schema:
          type: string
      - name: delegationsetid
        in: query
        description: If you're using reusable delegation sets and you want to list all of the hosted zones that are associated with a reusable delegation set, specify the ID of that reusable delegation set.
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: MaxItems
        in: query
        description: Pagination limit
        style: form
        explode: true
        schema:
          type: string
      - name: Marker
        in: query
        description: Pagination token
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListHostedZonesResponse'
                - xml:
                    name: ListHostedZonesResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchDelegationSet
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: DelegationSetNotReusable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/keysigningkey:
    post:
      summary: CreateKeySigningKey
      description: Creates a new key-signing key (KSK) associated with a hosted zone. You can only have two KSKs per hosted zone.
      operationId: CreateKeySigningKey
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Keysigningkey201341Request'
              - xml:
                  name: Keysigningkey201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateKeySigningKeyResponse'
                - xml:
                    name: CreateKeySigningKeyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidArgument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidKMSArn
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidKeySigningKeyStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: InvalidSigningStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: InvalidKeySigningKeyName
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
        '487':
          description: KeySigningKeyAlreadyExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response487
                  attribute: false
                  wrapped: false
        '488':
          description: TooManyKeySigningKeys
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response488
                  attribute: false
                  wrapped: false
        '489':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response489
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/queryloggingconfig:
    post:
      summary: CreateQueryLoggingConfig
      description: <p>Creates a configuration for DNS query logging. After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group.</p> <p>DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following:</p> <ul> <li> <p>Route 53 edge location that responded to the DNS query</p> </li> <li> <p>Domain or subdomain that was requested</p> </li> <li> <p>DNS record type, such as A or AAAA</p> </li> <li> <p>DNS response code, such as <code>NoError</code> or <code>ServFail</code> </p> </li> </ul> <dl> <dt>Log Group and Resource Policy</dt> <dd> <p>Before you create a query logging configuration, perform the following operations.</p> <note> <p>If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically.</p> </note> <ol> <li> <p>Create a CloudWatch Logs log group, and make note of the ARN, which you specify when you create a query logging configuration. Note the following:</p> <ul> <li> <p>You must create the log group in the us-east-1 region.</p> </li> <li> <p>You must use the same Amazon Web Services account to create the log group and the hosted zone that you want to configure query logging for.</p> </li> <li> <p>When you create log groups for query logging, we recommend that you use a consistent prefix, for example:</p> <p> <code>/aws/route53/<i>hosted zone name</i> </code> </p> <p>In the next step, you'll create a resource policy, which controls access to one or more log groups and the associated Amazon Web Services resources, such as Route 53 hosted zones. There's a limit on the number of resource policies that you can create, so we recommend that you use a consistent prefix so you can use the same resource policy for all the log groups that you create for query logging.</p> </li> </ul> </li> <li> <p>Create a CloudWatch Logs resource policy, and give it the permissions that Route 53 needs to create log streams and to send query logs to log streams. For the value of <code>Resource</code>, specify the ARN for the log group that you created in the previous step. To use the same resource policy for all the CloudWatch Logs log groups that you created for query logging configurations, replace the hosted zone name with <code>*</code>, for example:</p> <p> <code>arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*</code> </p> <note> <p>You can't use the CloudWatch console to create or edit a resource policy. You must use the CloudWatch API, one of the Amazon Web Services SDKs, or the CLI.</p> </note> </li> </ol> </dd> <dt>Log Streams and Edge Locations</dt> <dd> <p>When Route 53 finishes creating the configuration for DNS query logging, it does the following:</p> <ul> <li> <p>Creates a log stream for an edge location the first time that the edge location responds to DNS queries for the specified hosted zone. That log stream is used to log all queries that Route 53 responds to for that edge location.</p> </li> <li> <p>Begins to send query logs to the applicable log stream.</p> </li> </ul> <p>The name of each log stream is in the following format:</p> <p> <code> <i>hosted zone ID</i>/<i>edge location code</i> </code> </p> <p>The edge location code is a three-letter code and an arbitrarily assigned number, for example, DFW3. The three-letter code typically corresponds with the International Air Transport Association airport code for an airport near the edge location. (These abbreviations might change in the future.) For a list of edge locations, see "The Route 53 Global Network" on the <a href="http://aws.amazon.com/route53/details/">Route 53 Product Details</a> page.</p> </dd> <dt>Queries That Are Logged</dt> <dd> <p>Query logs contain only the queries that DNS resolvers forward to Route 53. If a DNS resolver has already cached the response to a query (such as the IP address for a load balancer for example.com), the resolver will continue to return the cached response. It doesn't forward another query to Route 53 until the TTL for the corresponding resource record set expires. Depending on how many DNS queries are submitted for a resource record set, and depending on the TTL for that resource record set, query logs might contain information about only one query out of every several thousand queries that are submitted to DNS. For more information about how DNS works, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html">Routing Internet Traffic to Your Website or Web Application</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> </dd> <dt>Log File Format</dt> <dd> <p>For a list of the values in each query log and the format of each value, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html">Logging DNS Queries</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> </dd> <dt>Pricing</dt> <dd> <p>For information about charges for query logs, see <a href="http://aws.amazon.com/cloudwatch/pricing/">Amazon CloudWatch Pricing</a>.</p> </dd> <dt>How to Stop Logging</dt> <dd> <p>If you want Route 53 to stop sending query logs to CloudWatch Logs, delete the query logging configuration. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html">DeleteQueryLoggingConfig</a>.</p> </dd> </dl>
      operationId: CreateQueryLoggingConfig
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Queryloggingconfig201341Request'
              - xml:
                  name: Queryloggingconfig201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateQueryLoggingConfigResponse'
                - xml:
                    name: CreateQueryLoggingConfigResponse
                    attribute: false
                    wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchCloudWatchLogsLogGroup
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: QueryLoggingConfigAlreadyExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: InsufficientCloudWatchLogsResourcePolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: ListQueryLoggingConfigs
      description: <p>Lists the configurations for DNS query logging that are associated with the current Amazon Web Services account or the configuration that is associated with a specified hosted zone.</p> <p>For more information about DNS query logs, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html">CreateQueryLoggingConfig</a>. Additional information, including the format of DNS query logs, appears in <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html">Logging DNS Queries</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
      operationId: ListQueryLoggingConfigs
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: hostedzoneid
        in: query
        description: <p>(Optional) If you want to list the query logging configuration that is associated with a hosted zone, specify the ID in <code>HostedZoneId</code>. </p> <p>If you don't specify a hosted zone ID, <code>ListQueryLoggingConfigs</code> returns all of the configurations that are associated with the current Amazon Web Services account.</p>
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: nexttoken
        in: query
        description: <p>(Optional) If the current Amazon Web Services account has more than <code>MaxResults</code> query logging configurations, use <code>NextToken</code> to get the second and subsequent pages of results.</p> <p>For the first <code>ListQueryLoggingConfigs</code> request, omit this value.</p> <p>For the second and subsequent requests, get the value of <code>NextToken</code> from the previous response and specify that value for <code>NextToken</code> in the request.</p>
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: maxresults
        in: query
        description: <p>(Optional) The maximum number of query logging configurations that you want Amazon Route 53 to return in response to the current request. If the current Amazon Web Services account has more than <code>MaxResults</code> configurations, use the value of <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListQueryLoggingConfigs.html#API_ListQueryLoggingConfigs_RequestSyntax">NextToken</a> in the response to get the next page of results.</p> <p>If you don't specify a value for <code>MaxResults</code>, Route 53 returns up to 100 configurations.</p>
        style: form
        explode: true
        schema:
          type: string
      - name: MaxResults
        in: query
        description: Pagination limit
        style: form
        explode: true
        schema:
          type: string
      - name: NextToken
        in: query
        description: Pagination token
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListQueryLoggingConfigsResponse'
                - xml:
                    name: ListQueryLoggingConfigsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidPaginationToken
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/delegationset:
    post:
      summary: CreateReusableDelegationSet
      description: <p>Creates a delegation set (a group of four name servers) that can be reused by multiple hosted zones that were created by the same Amazon Web Services account. </p> <p>You can also create a reusable delegation set that uses the four name servers that are associated with an existing hosted zone. Specify the hosted zone ID in the <code>CreateReusableDelegationSet</code> request.</p> <note> <p>You can't associate a reusable delegation set with a private hosted zone.</p> </note> <p>For information about using a reusable delegation set to configure white label name servers, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html">Configuring White Label Name Servers</a>.</p> <p>The process for migrating existing hosted zones to use a reusable delegation set is comparable to the process for configuring white label name servers. You need to perform the following steps:</p> <ol> <li> <p>Create a reusable delegation set.</p> </li> <li> <p>Recreate hosted zones, and reduce the TTL to 60 seconds or less.</p> </li> <li> <p>Recreate resource record sets in the new hosted zones.</p> </li> <li> <p>Change the registrar's name servers to use the name servers for the new hosted zones.</p> </li> <li> <p>Monitor traffic for the website or application.</p> </li> <li> <p>Change TTLs back to their original values.</p> </li> </ol> <p>If you want to migrate existing hosted zones to use a reusable delegation set, the existing hosted zones can't use any of the name servers that are assigned to the reusable delegation set. If one or more hosted zones do use one or more name servers that are assigned to the reusable delegation set, you can do one of the following:</p> <ul> <li> <p>For small numbers of hosted zones—up to a few hundred—it's relatively easy to create reusable delegation sets until you get one that has four name servers that don't overlap with any of the name servers in your hosted zones.</p> </li> <li> <p>For larger numbers of hosted zones, the easiest solution is to use more than one reusable delegation set.</p> </li> <li> <p>For larger numbers of hosted zones, you can also migrate hosted zones that have overlapping name servers to hosted zones that don't have overlapping name servers, then migrate the hosted zones again to use the reusable delegation set.</p> </li> </ul>
      operationId: CreateReusableDelegationSet
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Delegationset201341Request'
              - xml:
                  name: Delegationset201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateReusableDelegationSetResponse'
                - xml:
                    name: CreateReusableDelegationSetResponse
                    attribute: false
                    wrapped: false
        '480':
          description: DelegationSetAlreadyCreated
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: LimitsExceeded
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: HostedZoneNotFound
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidArgument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: DelegationSetNotAvailable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: DelegationSetAlreadyReusable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: ListReusableDelegationSets
      description: Retrieves a list of the reusable delegation sets that are associated with the current Amazon Web Services account.
      operationId: ListReusableDelegationSets
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: marker
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more reusable delegation sets. To get another group, submit another <code>ListReusableDelegationSets</code> request. </p> <p>For the value of <code>marker</code>, specify the value of <code>NextMarker</code> from the previous response, which is the ID of the first reusable delegation set that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more reusable delegation sets to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 64
          type: string
      - name: maxitems
        in: query
        description: The number of reusable delegation sets that you want Amazon Route 53 to return in the response to this request. If you specify a value greater than 100, Route 53 returns only the first 100 reusable delegation sets.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListReusableDelegationSetsResponse'
                - description: A complex type that contains information about the reusable delegation sets that are associated with the current Amazon Web Services account.
                  xml:
                    name: ListReusableDelegationSetsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicy:
    post:
      summary: CreateTrafficPolicy
      description: Creates a traffic policy, which you use to create multiple DNS resource record sets for one domain name (such as example.com) or one subdomain name (such as www.example.com).
      operationId: CreateTrafficPolicy
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Trafficpolicy201341Request'
              - xml:
                  name: Trafficpolicy201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateTrafficPolicyResponse'
                - description: A complex type that contains the response information for the <code>CreateTrafficPolicy</code> request.
                  xml:
                    name: CreateTrafficPolicyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: TooManyTrafficPolicies
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: TrafficPolicyAlreadyExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidTrafficPolicyDocument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicyinstance:
    post:
      summary: CreateTrafficPolicyInstance
      description: Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, <code>CreateTrafficPolicyInstance</code> associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that <code>CreateTrafficPolicyInstance</code> created.
      operationId: CreateTrafficPolicyInstance
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Trafficpolicyinstance201341Request'
              - xml:
                  name: Trafficpolicyinstance201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateTrafficPolicyInstanceResponse'
                - description: A complex type that contains the response information for the <code>CreateTrafficPolicyInstance</code> request.
                  xml:
                    name: CreateTrafficPolicyInstanceResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: TooManyTrafficPolicyInstances
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: TrafficPolicyInstanceAlreadyExists
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicy/{Id}:
    post:
      summary: CreateTrafficPolicyVersion
      description: Creates a new version of an existing traffic policy. When you create a new version of a traffic policy, you specify the ID of the traffic policy that you want to update and a JSON-formatted document that describes the new version. You use traffic policies to create multiple DNS resource record sets for one domain name (such as example.com) or one subdomain name (such as www.example.com). You can create a maximum of 1000 versions of a traffic policy. If you reach the limit and need to create another version, you'll need to start a new traffic policy.
      operationId: CreateTrafficPolicyVersion
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the traffic policy for which you want to create a new version.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Trafficpolicy201341Request1'
              - xml:
                  name: Trafficpolicy201341Request1
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '201':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateTrafficPolicyVersionResponse'
                - description: A complex type that contains the response information for the <code>CreateTrafficPolicyVersion</code> request.
                  xml:
                    name: CreateTrafficPolicyVersionResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: TooManyTrafficPolicyVersionsForCurrentPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidTrafficPolicyDocument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/authorizevpcassociation:
    post:
      summary: CreateVPCAssociationAuthorization
      description: <p>Authorizes the Amazon Web Services account that created a specified VPC to submit an <code>AssociateVPCWithHostedZone</code> request to associate the VPC with a specified hosted zone that was created by a different account. To submit a <code>CreateVPCAssociationAuthorization</code> request, you must use the account that created the hosted zone. After you authorize the association, use the account that created the VPC to submit an <code>AssociateVPCWithHostedZone</code> request.</p> <note> <p>If you want to associate multiple VPCs that you created by using one account with a hosted zone that you created by using a different account, you must submit one authorization request for each VPC.</p> </note>
      operationId: CreateVPCAssociationAuthorization
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the private hosted zone that you want to authorize associating a VPC with.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/HostedzoneAuthorizevpcassociation201341Request'
              - xml:
                  name: HostedzoneAuthorizevpcassociation201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/CreateVPCAssociationAuthorizationResponse'
                - description: A complex type that contains the response information from a <code>CreateVPCAssociationAuthorization</code> request.
                  xml:
                    name: CreateVPCAssociationAuthorizationResponse
                    attribute: false
                    wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: TooManyVPCAssociationAuthorizations
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidVPCId
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: ListVPCAssociationAuthorizations
      description: <p>Gets a list of the VPCs that were created by other accounts and that can be associated with a specified hosted zone because you've submitted one or more <code>CreateVPCAssociationAuthorization</code> requests. </p> <p>The response includes a <code>VPCs</code> element with a <code>VPC</code> child element for each VPC that can be associated with the hosted zone.</p>
      operationId: ListVPCAssociationAuthorizations
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the hosted zone for which you want a list of VPCs that can be associated with the hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: nexttoken
        in: query
        description: '<i>Optional</i>: If a response includes a <code>NextToken</code> element, there are more VPCs that can be associated with the specified hosted zone. To get the next page of results, submit another request, and include the value of <code>NextToken</code> from the response in the <code>nexttoken</code> parameter in another <code>ListVPCAssociationAuthorizations</code> request.'
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: maxresults
        in: query
        description: "<i>Optional</i>: An integer that specifies the maximum number of VPCs that you want Amazon Route 53 to return. If you don't specify a value for <code>MaxResults</code>, Route 53 returns up to 50 VPCs per page."
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListVPCAssociationAuthorizationsResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListVPCAssociationAuthorizationsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidPaginationToken
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/keysigningkey/{HostedZoneId}/{Name}/deactivate:
    post:
      summary: DeactivateKeySigningKey
      description: Deactivates a key-signing key (KSK) so that it will not be used for signing by DNSSEC. This operation changes the KSK status to <code>INACTIVE</code>.
      operationId: DeactivateKeySigningKey
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HostedZoneId
        in: path
        description: A unique string used to identify a hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Name
        in: path
        description: A string used to identify a key-signing key (KSK).
        required: true
        style: simple
        schema:
          maxLength: 128
          minLength: 3
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/DeactivateKeySigningKeyResponse'
                - xml:
                    name: DeactivateKeySigningKeyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchKeySigningKey
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidKeySigningKeyStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidSigningStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: KeySigningKeyInUse
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: KeySigningKeyInParentDSRecord
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/healthcheck/{HealthCheckId}:
    delete:
      summary: DeleteHealthCheck
      description: <p>Deletes a health check.</p> <important> <p>Amazon Route 53 does not prevent you from deleting a health check even if the health check is associated with one or more resource record sets. If you delete a health check and you don't update the associated resource record sets, the future status of the health check can't be predicted and may change. This will affect the routing of DNS queries for your DNS failover configuration. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html">Replacing and Deleting Health Checks</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> </important> <p>If you're using Cloud Map and you configured Cloud Map to create a Route 53 health check when you register an instance, you can't use the Route 53 <code>DeleteHealthCheck</code> command to delete the health check. The health check is deleted automatically when you deregister the instance; there can be a delay of several hours before the health check is deleted from Route 53. </p>
      operationId: DeleteHealthCheck
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HealthCheckId
        in: path
        description: The ID of the health check that you want to delete.
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                description: An empty element.
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: HealthCheckInUse
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: GetHealthCheck
      description: Gets information about a specified health check.
      operationId: GetHealthCheck
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HealthCheckId
        in: path
        description: The identifier that Amazon Route 53 assigned to the health check when you created it. When you add or update a resource record set, you use this value to specify which health check to use. The value can be up to 64 characters long.
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHealthCheckResponse'
                - description: A complex type that contains the response to a <code>GetHealthCheck</code> request.
                  xml:
                    name: GetHealthCheckResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: IncompatibleVersion
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
    post:
      summary: UpdateHealthCheck
      description: <p>Updates an existing health check. Note that some values can't be updated. </p> <p>For more information about updating health checks, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html">Creating, Updating, and Deleting Health Checks</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
      operationId: UpdateHealthCheck
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HealthCheckId
        in: path
        description: The ID for the health check for which you want detailed information. When you created the health check, <code>CreateHealthCheck</code> returned the ID in the response, in the <code>HealthCheckId</code> element.
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Healthcheck201341Request1'
              - xml:
                  name: Healthcheck201341Request1
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/UpdateHealthCheckResponse'
                - description: A complex type that contains the response to the <code>UpdateHealthCheck</code> request.
                  xml:
                    name: UpdateHealthCheckResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: HealthCheckVersionMismatch
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}:
    delete:
      summary: DeleteHostedZone
      description: <p>Deletes a hosted zone.</p> <p>If the hosted zone was created by another service, such as Cloud Map, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html#delete-public-hosted-zone-created-by-another-service">Deleting Public Hosted Zones That Were Created by Another Service</a> in the <i>Amazon Route 53 Developer Guide</i> for information about how to delete it. (The process is the same for public and private hosted zones that were created by another service.)</p> <p>If you want to keep your domain registration but you want to stop routing internet traffic to your website or web application, we recommend that you delete resource record sets in the hosted zone instead of deleting the hosted zone.</p> <important> <p>If you delete a hosted zone, you can't undelete it. You must create a new hosted zone and update the name servers for your domain registration, which can require up to 48 hours to take effect. (If you delegated responsibility for a subdomain to a hosted zone and you delete the child hosted zone, you must update the name servers in the parent hosted zone.) In addition, if you delete a hosted zone, someone could hijack the domain and route traffic to their own resources using your domain name.</p> </important> <p>If you want to avoid the monthly charge for the hosted zone, you can transfer DNS service for the domain to a free DNS service. When you transfer DNS service, you have to update the name servers for the domain registration. If the domain is registered with Route 53, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_UpdateDomainNameservers.html">UpdateDomainNameservers</a> for information about how to replace Route 53 name servers with name servers for the new DNS service. If the domain is registered with another registrar, use the method provided by the registrar to update name servers for the domain registration. For more information, perform an internet search on "free DNS service."</p> <p>You can delete a hosted zone only if it contains only the default SOA record and NS resource record sets. If the hosted zone contains other resource record sets, you must delete them before you can delete the hosted zone. If you try to delete a hosted zone that contains other resource record sets, the request fails, and Route 53 returns a <code>HostedZoneNotEmpty</code> error. For information about deleting records from your hosted zone, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html">ChangeResourceRecordSets</a>.</p> <p>To verify that the hosted zone has been deleted, do one of the following:</p> <ul> <li> <p>Use the <code>GetHostedZone</code> action to request information about the hosted zone.</p> </li> <li> <p>Use the <code>ListHostedZones</code> action to get a list of the hosted zones associated with the current Amazon Web Services account.</p> </li> </ul>
      operationId: DeleteHostedZone
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the hosted zone you want to delete.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/DeleteHostedZoneResponse'
                - description: A complex type that contains the response to a <code>DeleteHostedZone</code> request.
                  xml:
                    name: DeleteHostedZoneResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: HostedZoneNotEmpty
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidDomainName
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: GetHostedZone
      description: Gets information about a specified hosted zone including the four name servers assigned to the hosted zone.
      operationId: GetHostedZone
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the hosted zone that you want to get information about.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHostedZoneResponse'
                - description: A complex type that contain the response to a <code>GetHostedZone</code> request.
                  xml:
                    name: GetHostedZoneResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
    post:
      summary: UpdateHostedZoneComment
      description: Updates the comment for a specified hosted zone.
      operationId: UpdateHostedZoneComment
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID for the hosted zone that you want to update the comment for.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Hostedzone201341Request1'
              - xml:
                  name: Hostedzone201341Request1
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/UpdateHostedZoneCommentResponse'
                - description: A complex type that contains the response to the <code>UpdateHostedZoneComment</code> request.
                  xml:
                    name: UpdateHostedZoneCommentResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/keysigningkey/{HostedZoneId}/{Name}:
    delete:
      summary: DeleteKeySigningKey
      description: Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it. The KSK must be deactivated before you can delete it regardless of whether the hosted zone is enabled for DNSSEC signing.
      operationId: DeleteKeySigningKey
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HostedZoneId
        in: path
        description: A unique string used to identify a hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Name
        in: path
        description: A string used to identify a key-signing key (KSK).
        required: true
        style: simple
        schema:
          maxLength: 128
          minLength: 3
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/DeleteKeySigningKeyResponse'
                - xml:
                    name: DeleteKeySigningKeyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchKeySigningKey
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidKeySigningKeyStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidSigningStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidKMSArn
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/queryloggingconfig/{Id}:
    delete:
      summary: DeleteQueryLoggingConfig
      description: <p>Deletes a configuration for DNS query logging. If you delete a configuration, Amazon Route 53 stops sending query logs to CloudWatch Logs. Route 53 doesn't delete any logs that are already in CloudWatch Logs.</p> <p>For more information about DNS query logs, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html">CreateQueryLoggingConfig</a>.</p>
      operationId: DeleteQueryLoggingConfig
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the configuration that you want to delete.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchQueryLoggingConfig
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: GetQueryLoggingConfig
      description: <p>Gets information about a specified configuration for DNS query logging.</p> <p>For more information about DNS query logs, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html">CreateQueryLoggingConfig</a> and <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html">Logging DNS Queries</a>.</p>
      operationId: GetQueryLoggingConfig
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the configuration for DNS query logging that you want to get information about.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetQueryLoggingConfigResponse'
                - xml:
                    name: GetQueryLoggingConfigResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchQueryLoggingConfig
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/delegationset/{Id}:
    delete:
      summary: DeleteReusableDelegationSet
      description: <p>Deletes a reusable delegation set.</p> <important> <p>You can delete a reusable delegation set only if it isn't associated with any hosted zones.</p> </important> <p>To verify that the reusable delegation set is not associated with any hosted zones, submit a <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSet.html">GetReusableDelegationSet</a> request and specify the ID of the reusable delegation set that you want to delete.</p>
      operationId: DeleteReusableDelegationSet
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the reusable delegation set that you want to delete.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                description: An empty element.
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: NoSuchDelegationSet
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: DelegationSetInUse
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: DelegationSetNotReusable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: GetReusableDelegationSet
      description: Retrieves information about a specified reusable delegation set, including the four name servers that are assigned to the delegation set.
      operationId: GetReusableDelegationSet
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the reusable delegation set that you want to get a list of name servers for.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetReusableDelegationSetResponse'
                - description: A complex type that contains the response to the <code>GetReusableDelegationSet</code> request.
                  xml:
                    name: GetReusableDelegationSetResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchDelegationSet
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: DelegationSetNotReusable
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicy/{Id}/{Version}:
    delete:
      summary: DeleteTrafficPolicy
      description: <p>Deletes a traffic policy.</p> <p>When you delete a traffic policy, Route 53 sets a flag on the policy to indicate that it has been deleted. However, Route 53 never fully deletes the traffic policy. Note the following:</p> <ul> <li> <p>Deleted traffic policies aren't listed if you run <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListTrafficPolicies.html">ListTrafficPolicies</a>.</p> </li> <li> <p> There's no way to get a list of deleted policies.</p> </li> <li> <p>If you retain the ID of the policy, you can get information about the policy, including the traffic policy document, by running <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html">GetTrafficPolicy</a>.</p> </li> </ul>
      operationId: DeleteTrafficPolicy
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the traffic policy that you want to delete.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: Version
        in: path
        description: The version number of the traffic policy that you want to delete.
        required: true
        style: simple
        schema:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                description: An empty element.
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: TrafficPolicyInUse
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: GetTrafficPolicy
      description: <p>Gets information about a specific traffic policy version.</p> <p>For information about how of deleting a traffic policy affects the response from <code>GetTrafficPolicy</code>, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html">DeleteTrafficPolicy</a>. </p>
      operationId: GetTrafficPolicy
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the traffic policy that you want to get information about.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: Version
        in: path
        description: The version number of the traffic policy that you want to get information about.
        required: true
        style: simple
        schema:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetTrafficPolicyResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: GetTrafficPolicyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
    post:
      summary: UpdateTrafficPolicyComment
      description: Updates the comment for a specified traffic policy version.
      operationId: UpdateTrafficPolicyComment
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The value of <code>Id</code> for the traffic policy that you want to update the comment for.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: Version
        in: path
        description: The value of <code>Version</code> for the traffic policy that you want to update the comment for.
        required: true
        style: simple
        schema:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Trafficpolicy201341Request2'
              - xml:
                  name: Trafficpolicy201341Request2
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/UpdateTrafficPolicyCommentResponse'
                - description: A complex type that contains the response information for the traffic policy.
                  xml:
                    name: UpdateTrafficPolicyCommentResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicyinstance/{Id}:
    delete:
      summary: DeleteTrafficPolicyInstance
      description: <p>Deletes a traffic policy instance and all of the resource record sets that Amazon Route 53 created when you created the instance.</p> <note> <p>In the Route 53 console, traffic policy instances are known as policy records.</p> </note>
      operationId: DeleteTrafficPolicyInstance
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: <p>The ID of the traffic policy instance that you want to delete. </p> <important> <p>When you delete a traffic policy instance, Amazon Route 53 also deletes all of the resource record sets that were created when you created the traffic policy instance.</p> </important>
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                description: An empty element.
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: NoSuchTrafficPolicyInstance
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
    get:
      summary: GetTrafficPolicyInstance
      description: <p>Gets information about a specified traffic policy instance.</p> <note> <p>After you submit a <code>CreateTrafficPolicyInstance</code> or an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</p> </note> <note> <p>In the Route 53 console, traffic policy instances are known as policy records.</p> </note>
      operationId: GetTrafficPolicyInstance
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the traffic policy instance that you want to get information about.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetTrafficPolicyInstanceResponse'
                - description: A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.
                  xml:
                    name: GetTrafficPolicyInstanceResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchTrafficPolicyInstance
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
    post:
      summary: UpdateTrafficPolicyInstance
      description: <p>Updates the resource record sets in a specified hosted zone that were created based on the settings in a specified traffic policy version.</p> <p>When you update a traffic policy instance, Amazon Route 53 continues to respond to DNS queries for the root resource record set name (such as example.com) while it replaces one group of resource record sets with another. Route 53 performs the following operations:</p> <ol> <li> <p>Route 53 creates a new group of resource record sets based on the specified traffic policy. This is true regardless of how significant the differences are between the existing resource record sets and the new resource record sets. </p> </li> <li> <p>When all of the new resource record sets have been created, Route 53 starts to respond to DNS queries for the root resource record set name (such as example.com) by using the new resource record sets.</p> </li> <li> <p>Route 53 deletes the old group of resource record sets that are associated with the root resource record set name.</p> </li> </ol>
      operationId: UpdateTrafficPolicyInstance
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the traffic policy instance that you want to update.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Trafficpolicyinstance201341Request1'
              - xml:
                  name: Trafficpolicyinstance201341Request1
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/UpdateTrafficPolicyInstanceResponse'
                - description: A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.
                  xml:
                    name: UpdateTrafficPolicyInstanceResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchTrafficPolicyInstance
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: ConflictingTypes
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/deauthorizevpcassociation:
    post:
      summary: DeleteVPCAssociationAuthorization
      description: <p>Removes authorization to submit an <code>AssociateVPCWithHostedZone</code> request to associate a specified VPC with a hosted zone that was created by a different account. You must use the account that created the hosted zone to submit a <code>DeleteVPCAssociationAuthorization</code> request.</p> <important> <p>Sending this request only prevents the Amazon Web Services account that created the VPC from associating the VPC with the Amazon Route 53 hosted zone in the future. If the VPC is already associated with the hosted zone, <code>DeleteVPCAssociationAuthorization</code> won't disassociate the VPC from the hosted zone. If you want to delete an existing association, use <code>DisassociateVPCFromHostedZone</code>.</p> </important>
      operationId: DeleteVPCAssociationAuthorization
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: When removing authorization to associate a VPC that was created by one Amazon Web Services account with a hosted zone that was created with a different Amazon Web Services account, the ID of the hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/HostedzoneDeauthorizevpcassociation201341Request'
              - xml:
                  name: HostedzoneDeauthorizevpcassociation201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                type: object
                description: Empty response for the request.
                xml:
                  name: response200
                  attribute: false
                  wrapped: false
        '480':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: VPCAssociationAuthorizationNotFound
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: InvalidVPCId
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/disable-dnssec:
    post:
      summary: DisableHostedZoneDNSSEC
      description: Disables DNSSEC signing in a specific hosted zone. This action does not deactivate any key-signing keys (KSKs) that are active in the hosted zone.
      operationId: DisableHostedZoneDNSSEC
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: A unique string used to identify a hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/DisableHostedZoneDNSSECResponse'
                - xml:
                    name: DisableHostedZoneDNSSECResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidArgument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: KeySigningKeyInParentDSRecord
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: DNSSECNotFound
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: InvalidKeySigningKeyStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: InvalidKMSArn
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
        '487':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response487
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/disassociatevpc:
    post:
      summary: DisassociateVPCFromHostedZone
      description: <p>Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an Amazon Route 53 private hosted zone. Note the following:</p> <ul> <li> <p>You can't disassociate the last Amazon VPC from a private hosted zone.</p> </li> <li> <p>You can't convert a private hosted zone into a public hosted zone.</p> </li> <li> <p>You can submit a <code>DisassociateVPCFromHostedZone</code> request using either the account that created the hosted zone or the account that created the Amazon VPC.</p> </li> <li> <p>Some services, such as Cloud Map and Amazon Elastic File System (Amazon EFS) automatically create hosted zones and associate VPCs with the hosted zones. A service can create a hosted zone using your account or using its own account. You can disassociate a VPC from a hosted zone only if the service created the hosted zone using your account.</p> <p>When you run <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZonesByVPC.html">DisassociateVPCFromHostedZone</a>, if the hosted zone has a value for <code>OwningAccount</code>, you can use <code>DisassociateVPCFromHostedZone</code>. If the hosted zone has a value for <code>OwningService</code>, you can't use <code>DisassociateVPCFromHostedZone</code>.</p> </li> </ul>
      operationId: DisassociateVPCFromHostedZone
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the private hosted zone that you want to disassociate a VPC from.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/HostedzoneDisassociatevpc201341Request'
              - xml:
                  name: HostedzoneDisassociatevpc201341Request
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/DisassociateVPCFromHostedZoneResponse'
                - description: A complex type that contains the response information for the disassociate request.
                  xml:
                    name: DisassociateVPCFromHostedZoneResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidVPCId
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: VPCAssociationNotFound
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: LastVPCAssociation
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/enable-dnssec:
    post:
      summary: EnableHostedZoneDNSSEC
      description: Enables DNSSEC signing in a specific hosted zone.
      operationId: EnableHostedZoneDNSSEC
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: A unique string used to identify a hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/EnableHostedZoneDNSSECResponse'
                - xml:
                    name: EnableHostedZoneDNSSECResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidArgument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: ConcurrentModification
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: KeySigningKeyWithActiveStatusNotFound
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: InvalidKMSArn
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
        '485':
          description: HostedZonePartiallyDelegated
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response485
                  attribute: false
                  wrapped: false
        '486':
          description: DNSSECNotFound
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response486
                  attribute: false
                  wrapped: false
        '487':
          description: InvalidKeySigningKeyStatus
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response487
                  attribute: false
                  wrapped: false
        '488':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response488
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/accountlimit/{Type}:
    get:
      summary: GetAccountLimit
      description: <p>Gets the specified limit for the current account, for example, the maximum number of health checks that you can create using the account.</p> <p>For the default limit, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the <i>Amazon Route 53 Developer Guide</i>. To request a higher limit, <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-route53">open a case</a>.</p> <note> <p>You can also view account limits in Amazon Web Services Trusted Advisor. Sign in to the Amazon Web Services Management Console and open the Trusted Advisor console at <a href="https://console.aws.amazon.com/trustedadvisor">https://console.aws.amazon.com/trustedadvisor/</a>. Then choose <b>Service limits</b> in the navigation pane.</p> </note>
      operationId: GetAccountLimit
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Type
        in: path
        description: '<p>The limit that you want to get. Valid values include the following:</p> <ul> <li> <p> <b>MAX_HEALTH_CHECKS_BY_OWNER</b>: The maximum number of health checks that you can create using the current account.</p> </li> <li> <p> <b>MAX_HOSTED_ZONES_BY_OWNER</b>: The maximum number of hosted zones that you can create using the current account.</p> </li> <li> <p> <b>MAX_REUSABLE_DELEGATION_SETS_BY_OWNER</b>: The maximum number of reusable delegation sets that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICIES_BY_OWNER</b>: The maximum number of traffic policies that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER</b>: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)</p> </li> </ul>'
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/AccountLimitType'
          - description: '<p>The limit that you want to get. Valid values include the following:</p> <ul> <li> <p> <b>MAX_HEALTH_CHECKS_BY_OWNER</b>: The maximum number of health checks that you can create using the current account.</p> </li> <li> <p> <b>MAX_HOSTED_ZONES_BY_OWNER</b>: The maximum number of hosted zones that you can create using the current account.</p> </li> <li> <p> <b>MAX_REUSABLE_DELEGATION_SETS_BY_OWNER</b>: The maximum number of reusable delegation sets that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICIES_BY_OWNER</b>: The maximum number of traffic policies that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER</b>: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)</p> </li> </ul>'
            example: MAX_HEALTH_CHECKS_BY_OWNER
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetAccountLimitResponse'
                - description: A complex type that contains the requested limit.
                  xml:
                    name: GetAccountLimitResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/change/{Id}:
    get:
      summary: GetChange
      description: <p>Returns the current status of a change batch request. The status is one of the following values:</p> <ul> <li> <p> <code>PENDING</code> indicates that the changes in this request have not propagated to all Amazon Route 53 DNS servers. This is the initial status of all change batch requests.</p> </li> <li> <p> <code>INSYNC</code> indicates that the changes have propagated to all Route 53 DNS servers. </p> </li> </ul>
      operationId: GetChange
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the change batch request. The value that you specify here is the value that <code>ChangeResourceRecordSets</code> returned in the <code>Id</code> element when you submitted the request.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetChangeResponse'
                - description: A complex type that contains the <code>ChangeInfo</code> element.
                  xml:
                    name: GetChangeResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchChange
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/checkeripranges:
    get:
      summary: GetCheckerIpRanges
      description: <p>Route 53 does not perform authorization for this API because it retrieves information that is already available to the public.</p> <important> <p> <code>GetCheckerIpRanges</code> still works, but we recommend that you download ip-ranges.json, which includes IP address ranges for all Amazon Web Services services. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html">IP Address Ranges of Amazon Route 53 Servers</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> </important>
      operationId: GetCheckerIpRanges
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetCheckerIpRangesResponse'
                - description: A complex type that contains the <code>CheckerIpRanges</code> element.
                  xml:
                    name: GetCheckerIpRangesResponse
                    attribute: false
                    wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/dnssec:
    get:
      summary: GetDNSSEC
      description: Returns information about DNSSEC for a specific hosted zone, including the key-signing keys (KSKs) in the hosted zone.
      operationId: GetDNSSEC
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: A unique string used to identify a hosted zone.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetDNSSECResponse'
                - xml:
                    name: GetDNSSECResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidArgument
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/geolocation:
    get:
      summary: GetGeoLocation
      description: <p>Gets information about whether a specified geographic location is supported for Amazon Route 53 geolocation resource record sets.</p> <p>Route 53 does not perform authorization for this API because it retrieves information that is already available to the public.</p> <p>Use the following syntax to determine whether a continent is supported for geolocation:</p> <p> <code>GET /2013-04-01/geolocation?continentcode=<i>two-letter abbreviation for a continent</i> </code> </p> <p>Use the following syntax to determine whether a country is supported for geolocation:</p> <p> <code>GET /2013-04-01/geolocation?countrycode=<i>two-character country code</i> </code> </p> <p>Use the following syntax to determine whether a subdivision of a country is supported for geolocation:</p> <p> <code>GET /2013-04-01/geolocation?countrycode=<i>two-character country code</i>&amp;subdivisioncode=<i>subdivision code</i> </code> </p>
      operationId: GetGeoLocation
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: continentcode
        in: query
        description: '<p>For geolocation resource record sets, a two-letter abbreviation that identifies a continent. Amazon Route 53 supports the following continent codes:</p> <ul> <li> <p> <b>AF</b>: Africa</p> </li> <li> <p> <b>AN</b>: Antarctica</p> </li> <li> <p> <b>AS</b>: Asia</p> </li> <li> <p> <b>EU</b>: Europe</p> </li> <li> <p> <b>OC</b>: Oceania</p> </li> <li> <p> <b>NA</b>: North America</p> </li> <li> <p> <b>SA</b>: South America</p> </li> </ul>'
        style: form
        explode: true
        schema:
          maxLength: 2
          minLength: 2
          type: string
      - name: countrycode
        in: query
        description: Amazon Route 53 uses the two-letter country codes that are specified in <a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO standard 3166-1 alpha-2</a>.
        style: form
        explode: true
        schema:
          maxLength: 2
          minLength: 1
          type: string
      - name: subdivisioncode
        in: query
        description: 'The code for the subdivision, such as a particular state within the United States. For a list of US state abbreviations, see <a href="https://pe.usps.com/text/pub28/28apb.htm">Appendix B: Two–Letter State and Possession Abbreviations</a> on the United States Postal Service website. For a list of all supported subdivision codes, use the <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListGeoLocations.html">ListGeoLocations</a> API.'
        style: form
        explode: true
        schema:
          maxLength: 3
          minLength: 1
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetGeoLocationResponse'
                - description: A complex type that contains the response information for the specified geolocation code.
                  xml:
                    name: GetGeoLocationResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchGeoLocation
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/healthcheckcount:
    get:
      summary: GetHealthCheckCount
      description: Retrieves the number of health checks that are associated with the current Amazon Web Services account.
      operationId: GetHealthCheckCount
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHealthCheckCountResponse'
                - description: A complex type that contains the response to a <code>GetHealthCheckCount</code> request.
                  xml:
                    name: GetHealthCheckCountResponse
                    attribute: false
                    wrapped: false
      deprecated: false
  /2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason:
    get:
      summary: GetHealthCheckLastFailureReason
      description: Gets the reason that a specified health check failed most recently.
      operationId: GetHealthCheckLastFailureReason
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HealthCheckId
        in: path
        description: <p>The ID for the health check for which you want the last failure reason. When you created the health check, <code>CreateHealthCheck</code> returned the ID in the response, in the <code>HealthCheckId</code> element.</p> <note> <p>If you want to get the last failure reason for a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can't use <code>GetHealthCheckLastFailureReason</code> for a calculated health check.</p> </note>
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHealthCheckLastFailureReasonResponse'
                - description: A complex type that contains the response to a <code>GetHealthCheckLastFailureReason</code> request.
                  xml:
                    name: GetHealthCheckLastFailureReasonResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/healthcheck/{HealthCheckId}/status:
    get:
      summary: GetHealthCheckStatus
      description: <p>Gets status of a specified health check. </p> <important> <p>This API is intended for use during development to diagnose behavior. It doesn’t support production use-cases with high query rates that require immediate and actionable responses.</p> </important>
      operationId: GetHealthCheckStatus
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: HealthCheckId
        in: path
        description: <p>The ID for the health check that you want the current status for. When you created the health check, <code>CreateHealthCheck</code> returned the ID in the response, in the <code>HealthCheckId</code> element.</p> <note> <p>If you want to check the status of a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can't use <code>GetHealthCheckStatus</code> to get the status of a calculated health check.</p> </note>
        required: true
        style: simple
        schema:
          maxLength: 64
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHealthCheckStatusResponse'
                - description: A complex type that contains the response to a <code>GetHealthCheck</code> request.
                  xml:
                    name: GetHealthCheckStatusResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzonecount:
    get:
      summary: GetHostedZoneCount
      description: Retrieves the number of hosted zones that are associated with the current Amazon Web Services account.
      operationId: GetHostedZoneCount
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHostedZoneCountResponse'
                - description: A complex type that contains the response to a <code>GetHostedZoneCount</code> request.
                  xml:
                    name: GetHostedZoneCountResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzonelimit/{Id}/{Type}:
    get:
      summary: GetHostedZoneLimit
      description: <p>Gets the specified limit for a specified hosted zone, for example, the maximum number of records that you can create in the hosted zone. </p> <p>For the default limit, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the <i>Amazon Route 53 Developer Guide</i>. To request a higher limit, <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-route53">open a case</a>.</p>
      operationId: GetHostedZoneLimit
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Type
        in: path
        description: '<p>The limit that you want to get. Valid values include the following:</p> <ul> <li> <p> <b>MAX_RRSETS_BY_ZONE</b>: The maximum number of records that you can create in the specified hosted zone.</p> </li> <li> <p> <b>MAX_VPCS_ASSOCIATED_BY_ZONE</b>: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.</p> </li> </ul>'
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/HostedZoneLimitType'
          - description: '<p>The limit that you want to get. Valid values include the following:</p> <ul> <li> <p> <b>MAX_RRSETS_BY_ZONE</b>: The maximum number of records that you can create in the specified hosted zone.</p> </li> <li> <p> <b>MAX_VPCS_ASSOCIATED_BY_ZONE</b>: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.</p> </li> </ul>'
            example: MAX_RRSETS_BY_ZONE
      - name: Id
        in: path
        description: The ID of the hosted zone that you want to get a limit for.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetHostedZoneLimitResponse'
                - description: A complex type that contains the requested limit.
                  xml:
                    name: GetHostedZoneLimitResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: HostedZoneNotPrivate
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/reusabledelegationsetlimit/{Id}/{Type}:
    get:
      summary: GetReusableDelegationSetLimit
      description: <p>Gets the maximum number of hosted zones that you can associate with the specified reusable delegation set.</p> <p>For the default limit, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the <i>Amazon Route 53 Developer Guide</i>. To request a higher limit, <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-route53">open a case</a>.</p>
      operationId: GetReusableDelegationSetLimit
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Type
        in: path
        description: Specify <code>MAX_ZONES_BY_REUSABLE_DELEGATION_SET</code> to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/ReusableDelegationSetLimitType'
          - description: Specify <code>MAX_ZONES_BY_REUSABLE_DELEGATION_SET</code> to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.
            example: MAX_ZONES_BY_REUSABLE_DELEGATION_SET
      - name: Id
        in: path
        description: The ID of the delegation set that you want to get the limit for.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetReusableDelegationSetLimitResponse'
                - description: A complex type that contains the requested limit.
                  xml:
                    name: GetReusableDelegationSetLimitResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchDelegationSet
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicyinstancecount:
    get:
      summary: GetTrafficPolicyInstanceCount
      description: Gets the number of traffic policy instances that are associated with the current Amazon Web Services account.
      operationId: GetTrafficPolicyInstanceCount
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/GetTrafficPolicyInstanceCountResponse'
                - description: A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.
                  xml:
                    name: GetTrafficPolicyInstanceCountResponse
                    attribute: false
                    wrapped: false
      deprecated: false
  /2013-04-01/geolocations:
    get:
      summary: ListGeoLocations
      description: <p>Retrieves a list of supported geographic locations.</p> <p>Countries are listed first, and continents are listed last. If Amazon Route 53 supports subdivisions for a country (for example, states or provinces), the subdivisions for that country are listed in alphabetical order immediately after the corresponding country.</p> <p>Route 53 does not perform authorization for this API because it retrieves information that is already available to the public.</p> <p>For a list of supported geolocation codes, see the <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html">GeoLocation</a> data type.</p>
      operationId: ListGeoLocations
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: startcontinentcode
        in: query
        description: <p>The code for the continent with which you want to start listing locations that Amazon Route 53 supports for geolocation. If Route 53 has already returned a page or more of results, if <code>IsTruncated</code> is true, and if <code>NextContinentCode</code> from the previous response has a value, enter that value in <code>startcontinentcode</code> to return the next page of results.</p> <p>Include <code>startcontinentcode</code> only if you want to list continents. Don't include <code>startcontinentcode</code> when you're listing countries or countries with their subdivisions.</p>
        style: form
        explode: true
        schema:
          maxLength: 2
          minLength: 2
          type: string
      - name: startcountrycode
        in: query
        description: The code for the country with which you want to start listing locations that Amazon Route 53 supports for geolocation. If Route 53 has already returned a page or more of results, if <code>IsTruncated</code> is <code>true</code>, and if <code>NextCountryCode</code> from the previous response has a value, enter that value in <code>startcountrycode</code> to return the next page of results.
        style: form
        explode: true
        schema:
          maxLength: 2
          minLength: 1
          type: string
      - name: startsubdivisioncode
        in: query
        description: <p>The code for the state of the United States with which you want to start listing locations that Amazon Route 53 supports for geolocation. If Route 53 has already returned a page or more of results, if <code>IsTruncated</code> is <code>true</code>, and if <code>NextSubdivisionCode</code> from the previous response has a value, enter that value in <code>startsubdivisioncode</code> to return the next page of results.</p> <p>To list subdivisions (U.S. states), you must include both <code>startcountrycode</code> and <code>startsubdivisioncode</code>.</p>
        style: form
        explode: true
        schema:
          maxLength: 3
          minLength: 1
          type: string
      - name: maxitems
        in: query
        description: (Optional) The maximum number of geolocations to be included in the response body for this request. If more than <code>maxitems</code> geolocations remain to be listed, then the value of the <code>IsTruncated</code> element in the response is <code>true</code>.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListGeoLocationsResponse'
                - description: A complex type containing the response information for the request.
                  xml:
                    name: ListGeoLocationsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzonesbyname:
    get:
      summary: ListHostedZonesByName
      description: <p>Retrieves a list of your hosted zones in lexicographic order. The response includes a <code>HostedZones</code> child element for each hosted zone created by the current Amazon Web Services account. </p> <p> <code>ListHostedZonesByName</code> sorts hosted zones by name with the labels reversed. For example:</p> <p> <code>com.example.www.</code> </p> <p>Note the trailing dot, which can change the sort order in some circumstances.</p> <p>If the domain name includes escape characters or Punycode, <code>ListHostedZonesByName</code> alphabetizes the domain name using the escaped or Punycoded value, which is the format that Amazon Route 53 saves in its database. For example, to create a hosted zone for exämple.com, you specify ex\344mple.com for the domain name. <code>ListHostedZonesByName</code> alphabetizes it as:</p> <p> <code>com.ex\344mple.</code> </p> <p>The labels are reversed and alphabetized using the escaped value. For more information about valid domain name formats, including internationalized domain names, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html">DNS Domain Name Format</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Route 53 returns up to 100 items in each response. If you have a lot of hosted zones, use the <code>MaxItems</code> parameter to list them in groups of up to 100. The response includes values that help navigate from one group of <code>MaxItems</code> hosted zones to the next:</p> <ul> <li> <p>The <code>DNSName</code> and <code>HostedZoneId</code> elements in the response contain the values, if any, specified for the <code>dnsname</code> and <code>hostedzoneid</code> parameters in the request that produced the current response.</p> </li> <li> <p>The <code>MaxItems</code> element in the response contains the value, if any, that you specified for the <code>maxitems</code> parameter in the request that produced the current response.</p> </li> <li> <p>If the value of <code>IsTruncated</code> in the response is true, there are more hosted zones associated with the current Amazon Web Services account. </p> <p>If <code>IsTruncated</code> is false, this response includes the last hosted zone that is associated with the current account. The <code>NextDNSName</code> element and <code>NextHostedZoneId</code> elements are omitted from the response.</p> </li> <li> <p>The <code>NextDNSName</code> and <code>NextHostedZoneId</code> elements in the response contain the domain name and the hosted zone ID of the next hosted zone that is associated with the current Amazon Web Services account. If you want to list more hosted zones, make another call to <code>ListHostedZonesByName</code>, and specify the value of <code>NextDNSName</code> and <code>NextHostedZoneId</code> in the <code>dnsname</code> and <code>hostedzoneid</code> parameters, respectively.</p> </li> </ul>
      operationId: ListHostedZonesByName
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: dnsname
        in: query
        description: (Optional) For your first request to <code>ListHostedZonesByName</code>, include the <code>dnsname</code> parameter only if you want to specify the name of the first hosted zone in the response. If you don't include the <code>dnsname</code> parameter, Amazon Route 53 returns all of the hosted zones that were created by the current Amazon Web Services account, in ASCII order. For subsequent requests, include both <code>dnsname</code> and <code>hostedzoneid</code> parameters. For <code>dnsname</code>, specify the value of <code>NextDNSName</code> from the previous response.
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: hostedzoneid
        in: query
        description: <p>(Optional) For your first request to <code>ListHostedZonesByName</code>, do not include the <code>hostedzoneid</code> parameter.</p> <p>If you have more hosted zones than the value of <code>maxitems</code>, <code>ListHostedZonesByName</code> returns only the first <code>maxitems</code> hosted zones. To get the next group of <code>maxitems</code> hosted zones, submit another request to <code>ListHostedZonesByName</code> and include both <code>dnsname</code> and <code>hostedzoneid</code> parameters. For the value of <code>hostedzoneid</code>, specify the value of the <code>NextHostedZoneId</code> element from the previous response.</p>
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: maxitems
        in: query
        description: The maximum number of hosted zones to be included in the response body for this request. If you have more than <code>maxitems</code> hosted zones, then the value of the <code>IsTruncated</code> element in the response is true, and the values of <code>NextDNSName</code> and <code>NextHostedZoneId</code> specify the first hosted zone in the next group of <code>maxitems</code> hosted zones.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListHostedZonesByNameResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListHostedZonesByNameResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidDomainName
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzonesbyvpc#vpcid&vpcregion:
    get:
      summary: ListHostedZonesByVPC
      description: <p>Lists all the private hosted zones that a specified VPC is associated with, regardless of which Amazon Web Services account or Amazon Web Services service owns the hosted zones. The <code>HostedZoneOwner</code> structure in the response contains one of the following values:</p> <ul> <li> <p>An <code>OwningAccount</code> element, which contains the account number of either the current Amazon Web Services account or another Amazon Web Services account. Some services, such as Cloud Map, create hosted zones using the current account. </p> </li> <li> <p>An <code>OwningService</code> element, which identifies the Amazon Web Services service that created and owns the hosted zone. For example, if a hosted zone was created by Amazon Elastic File System (Amazon EFS), the value of <code>Owner</code> is <code>efs.amazonaws.com</code>. </p> </li> </ul>
      operationId: ListHostedZonesByVPC
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: vpcid
        in: query
        description: The ID of the Amazon VPC that you want to list hosted zones for.
        required: true
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: vpcregion
        in: query
        description: For the Amazon VPC that you specified for <code>VPCId</code>, the Amazon Web Services Region that you created the VPC in.
        required: true
        style: form
        explode: true
        schema:
          allOf:
          - $ref: '#/components/schemas/VPCRegion'
          - description: For the Amazon VPC that you specified for <code>VPCId</code>, the Amazon Web Services Region that you created the VPC in.
            example: us-east-1
      - name: maxitems
        in: query
        description: (Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If the specified VPC is associated with more than <code>MaxItems</code> hosted zones, the response includes a <code>NextToken</code> element. <code>NextToken</code> contains an encrypted token that identifies the first hosted zone that Route 53 will return if you submit another request.
        style: form
        explode: true
        schema:
          type: string
      - name: nexttoken
        in: query
        description: <p>If the previous response included a <code>NextToken</code> element, the specified VPC is associated with more hosted zones. To get more hosted zones, submit another <code>ListHostedZonesByVPC</code> request. </p> <p>For the value of <code>NextToken</code>, specify the value of <code>NextToken</code> from the previous response.</p> <p>If the previous response didn't include a <code>NextToken</code> element, there are no more hosted zones to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListHostedZonesByVPCResponse'
                - xml:
                    name: ListHostedZonesByVPCResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidPaginationToken
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/hostedzone/{Id}/rrset:
    get:
      summary: ListResourceRecordSets
      description: "<p>Lists the resource record sets in a specified hosted zone.</p> <p> <code>ListResourceRecordSets</code> returns up to 300 resource record sets at a time in ASCII order, beginning at a position specified by the <code>name</code> and <code>type</code> elements.</p> <p> <b>Sort order</b> </p> <p> <code>ListResourceRecordSets</code> sorts results first by DNS name with the labels reversed, for example:</p> <p> <code>com.example.www.</code> </p> <p>Note the trailing dot, which can change the sort order when the record name contains characters that appear before <code>.</code> (decimal 46) in the ASCII table. These characters include the following: <code>! \" # $ % &amp; ' ( ) * + , -</code> </p> <p>When multiple records have the same DNS name, <code>ListResourceRecordSets</code> sorts results by the record type.</p> <p> <b>Specifying where to start listing records</b> </p> <p>You can use the name and type elements to specify the resource record set that the list begins with:</p> <dl> <dt>If you do not specify Name or Type</dt> <dd> <p>The results begin with the first resource record set that the hosted zone contains.</p> </dd> <dt>If you specify Name but not Type</dt> <dd> <p>The results begin with the first resource record set in the list whose name is greater than or equal to <code>Name</code>.</p> </dd> <dt>If you specify Type but not Name</dt> <dd> <p>Amazon Route 53 returns the <code>InvalidInput</code> error.</p> </dd> <dt>If you specify both Name and Type</dt> <dd> <p>The results begin with the first resource record set in the list whose name is greater than or equal to <code>Name</code>, and whose type is greater than or equal to <code>Type</code>.</p> </dd> </dl> <p> <b>Resource record sets that are PENDING</b> </p> <p>This action returns the most current version of the records. This includes records that are <code>PENDING</code>, and that are not yet available on all Route 53 DNS servers.</p> <p> <b>Changing resource record sets</b> </p> <p>To ensure that you get an accurate listing of the resource record sets for a hosted zone at a point in time, do not submit a <code>ChangeResourceRecordSets</code> request while you're paging through the results of a <code>ListResourceRecordSets</code> request. If you do, some pages may display results without the latest changes while other pages display results with the latest changes.</p> <p> <b>Displaying the next page of results</b> </p> <p>If a <code>ListResourceRecordSets</code> command returns more than one page of results, the value of <code>IsTruncated</code> is <code>true</code>. To display the next page of results, get the values of <code>NextRecordName</code>, <code>NextRecordType</code>, and <code>NextRecordIdentifier</code> (if any) from the response. Then submit another <code>ListResourceRecordSets</code> request, and specify those values for <code>StartRecordName</code>, <code>StartRecordType</code>, and <code>StartRecordIdentifier</code>.</p>"
      operationId: ListResourceRecordSets
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: The ID of the hosted zone that contains the resource record sets that you want to list.
        required: true
        style: simple
        schema:
          maxLength: 32
          type: string
      - name: name
        in: query
        description: The first name in the lexicographic ordering of resource record sets that you want to list. If the specified record name doesn't exist, the results begin with the first resource record set that has a name greater than the value of <code>name</code>.
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: type
        in: query
        description: '<p>The type of resource record set to begin the record listing from.</p> <p>Valid values for basic resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>NS</code> | <code>PTR</code> | <code>SOA</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for weighted, latency, geolocation, and failover resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for alias resource record sets: </p> <ul> <li> <p> <b>API Gateway custom regional API or edge-optimized API</b>: A</p> </li> <li> <p> <b>CloudFront distribution</b>: A or AAAA</p> </li> <li> <p> <b>Elastic Beanstalk environment that has a regionalized subdomain</b>: A</p> </li> <li> <p> <b>Elastic Load Balancing load balancer</b>: A | AAAA</p> </li> <li> <p> <b>S3 bucket</b>: A</p> </li> <li> <p> <b>VPC interface VPC endpoint</b>: A</p> </li> <li> <p> <b>Another resource record set in this hosted zone:</b> The type of the resource record set that the alias references.</p> </li> </ul> <p>Constraint: Specifying <code>type</code> without specifying <code>name</code> returns an <code>InvalidInput</code> error.</p>'
        style: form
        explode: true
        schema:
          allOf:
          - $ref: '#/components/schemas/RRType'
          - description: '<p>The type of resource record set to begin the record listing from.</p> <p>Valid values for basic resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>NS</code> | <code>PTR</code> | <code>SOA</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for weighted, latency, geolocation, and failover resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for alias resource record sets: </p> <ul> <li> <p> <b>API Gateway custom regional API or edge-optimized API</b>: A</p> </li> <li> <p> <b>CloudFront distribution</b>: A or AAAA</p> </li> <li> <p> <b>Elastic Beanstalk environment that has a regionalized subdomain</b>: A</p> </li> <li> <p> <b>Elastic Load Balancing load balancer</b>: A | AAAA</p> </li> <li> <p> <b>S3 bucket</b>: A</p> </li> <li> <p> <b>VPC interface VPC endpoint</b>: A</p> </li> <li> <p> <b>Another resource record set in this hosted zone:</b> The type of the resource record set that the alias references.</p> </li> </ul> <p>Constraint: Specifying <code>type</code> without specifying <code>name</code> returns an <code>InvalidInput</code> error.</p>'
            example: SOA
      - name: identifier
        in: query
        description: <i>Resource record sets that have a routing policy other than simple:</i> If results were truncated for a given DNS name and type, specify the value of <code>NextRecordIdentifier</code> from the previous response to get the next resource record set that has the current DNS name and type.
        style: form
        explode: true
        schema:
          maxLength: 128
          minLength: 1
          type: string
      - name: maxitems
        in: query
        description: (Optional) The maximum number of resource records sets to include in the response body for this request. If the response includes more than <code>maxitems</code> resource record sets, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of the <code>NextRecordName</code> and <code>NextRecordType</code> elements in the response identify the first resource record set in the next group of <code>maxitems</code> resource record sets.
        style: form
        explode: true
        schema:
          type: string
      - name: MaxItems
        in: query
        description: Pagination limit
        style: form
        explode: true
        schema:
          type: string
      - name: StartRecordName
        in: query
        description: Pagination token
        style: form
        explode: true
        schema:
          type: string
      - name: StartRecordType
        in: query
        description: Pagination token
        style: form
        explode: true
        schema:
          type: string
      - name: StartRecordIdentifier
        in: query
        description: Pagination token
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListResourceRecordSetsResponse'
                - description: A complex type that contains list information for the resource record set.
                  xml:
                    name: ListResourceRecordSetsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/tags/{ResourceType}:
    post:
      summary: ListTagsForResources
      description: <p>Lists tags for up to 10 health checks or hosted zones.</p> <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
      operationId: ListTagsForResources
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: ResourceType
        in: path
        description: <p>The type of the resources.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/TagResourceType'
          - description: <p>The type of the resources.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
            example: healthcheck
      - name: Content-Type
        in: header
        description: ''
        required: true
        style: simple
        schema:
          allOf:
          - $ref: '#/components/schemas/Content-Type'
          - example: text/xml
      requestBody:
        description: ''
        content:
          application/xml:
            schema:
              allOf:
              - $ref: '#/components/schemas/Tags201341Request1'
              - xml:
                  name: Tags201341Request1
                  attribute: false
                  wrapped: false
        required: true
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTagsForResourcesResponse'
                - description: A complex type containing tags for the specified resources.
                  xml:
                    name: ListTagsForResourcesResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchHealthCheck
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
        '483':
          description: PriorRequestNotComplete
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response483
                  attribute: false
                  wrapped: false
        '484':
          description: ThrottlingException
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response484
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicies:
    get:
      summary: ListTrafficPolicies
      description: <p>Gets information about the latest version for every traffic policy that is associated with the current Amazon Web Services account. Policies are listed in the order that they were created in. </p> <p>For information about how of deleting a traffic policy affects the response from <code>ListTrafficPolicies</code>, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html">DeleteTrafficPolicy</a>. </p>
      operationId: ListTrafficPolicies
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: trafficpolicyid
        in: query
        description: <p>(Conditional) For your first request to <code>ListTrafficPolicies</code>, don't include the <code>TrafficPolicyIdMarker</code> parameter.</p> <p>If you have more traffic policies than the value of <code>MaxItems</code>, <code>ListTrafficPolicies</code> returns only the first <code>MaxItems</code> traffic policies. To get the next group of policies, submit another request to <code>ListTrafficPolicies</code>. For the value of <code>TrafficPolicyIdMarker</code>, specify the value of <code>TrafficPolicyIdMarker</code> that was returned in the previous response.</p>
        style: form
        explode: true
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: maxitems
        in: query
        description: (Optional) The maximum number of traffic policies that you want Amazon Route 53 to return in response to this request. If you have more than <code>MaxItems</code> traffic policies, the value of <code>IsTruncated</code> in the response is <code>true</code>, and the value of <code>TrafficPolicyIdMarker</code> is the ID of the first traffic policy that Route 53 will return if you submit another request.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTrafficPoliciesResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListTrafficPoliciesResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicyinstances:
    get:
      summary: ListTrafficPolicyInstances
      description: <p>Gets information about the traffic policy instances that you created by using the current Amazon Web Services account.</p> <note> <p>After you submit an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</p> </note> <p>Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the <code>MaxItems</code> parameter to list them in groups of up to 100.</p>
      operationId: ListTrafficPolicyInstances
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: hostedzoneid
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>HostedZoneId</code>, specify the value of <code>HostedZoneIdMarker</code> from the previous response, which is the hosted zone ID of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: trafficpolicyinstancename
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>trafficpolicyinstancename</code>, specify the value of <code>TrafficPolicyInstanceNameMarker</code> from the previous response, which is the name of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: trafficpolicyinstancetype
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>trafficpolicyinstancetype</code>, specify the value of <code>TrafficPolicyInstanceTypeMarker</code> from the previous response, which is the type of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          allOf:
          - $ref: '#/components/schemas/RRType'
          - description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>trafficpolicyinstancetype</code>, specify the value of <code>TrafficPolicyInstanceTypeMarker</code> from the previous response, which is the type of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
            example: SOA
      - name: maxitems
        in: query
        description: The maximum number of traffic policy instances that you want Amazon Route 53 to return in response to a <code>ListTrafficPolicyInstances</code> request. If you have more than <code>MaxItems</code> traffic policy instances, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTrafficPolicyInstancesResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListTrafficPolicyInstancesResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchTrafficPolicyInstance
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicyinstances/hostedzone#id:
    get:
      summary: ListTrafficPolicyInstancesByHostedZone
      description: <p>Gets information about the traffic policy instances that you created in a specified hosted zone.</p> <note> <p>After you submit a <code>CreateTrafficPolicyInstance</code> or an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</p> </note> <p>Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the <code>MaxItems</code> parameter to list them in groups of up to 100.</p>
      operationId: ListTrafficPolicyInstancesByHostedZone
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: id
        in: query
        description: The ID of the hosted zone that you want to list traffic policy instances for.
        required: true
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: trafficpolicyinstancename
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response is true, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>trafficpolicyinstancename</code>, specify the value of <code>TrafficPolicyInstanceNameMarker</code> from the previous response, which is the name of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: trafficpolicyinstancetype
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response is true, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>trafficpolicyinstancetype</code>, specify the value of <code>TrafficPolicyInstanceTypeMarker</code> from the previous response, which is the type of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          allOf:
          - $ref: '#/components/schemas/RRType'
          - description: <p>If the value of <code>IsTruncated</code> in the previous response is true, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>trafficpolicyinstancetype</code>, specify the value of <code>TrafficPolicyInstanceTypeMarker</code> from the previous response, which is the type of the first traffic policy instance in the next group of traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
            example: SOA
      - name: maxitems
        in: query
        description: The maximum number of traffic policy instances to be included in the response body for this request. If you have more than <code>MaxItems</code> traffic policy instances, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> represent the first traffic policy instance that Amazon Route 53 will return if you submit another request.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTrafficPolicyInstancesByHostedZoneResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListTrafficPolicyInstancesByHostedZoneResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchTrafficPolicyInstance
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicyinstances/trafficpolicy#id&version:
    get:
      summary: ListTrafficPolicyInstancesByPolicy
      description: <p>Gets information about the traffic policy instances that you created by using a specify traffic policy version.</p> <note> <p>After you submit a <code>CreateTrafficPolicyInstance</code> or an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</p> </note> <p>Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the <code>MaxItems</code> parameter to list them in groups of up to 100.</p>
      operationId: ListTrafficPolicyInstancesByPolicy
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: id
        in: query
        description: The ID of the traffic policy for which you want to list traffic policy instances.
        required: true
        style: form
        explode: true
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: version
        in: query
        description: The version of the traffic policy for which you want to list traffic policy instances. The version must be associated with the traffic policy that is specified by <code>TrafficPolicyId</code>.
        required: true
        style: form
        explode: true
        schema:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      - name: hostedzoneid
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstancesByPolicy</code> request. </p> <p>For the value of <code>hostedzoneid</code>, specify the value of <code>HostedZoneIdMarker</code> from the previous response, which is the hosted zone ID of the first traffic policy instance that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: trafficpolicyinstancename
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstancesByPolicy</code> request.</p> <p>For the value of <code>trafficpolicyinstancename</code>, specify the value of <code>TrafficPolicyInstanceNameMarker</code> from the previous response, which is the name of the first traffic policy instance that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: trafficpolicyinstancetype
        in: query
        description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstancesByPolicy</code> request.</p> <p>For the value of <code>trafficpolicyinstancetype</code>, specify the value of <code>TrafficPolicyInstanceTypeMarker</code> from the previous response, which is the name of the first traffic policy instance that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
        style: form
        explode: true
        schema:
          allOf:
          - $ref: '#/components/schemas/RRType'
          - description: <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get more traffic policy instances, submit another <code>ListTrafficPolicyInstancesByPolicy</code> request.</p> <p>For the value of <code>trafficpolicyinstancetype</code>, specify the value of <code>TrafficPolicyInstanceTypeMarker</code> from the previous response, which is the name of the first traffic policy instance that Amazon Route 53 will return if you submit another request.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>
            example: SOA
      - name: maxitems
        in: query
        description: The maximum number of traffic policy instances to be included in the response body for this request. If you have more than <code>MaxItems</code> traffic policy instances, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> represent the first traffic policy instance that Amazon Route 53 will return if you submit another request.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTrafficPolicyInstancesByPolicyResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListTrafficPolicyInstancesByPolicyResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchTrafficPolicyInstance
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
        '482':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response482
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/trafficpolicies/{Id}/versions:
    get:
      summary: ListTrafficPolicyVersions
      description: <p>Gets information about all of the versions for a specified traffic policy.</p> <p>Traffic policy versions are listed in numerical order by <code>VersionNumber</code>.</p>
      operationId: ListTrafficPolicyVersions
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: Id
        in: path
        description: Specify the value of <code>Id</code> of the traffic policy for which you want to list all versions.
        required: true
        style: simple
        schema:
          maxLength: 36
          minLength: 1
          type: string
      - name: trafficpolicyversion
        in: query
        description: <p>For your first request to <code>ListTrafficPolicyVersions</code>, don't include the <code>TrafficPolicyVersionMarker</code> parameter.</p> <p>If you have more traffic policy versions than the value of <code>MaxItems</code>, <code>ListTrafficPolicyVersions</code> returns only the first group of <code>MaxItems</code> versions. To get more traffic policy versions, submit another <code>ListTrafficPolicyVersions</code> request. For the value of <code>TrafficPolicyVersionMarker</code>, specify the value of <code>TrafficPolicyVersionMarker</code> in the previous response.</p>
        style: form
        explode: true
        schema:
          maxLength: 4
          type: string
      - name: maxitems
        in: query
        description: The maximum number of traffic policy versions that you want Amazon Route 53 to include in the response body for this request. If the specified traffic policy has more than <code>MaxItems</code> versions, the value of <code>IsTruncated</code> in the response is <code>true</code>, and the value of the <code>TrafficPolicyVersionMarker</code> element is the ID of the first version that Route 53 will return if you submit another request.
        style: form
        explode: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/ListTrafficPolicyVersionsResponse'
                - description: A complex type that contains the response information for the request.
                  xml:
                    name: ListTrafficPolicyVersionsResponse
                    attribute: false
                    wrapped: false
        '480':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: NoSuchTrafficPolicy
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
  /2013-04-01/testdnsanswer#hostedzoneid&recordname&recordtype:
    get:
      summary: TestDNSAnswer
      description: <p>Gets the value that Amazon Route 53 returns in response to a DNS request for a specified record name and type. You can optionally specify the IP address of a DNS resolver, an EDNS0 client subnet IP address, and a subnet mask. </p> <p>This call only supports querying public hosted zones.</p>
      operationId: TestDNSAnswer
      parameters:
      - name: X-Amz-Content-Sha256
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Date
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Algorithm
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Credential
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Security-Token
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-Signature
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: X-Amz-SignedHeaders
        in: header
        description: ''
        style: simple
        schema:
          type: string
      - name: hostedzoneid
        in: query
        description: The ID of the hosted zone that you want Amazon Route 53 to simulate a query for.
        required: true
        style: form
        explode: true
        schema:
          maxLength: 32
          type: string
      - name: recordname
        in: query
        description: The name of the resource record set that you want Amazon Route 53 to simulate a query for.
        required: true
        style: form
        explode: true
        schema:
          maxLength: 1024
          type: string
      - name: recordtype
        in: query
        description: The type of the resource record set.
        required: true
        style: form
        explode: true
        schema:
          allOf:
          - $ref: '#/components/schemas/RRType'
          - description: The type of the resource record set.
            example: SOA
      - name: resolverip
        in: query
        description: If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you omit this value, <code>TestDnsAnswer</code> uses the IP address of a DNS resolver in the Amazon Web Services US East (N. Virginia) Region (<code>us-east-1</code>).
        style: form
        explode: true
        schema:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
      - name: edns0clientsubnetip
        in: query
        description: If the resolver that you specified for resolverip supports EDNS0, specify the IPv4 or IPv6 address of a client in the applicable location, for example, <code>192.0.2.44</code> or <code>2001:db8:85a3::8a2e:370:7334</code>.
        style: form
        explode: true
        schema:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
      - name: edns0clientsubnetmask
        in: query
        description: '<p>If you specify an IP address for <code>edns0clientsubnetip</code>, you can optionally specify the number of bits of the IP address that you want the checking tool to include in the DNS query. For example, if you specify <code>192.0.2.44</code> for <code>edns0clientsubnetip</code> and <code>24</code> for <code>edns0clientsubnetmask</code>, the checking tool will simulate a request from 192.0.2.0/24. The default value is 24 bits for IPv4 addresses and 64 bits for IPv6 addresses.</p> <p>The range of valid values depends on whether <code>edns0clientsubnetip</code> is an IPv4 or an IPv6 address:</p> <ul> <li> <p> <b>IPv4</b>: Specify a value between 0 and 32</p> </li> <li> <p> <b>IPv6</b>: Specify a value between 0 and 128</p> </li> </ul>'
        style: form
        explode: true
        schema:
          maxLength: 3
          minLength: 0
          type: string
      responses:
        '200':
          description: Success
          headers: {}
          content:
            text/xml:
              schema:
                allOf:
                - $ref: '#/components/schemas/TestDNSAnswerResponse'
                - description: A complex type that contains the response to a <code>TestDNSAnswer</code> request.
                  xml:
                    name: TestDNSAnswerResponse
                    attribute: false
                    wrapped: false
        '480':
          description: NoSuchHostedZone
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response480
                  attribute: false
                  wrapped: false
        '481':
          description: InvalidInput
          headers: {}
          content:
            text/xml:
              schema:
                xml:
                  name: response481
                  attribute: false
                  wrapped: false
      deprecated: false
components:
  schemas:
    ActivateKeySigningKeyResponse:
      title: ActivateKeySigningKeyResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          allOf:
          - $ref: '#/components/schemas/ChangeInfo'
          - description: A complex type that describes change information about changes made to your hosted zone.
    AssociateVPCWithHostedZoneResponse:
      title: AssociateVPCWithHostedZoneResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          $ref: '#/components/schemas/ChangeInfo1'
      description: A complex type that contains the response information for the <code>AssociateVPCWithHostedZone</code> request.
      example:
        ChangeInfo:
          Comment: ''
          Id: /change/C3HC6WDB2UANE2
          Status: INSYNC
          SubmittedAt: 2017-01-31T01:36:41.958Z
    VPCRegion:
      title: VPCRegion
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - ap-east-1
      - me-south-1
      - us-gov-west-1
      - us-gov-east-1
      - us-iso-east-1
      - us-isob-east-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-south-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - eu-north-1
      - sa-east-1
      - ca-central-1
      - cn-north-1
      - af-south-1
      - eu-south-1
      type: string
      example: us-east-1
    ChangeResourceRecordSetsResponse:
      title: ChangeResourceRecordSetsResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          $ref: '#/components/schemas/ChangeInfo1'
      description: A complex type containing the response for the request.
      example:
        ChangeInfo:
          Comment: Geolocation alias configuration for example.com
          Id: /change/C2682N5HXP0BZ4
          Status: PENDING
          SubmittedAt: 2017-02-10T01:36:41.958Z
    Tag:
      title: Tag
      type: object
      properties:
        Key:
          maxLength: 128
          type: string
        Value:
          maxLength: 256
          type: string
      description: A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
    CreateHealthCheckResponse:
      title: CreateHealthCheckResponse
      required:
      - HealthCheck
      type: object
      properties:
        HealthCheck:
          $ref: '#/components/schemas/HealthCheck1'
      description: A complex type containing the response information for the new health check.
    HealthCheckType:
      title: HealthCheckType
      enum:
      - HTTP
      - HTTPS
      - HTTP_STR_MATCH
      - HTTPS_STR_MATCH
      - TCP
      - CALCULATED
      - CLOUDWATCH_METRIC
      - RECOVERY_CONTROL
      type: string
      example: HTTP
    AlarmIdentifier:
      title: AlarmIdentifier
      required:
      - Region
      - Name
      type: object
      properties:
        Region:
          allOf:
          - $ref: '#/components/schemas/CloudWatchRegion1'
          - description: <p>For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.</p> <p>For the current list of CloudWatch regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/cw_region.html">Amazon CloudWatch endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
            example: us-east-1
        Name:
          maxLength: 256
          minLength: 1
          type: string
      description: A complex type that identifies the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether the specified health check is healthy.
    InsufficientDataHealthStatus:
      title: InsufficientDataHealthStatus
      enum:
      - Healthy
      - Unhealthy
      - LastKnownStatus
      type: string
      example: Healthy
    CreateHostedZoneResponse:
      title: CreateHostedZoneResponse
      required:
      - HostedZone
      - ChangeInfo
      - DelegationSet
      type: object
      properties:
        HostedZone:
          $ref: '#/components/schemas/HostedZone1'
        ChangeInfo:
          $ref: '#/components/schemas/ChangeInfo1'
        DelegationSet:
          $ref: '#/components/schemas/DelegationSet1'
        VPC:
          $ref: '#/components/schemas/VPC1'
      description: A complex type containing the response information for the hosted zone.
    CreateKeySigningKeyResponse:
      title: CreateKeySigningKeyResponse
      required:
      - ChangeInfo
      - KeySigningKey
      type: object
      properties:
        ChangeInfo:
          allOf:
          - $ref: '#/components/schemas/ChangeInfo'
          - description: A complex type that describes change information about changes made to your hosted zone.
        KeySigningKey:
          $ref: '#/components/schemas/KeySigningKey2'
    CreateQueryLoggingConfigResponse:
      title: CreateQueryLoggingConfigResponse
      required:
      - QueryLoggingConfig
      type: object
      properties:
        QueryLoggingConfig:
          $ref: '#/components/schemas/QueryLoggingConfig1'
    CreateReusableDelegationSetResponse:
      title: CreateReusableDelegationSetResponse
      required:
      - DelegationSet
      type: object
      properties:
        DelegationSet:
          $ref: '#/components/schemas/DelegationSet1'
    CreateTrafficPolicyResponse:
      title: CreateTrafficPolicyResponse
      required:
      - TrafficPolicy
      type: object
      properties:
        TrafficPolicy:
          $ref: '#/components/schemas/TrafficPolicy1'
      description: A complex type that contains the response information for the <code>CreateTrafficPolicy</code> request.
    CreateTrafficPolicyInstanceResponse:
      title: CreateTrafficPolicyInstanceResponse
      required:
      - TrafficPolicyInstance
      type: object
      properties:
        TrafficPolicyInstance:
          $ref: '#/components/schemas/TrafficPolicyInstance1'
      description: A complex type that contains the response information for the <code>CreateTrafficPolicyInstance</code> request.
    CreateTrafficPolicyVersionResponse:
      title: CreateTrafficPolicyVersionResponse
      required:
      - TrafficPolicy
      type: object
      properties:
        TrafficPolicy:
          $ref: '#/components/schemas/TrafficPolicy1'
      description: A complex type that contains the response information for the <code>CreateTrafficPolicyVersion</code> request.
    CreateVPCAssociationAuthorizationResponse:
      title: CreateVPCAssociationAuthorizationResponse
      required:
      - HostedZoneId
      - VPC
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        VPC:
          $ref: '#/components/schemas/VPC1'
      description: A complex type that contains the response information from a <code>CreateVPCAssociationAuthorization</code> request.
    DeactivateKeySigningKeyResponse:
      title: DeactivateKeySigningKeyResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          allOf:
          - $ref: '#/components/schemas/ChangeInfo'
          - description: A complex type that describes change information about changes made to your hosted zone.
    DeleteHostedZoneResponse:
      title: DeleteHostedZoneResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          $ref: '#/components/schemas/ChangeInfo1'
      description: A complex type that contains the response to a <code>DeleteHostedZone</code> request.
    DeleteKeySigningKeyResponse:
      title: DeleteKeySigningKeyResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          allOf:
          - $ref: '#/components/schemas/ChangeInfo'
          - description: A complex type that describes change information about changes made to your hosted zone.
    DisableHostedZoneDNSSECResponse:
      title: DisableHostedZoneDNSSECResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          allOf:
          - $ref: '#/components/schemas/ChangeInfo'
          - description: A complex type that describes change information about changes made to your hosted zone.
    DisassociateVPCFromHostedZoneResponse:
      title: DisassociateVPCFromHostedZoneResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          $ref: '#/components/schemas/ChangeInfo1'
      description: A complex type that contains the response information for the disassociate request.
    EnableHostedZoneDNSSECResponse:
      title: EnableHostedZoneDNSSECResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          allOf:
          - $ref: '#/components/schemas/ChangeInfo'
          - description: A complex type that describes change information about changes made to your hosted zone.
    GetAccountLimitResponse:
      title: GetAccountLimitResponse
      required:
      - Limit
      - Count
      type: object
      properties:
        Limit:
          $ref: '#/components/schemas/Limit'
        Count:
          minimum: 0
          type: integer
          format: int32
      description: A complex type that contains the requested limit.
    GetChangeResponse:
      title: GetChangeResponse
      required:
      - ChangeInfo
      type: object
      properties:
        ChangeInfo:
          $ref: '#/components/schemas/ChangeInfo1'
      description: A complex type that contains the <code>ChangeInfo</code> element.
    GetCheckerIpRangesResponse:
      title: GetCheckerIpRangesResponse
      required:
      - CheckerIpRanges
      type: object
      properties:
        CheckerIpRanges:
          type: array
          items:
            type: string
          description: ''
      description: A complex type that contains the <code>CheckerIpRanges</code> element.
    GetDNSSECResponse:
      title: GetDNSSECResponse
      required:
      - Status
      - KeySigningKeys
      type: object
      properties:
        Status:
          $ref: '#/components/schemas/Status'
        KeySigningKeys:
          type: array
          items:
            $ref: '#/components/schemas/KeySigningKey'
          description: ''
    GetGeoLocationResponse:
      title: GetGeoLocationResponse
      required:
      - GeoLocationDetails
      type: object
      properties:
        GeoLocationDetails:
          $ref: '#/components/schemas/GeoLocationDetails2'
      description: A complex type that contains the response information for the specified geolocation code.
    GetHealthCheckResponse:
      title: GetHealthCheckResponse
      required:
      - HealthCheck
      type: object
      properties:
        HealthCheck:
          $ref: '#/components/schemas/HealthCheck1'
      description: A complex type that contains the response to a <code>GetHealthCheck</code> request.
    GetHealthCheckCountResponse:
      title: GetHealthCheckCountResponse
      required:
      - HealthCheckCount
      type: object
      properties:
        HealthCheckCount:
          type: integer
          format: int32
      description: A complex type that contains the response to a <code>GetHealthCheckCount</code> request.
    GetHealthCheckLastFailureReasonResponse:
      title: GetHealthCheckLastFailureReasonResponse
      required:
      - HealthCheckObservations
      type: object
      properties:
        HealthCheckObservations:
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckObservation2'
          description: ''
      description: A complex type that contains the response to a <code>GetHealthCheckLastFailureReason</code> request.
    GetHealthCheckStatusResponse:
      title: GetHealthCheckStatusResponse
      required:
      - HealthCheckObservations
      type: object
      properties:
        HealthCheckObservations:
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckObservation2'
          description: ''
      description: A complex type that contains the response to a <code>GetHealthCheck</code> request.
    GetHostedZoneResponse:
      title: GetHostedZoneResponse
      required:
      - HostedZone
      type: object
      properties:
        HostedZone:
          $ref: '#/components/schemas/HostedZone1'
        DelegationSet:
          $ref: '#/components/schemas/DelegationSet1'
        VPCs:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/VPC1'
          description: ''
      description: A complex type that contain the response to a <code>GetHostedZone</code> request.
    GetHostedZoneCountResponse:
      title: GetHostedZoneCountResponse
      required:
      - HostedZoneCount
      type: object
      properties:
        HostedZoneCount:
          type: integer
          format: int32
      description: A complex type that contains the response to a <code>GetHostedZoneCount</code> request.
    GetHostedZoneLimitResponse:
      title: GetHostedZoneLimitResponse
      required:
      - Limit
      - Count
      type: object
      properties:
        Limit:
          $ref: '#/components/schemas/Limit1'
        Count:
          minimum: 0
          type: integer
          format: int32
      description: A complex type that contains the requested limit.
    GetQueryLoggingConfigResponse:
      title: GetQueryLoggingConfigResponse
      required:
      - QueryLoggingConfig
      type: object
      properties:
        QueryLoggingConfig:
          $ref: '#/components/schemas/QueryLoggingConfig1'
    GetReusableDelegationSetResponse:
      title: GetReusableDelegationSetResponse
      required:
      - DelegationSet
      type: object
      properties:
        DelegationSet:
          $ref: '#/components/schemas/DelegationSet1'
      description: A complex type that contains the response to the <code>GetReusableDelegationSet</code> request.
    GetReusableDelegationSetLimitResponse:
      title: GetReusableDelegationSetLimitResponse
      required:
      - Limit
      - Count
      type: object
      properties:
        Limit:
          $ref: '#/components/schemas/Limit2'
        Count:
          minimum: 0
          type: integer
          format: int32
      description: A complex type that contains the requested limit.
    GetTrafficPolicyResponse:
      title: GetTrafficPolicyResponse
      required:
      - TrafficPolicy
      type: object
      properties:
        TrafficPolicy:
          $ref: '#/components/schemas/TrafficPolicy1'
      description: A complex type that contains the response information for the request.
    GetTrafficPolicyInstanceResponse:
      title: GetTrafficPolicyInstanceResponse
      required:
      - TrafficPolicyInstance
      type: object
      properties:
        TrafficPolicyInstance:
          $ref: '#/components/schemas/TrafficPolicyInstance1'
      description: A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.
    GetTrafficPolicyInstanceCountResponse:
      title: GetTrafficPolicyInstanceCountResponse
      required:
      - TrafficPolicyInstanceCount
      type: object
      properties:
        TrafficPolicyInstanceCount:
          type: integer
          format: int32
      description: A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.
    ListGeoLocationsResponse:
      title: ListGeoLocationsResponse
      required:
      - GeoLocationDetailsList
      - IsTruncated
      - MaxItems
      type: object
      properties:
        GeoLocationDetailsList:
          type: array
          items:
            $ref: '#/components/schemas/GeoLocationDetailsList'
          description: ''
        IsTruncated:
          type: boolean
        NextContinentCode:
          maxLength: 2
          minLength: 2
          type: string
        NextCountryCode:
          maxLength: 2
          minLength: 1
          type: string
        NextSubdivisionCode:
          maxLength: 3
          minLength: 1
          type: string
        MaxItems:
          type: string
      description: A complex type containing the response information for the request.
    ListHealthChecksResponse:
      title: ListHealthChecksResponse
      required:
      - HealthChecks
      - Marker
      - IsTruncated
      - MaxItems
      type: object
      properties:
        HealthChecks:
          type: array
          items:
            $ref: '#/components/schemas/HealthCheck1'
          description: ''
        Marker:
          maxLength: 64
          type: string
        IsTruncated:
          type: boolean
        NextMarker:
          maxLength: 64
          type: string
        MaxItems:
          type: string
      description: A complex type that contains the response to a <code>ListHealthChecks</code> request.
    ListHostedZonesResponse:
      title: ListHostedZonesResponse
      required:
      - HostedZones
      - Marker
      - IsTruncated
      - MaxItems
      type: object
      properties:
        HostedZones:
          type: array
          items:
            $ref: '#/components/schemas/HostedZone1'
          description: ''
        Marker:
          maxLength: 64
          type: string
        IsTruncated:
          type: boolean
        NextMarker:
          maxLength: 64
          type: string
        MaxItems:
          type: string
    ListHostedZonesByNameResponse:
      title: ListHostedZonesByNameResponse
      required:
      - HostedZones
      - IsTruncated
      - MaxItems
      type: object
      properties:
        HostedZones:
          type: array
          items:
            $ref: '#/components/schemas/HostedZone1'
          description: ''
        DNSName:
          maxLength: 1024
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
        IsTruncated:
          type: boolean
        NextDNSName:
          maxLength: 1024
          type: string
        NextHostedZoneId:
          maxLength: 32
          type: string
        MaxItems:
          type: string
      description: A complex type that contains the response information for the request.
    ListHostedZonesByVPCResponse:
      title: ListHostedZonesByVPCResponse
      required:
      - HostedZoneSummaries
      - MaxItems
      type: object
      properties:
        HostedZoneSummaries:
          type: array
          items:
            $ref: '#/components/schemas/HostedZoneSummary2'
          description: ''
        MaxItems:
          type: string
        NextToken:
          maxLength: 1024
          type: string
    ListQueryLoggingConfigsResponse:
      title: ListQueryLoggingConfigsResponse
      required:
      - QueryLoggingConfigs
      type: object
      properties:
        QueryLoggingConfigs:
          type: array
          items:
            $ref: '#/components/schemas/QueryLoggingConfig1'
          description: ''
        NextToken:
          maxLength: 1024
          type: string
    ListResourceRecordSetsResponse:
      title: ListResourceRecordSetsResponse
      required:
      - ResourceRecordSets
      - IsTruncated
      - MaxItems
      type: object
      properties:
        ResourceRecordSets:
          type: array
          items:
            $ref: '#/components/schemas/ResourceRecordSet1'
          description: ''
        IsTruncated:
          type: boolean
        NextRecordName:
          maxLength: 1024
          type: string
        NextRecordType:
          allOf:
          - $ref: '#/components/schemas/RRType7'
          - description: <p>If the results were truncated, the type of the next record in the list.</p> <p>This element is present only if <code>IsTruncated</code> is true. </p>
            example: SOA
        NextRecordIdentifier:
          maxLength: 128
          minLength: 1
          type: string
        MaxItems:
          type: string
      description: A complex type that contains list information for the resource record set.
    ListReusableDelegationSetsResponse:
      title: ListReusableDelegationSetsResponse
      required:
      - DelegationSets
      - Marker
      - IsTruncated
      - MaxItems
      type: object
      properties:
        DelegationSets:
          type: array
          items:
            $ref: '#/components/schemas/DelegationSet1'
          description: ''
        Marker:
          maxLength: 64
          type: string
        IsTruncated:
          type: boolean
        NextMarker:
          maxLength: 64
          type: string
        MaxItems:
          type: string
      description: A complex type that contains information about the reusable delegation sets that are associated with the current Amazon Web Services account.
    ListTagsForResourceResponse:
      title: ListTagsForResourceResponse
      required:
      - ResourceTagSet
      type: object
      properties:
        ResourceTagSet:
          $ref: '#/components/schemas/ResourceTagSet2'
      description: A complex type that contains information about the health checks or hosted zones for which you want to list tags.
    ListTagsForResourcesResponse:
      title: ListTagsForResourcesResponse
      required:
      - ResourceTagSets
      type: object
      properties:
        ResourceTagSets:
          type: array
          items:
            $ref: '#/components/schemas/ResourceTagSetList'
          description: ''
      description: A complex type containing tags for the specified resources.
    ListTrafficPoliciesResponse:
      title: ListTrafficPoliciesResponse
      required:
      - TrafficPolicySummaries
      - IsTruncated
      - TrafficPolicyIdMarker
      - MaxItems
      type: object
      properties:
        TrafficPolicySummaries:
          type: array
          items:
            $ref: '#/components/schemas/TrafficPolicySummary2'
          description: ''
        IsTruncated:
          type: boolean
        TrafficPolicyIdMarker:
          maxLength: 36
          minLength: 1
          type: string
        MaxItems:
          type: string
      description: A complex type that contains the response information for the request.
    ListTrafficPolicyInstancesResponse:
      title: ListTrafficPolicyInstancesResponse
      required:
      - TrafficPolicyInstances
      - IsTruncated
      - MaxItems
      type: object
      properties:
        TrafficPolicyInstances:
          type: array
          items:
            $ref: '#/components/schemas/TrafficPolicyInstance1'
          description: ''
        HostedZoneIdMarker:
          maxLength: 32
          type: string
        TrafficPolicyInstanceNameMarker:
          maxLength: 1024
          type: string
        TrafficPolicyInstanceTypeMarker:
          allOf:
          - $ref: '#/components/schemas/RRType10'
          - description: If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance that Amazon Route 53 will return if you submit another <code>ListTrafficPolicyInstances</code> request.
            example: SOA
        IsTruncated:
          type: boolean
        MaxItems:
          type: string
      description: A complex type that contains the response information for the request.
    ListTrafficPolicyInstancesByHostedZoneResponse:
      title: ListTrafficPolicyInstancesByHostedZoneResponse
      required:
      - TrafficPolicyInstances
      - IsTruncated
      - MaxItems
      type: object
      properties:
        TrafficPolicyInstances:
          type: array
          items:
            $ref: '#/components/schemas/TrafficPolicyInstance1'
          description: ''
        TrafficPolicyInstanceNameMarker:
          maxLength: 1024
          type: string
        TrafficPolicyInstanceTypeMarker:
          allOf:
          - $ref: '#/components/schemas/RRType11'
          - description: If <code>IsTruncated</code> is true, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of traffic policy instances.
            example: SOA
        IsTruncated:
          type: boolean
        MaxItems:
          type: string
      description: A complex type that contains the response information for the request.
    ListTrafficPolicyInstancesByPolicyResponse:
      title: ListTrafficPolicyInstancesByPolicyResponse
      required:
      - TrafficPolicyInstances
      - IsTruncated
      - MaxItems
      type: object
      properties:
        TrafficPolicyInstances:
          type: array
          items:
            $ref: '#/components/schemas/TrafficPolicyInstance1'
          description: ''
        HostedZoneIdMarker:
          maxLength: 32
          type: string
        TrafficPolicyInstanceNameMarker:
          maxLength: 1024
          type: string
        TrafficPolicyInstanceTypeMarker:
          allOf:
          - $ref: '#/components/schemas/RRType12'
          - description: If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.
            example: SOA
        IsTruncated:
          type: boolean
        MaxItems:
          type: string
      description: A complex type that contains the response information for the request.
    ListTrafficPolicyVersionsResponse:
      title: ListTrafficPolicyVersionsResponse
      required:
      - TrafficPolicies
      - IsTruncated
      - TrafficPolicyVersionMarker
      - MaxItems
      type: object
      properties:
        TrafficPolicies:
          type: array
          items:
            $ref: '#/components/schemas/TrafficPolicy1'
          description: ''
        IsTruncated:
          type: boolean
        TrafficPolicyVersionMarker:
          maxLength: 4
          type: string
        MaxItems:
          type: string
      description: A complex type that contains the response information for the request.
    ListVPCAssociationAuthorizationsResponse:
      title: ListVPCAssociationAuthorizationsResponse
      required:
      - HostedZoneId
      - VPCs
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        NextToken:
          maxLength: 1024
          type: string
        VPCs:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/VPC1'
          description: ''
      description: A complex type that contains the response information for the request.
    TestDNSAnswerResponse:
      title: TestDNSAnswerResponse
      required:
      - Nameserver
      - RecordName
      - RecordType
      - RecordData
      - ResponseCode
      - Protocol
      type: object
      properties:
        Nameserver:
          maxLength: 255
          minLength: 0
          type: string
        RecordName:
          maxLength: 1024
          type: string
        RecordType:
          allOf:
          - $ref: '#/components/schemas/RRType14'
          - description: The type of the resource record set that you submitted a request for.
        RecordData:
          type: array
          items:
            maxLength: 512
            minLength: 0
            type: string
            xml:
              name: RecordDataEntry
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
        ResponseCode:
          type: string
        Protocol:
          type: string
      description: A complex type that contains the response to a <code>TestDNSAnswer</code> request.
    UpdateHealthCheckResponse:
      title: UpdateHealthCheckResponse
      required:
      - HealthCheck
      type: object
      properties:
        HealthCheck:
          $ref: '#/components/schemas/HealthCheck1'
      description: A complex type that contains the response to the <code>UpdateHealthCheck</code> request.
    HealthCheckRegion:
      title: HealthCheckRegion
      enum:
      - us-east-1
      - us-west-1
      - us-west-2
      - eu-west-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - sa-east-1
      type: string
      example: us-east-1
    CloudWatchRegion:
      title: CloudWatchRegion
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - ca-central-1
      - eu-central-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - ap-east-1
      - me-south-1
      - ap-south-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - eu-north-1
      - sa-east-1
      - cn-northwest-1
      - cn-north-1
      - af-south-1
      - eu-south-1
      - us-gov-west-1
      - us-gov-east-1
      - us-iso-east-1
      - us-isob-east-1
      type: string
      example: us-east-1
    ResettableElementName:
      title: ResettableElementName
      enum:
      - FullyQualifiedDomainName
      - Regions
      - ResourcePath
      - ChildHealthChecks
      type: string
      example: FullyQualifiedDomainName
    UpdateHostedZoneCommentResponse:
      title: UpdateHostedZoneCommentResponse
      required:
      - HostedZone
      type: object
      properties:
        HostedZone:
          $ref: '#/components/schemas/HostedZone1'
      description: A complex type that contains the response to the <code>UpdateHostedZoneComment</code> request.
    UpdateTrafficPolicyCommentResponse:
      title: UpdateTrafficPolicyCommentResponse
      required:
      - TrafficPolicy
      type: object
      properties:
        TrafficPolicy:
          $ref: '#/components/schemas/TrafficPolicy1'
      description: A complex type that contains the response information for the traffic policy.
    UpdateTrafficPolicyInstanceResponse:
      title: UpdateTrafficPolicyInstanceResponse
      required:
      - TrafficPolicyInstance
      type: object
      properties:
        TrafficPolicyInstance:
          $ref: '#/components/schemas/TrafficPolicyInstance1'
      description: A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.
    AccountLimitType:
      title: AccountLimitType
      enum:
      - MAX_HEALTH_CHECKS_BY_OWNER
      - MAX_HOSTED_ZONES_BY_OWNER
      - MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER
      - MAX_REUSABLE_DELEGATION_SETS_BY_OWNER
      - MAX_TRAFFIC_POLICIES_BY_OWNER
      type: string
      example: MAX_HEALTH_CHECKS_BY_OWNER
    AccountLimit:
      title: AccountLimit
      required:
      - Type
      - Value
      type: object
      properties:
        Type:
          allOf:
          - $ref: '#/components/schemas/AccountLimitType2'
          - description: '<p>The limit that you requested. Valid values include the following:</p> <ul> <li> <p> <b>MAX_HEALTH_CHECKS_BY_OWNER</b>: The maximum number of health checks that you can create using the current account.</p> </li> <li> <p> <b>MAX_HOSTED_ZONES_BY_OWNER</b>: The maximum number of hosted zones that you can create using the current account.</p> </li> <li> <p> <b>MAX_REUSABLE_DELEGATION_SETS_BY_OWNER</b>: The maximum number of reusable delegation sets that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICIES_BY_OWNER</b>: The maximum number of traffic policies that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER</b>: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)</p> </li> </ul>'
            example: MAX_HEALTH_CHECKS_BY_OWNER
        Value:
          minimum: 1
          type: integer
          format: int32
      description: A complex type that contains the type of limit that you specified in the request and the current value for that limit.
    ChangeInfo:
      title: ChangeInfo
      required:
      - Id
      - Status
      - SubmittedAt
      type: object
      properties:
        Id:
          maxLength: 32
          type: string
        Status:
          allOf:
          - $ref: '#/components/schemas/ChangeStatus1'
          - description: The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.
            example: PENDING
        SubmittedAt:
          type: string
          format: date-time
        Comment:
          maxLength: 256
          type: string
      description: A complex type that describes change information about changes made to your hosted zone.
    AliasTarget:
      title: AliasTarget
      required:
      - HostedZoneId
      - DNSName
      - EvaluateTargetHealth
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        DNSName:
          maxLength: 1024
          type: string
        EvaluateTargetHealth:
          type: boolean
      description: <p> <i>Alias resource record sets only:</i> Information about the Amazon Web Services resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.</p> <p>When creating resource record sets for a private hosted zone, note the following:</p> <ul> <li> <p>Creating geolocation alias resource record sets or latency alias resource record sets in a private hosted zone is unsupported.</p> </li> <li> <p>For information about creating failover resource record sets in a private hosted zone, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html">Configuring Failover in a Private Hosted Zone</a>.</p> </li> </ul>
    VPC:
      title: VPC
      type: object
      properties:
        VPCRegion:
          allOf:
          - $ref: '#/components/schemas/VPCRegion1'
          - description: (Private hosted zones only) The region that an Amazon VPC was created in.
            example: us-east-1
        VPCId:
          maxLength: 1024
          type: string
          description: (Private hosted zones only) The ID of an Amazon VPC.
      description: (Private hosted zones only) A complex type that contains information about an Amazon VPC.
    AssociateVPCWithHostedZoneRequest:
      title: AssociateVPCWithHostedZoneRequest
      required:
      - VPC
      type: object
      properties:
        VPC:
          $ref: '#/components/schemas/VPC1'
        Comment:
          type: string
      description: A complex type that contains information about the request to associate a VPC with a private hosted zone.
    ChangeAction:
      title: ChangeAction
      enum:
      - CREATE
      - DELETE
      - UPSERT
      type: string
      example: CREATE
    ResourceRecordSet:
      title: ResourceRecordSet
      required:
      - Name
      - Type
      type: object
      properties:
        Name:
          maxLength: 1024
          type: string
        Type:
          allOf:
          - $ref: '#/components/schemas/RRType6'
          - description: "<p>The DNS record type. For information about different record types and how data is encoded for them, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html\">Supported DNS Resource Record Types</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Valid values for basic resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>DS</code> |<code>MX</code> | <code>NAPTR</code> | <code>NS</code> | <code>PTR</code> | <code>SOA</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for weighted, latency, geolocation, and failover resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code>. When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.</p> <p>Valid values for multivalue answer resource record sets: <code>A</code> | <code>AAAA</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <note> <p>SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of <code>Type</code> is <code>SPF</code>. RFC 7208, <i>Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1</i>, has been updated to say, \"...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it.\" In RFC 7208, see section 14.1, <a href=\"http://tools.ietf.org/html/rfc7208#section-14.1\">The SPF DNS Record Type</a>.</p> </note> <p>Values for alias resource record sets:</p> <ul> <li> <p> <b>Amazon API Gateway custom regional APIs and edge-optimized APIs:</b> <code>A</code> </p> </li> <li> <p> <b>CloudFront distributions:</b> <code>A</code> </p> <p>If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of <code>A</code> and one with a value of <code>AAAA</code>. </p> </li> <li> <p> <b>Amazon API Gateway environment that has a regionalized subdomain</b>: <code>A</code> </p> </li> <li> <p> <b>ELB load balancers:</b> <code>A</code> | <code>AAAA</code> </p> </li> <li> <p> <b>Amazon S3 buckets:</b> <code>A</code> </p> </li> <li> <p> <b>Amazon Virtual Private Cloud interface VPC endpoints</b> <code>A</code> </p> </li> <li> <p> <b>Another resource record set in this hosted zone:</b> Specify the type of the resource record set that you're creating the alias for. All values are supported except <code>NS</code> and <code>SOA</code>.</p> <note> <p>If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of <code>Type</code> is <code>CNAME</code>. This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.</p> </note> </li> </ul>"
            example: SOA
        SetIdentifier:
          maxLength: 128
          minLength: 1
          type: string
        Weight:
          maximum: 255
          minimum: 0
          type: integer
          format: int32
        Region:
          allOf:
          - $ref: '#/components/schemas/ResourceRecordSetRegion1'
          - description: <p> <i>Latency-based resource record sets only:</i> The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an Amazon Web Services resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.</p> <note> <p>Although creating latency and latency alias resource record sets in a private hosted zone is allowed, it's not supported.</p> </note> <p>When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set.</p> <p>Note the following:</p> <ul> <li> <p>You can only specify one <code>ResourceRecord</code> per latency resource record set.</p> </li> <li> <p>You can only create one latency resource record set for each Amazon EC2 Region.</p> </li> <li> <p>You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for.</p> </li> <li> <p>You can't create non-latency resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as latency resource record sets.</p> </li> </ul>
            example: us-east-1
        GeoLocation:
          $ref: '#/components/schemas/GeoLocation2'
        Failover:
          allOf:
          - $ref: '#/components/schemas/ResourceRecordSetFailover1'
          - description: "<p> <i>Failover resource record sets only:</i> To configure failover, you add the <code>Failover</code> element to two resource record sets. For one resource record set, you specify <code>PRIMARY</code> as the value for <code>Failover</code>; for the other resource record set, you specify <code>SECONDARY</code>. In addition, you include the <code>HealthCheckId</code> element and specify the health check that you want Amazon Route 53 to perform for each resource record set.</p> <p>Except where noted, the following failover behaviors assume that you have included the <code>HealthCheckId</code> element in both resource record sets:</p> <ul> <li> <p>When the primary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.</p> </li> <li> <p>When the primary resource record set is unhealthy and the secondary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the secondary resource record set.</p> </li> <li> <p>When the secondary resource record set is unhealthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.</p> </li> <li> <p>If you omit the <code>HealthCheckId</code> element for the secondary resource record set, and if the primary resource record set is unhealthy, Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.</p> </li> </ul> <p>You can't create non-failover resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as failover resource record sets.</p> <p>For failover alias resource record sets, you must also include the <code>EvaluateTargetHealth</code> element and set the value to true.</p> <p>For more information about configuring failover for Route 53, see the following topics in the <i>Amazon Route 53 Developer Guide</i>: </p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html\">Route 53 Health Checks and DNS Failover</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html\">Configuring Failover in a Private Hosted Zone</a> </p> </li> </ul>"
            example: PRIMARY
        MultiValueAnswer:
          type: boolean
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
        ResourceRecords:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/ResourceRecord2'
          description: ''
        AliasTarget:
          $ref: '#/components/schemas/AliasTarget2'
        HealthCheckId:
          maxLength: 64
          type: string
        TrafficPolicyInstanceId:
          maxLength: 36
          minLength: 1
          type: string
      description: Information about the resource record set to create or delete.
    Change:
      title: Change
      required:
      - Action
      - ResourceRecordSet
      type: object
      properties:
        Action:
          allOf:
          - $ref: '#/components/schemas/ChangeAction2'
          - description: "<p>The action to perform:</p> <ul> <li> <p> <code>CREATE</code>: Creates a resource record set that has the specified values.</p> </li> <li> <p> <code>DELETE</code>: Deletes a existing resource record set.</p> <important> <p>To delete the resource record set that is associated with a traffic policy instance, use <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicyInstance.html\">DeleteTrafficPolicyInstance</a>. Amazon Route 53 will delete the resource record set automatically. If you delete the resource record set by using <code>ChangeResourceRecordSets</code>, Route 53 doesn't automatically delete the traffic policy instance, and you'll continue to be charged for it even though it's no longer in use. </p> </important> </li> <li> <p> <code>UPSERT</code>: If a resource record set doesn't already exist, Route 53 creates it. If a resource record set does exist, Route 53 updates it with the values in the request.</p> </li> </ul>"
            example: CREATE
        ResourceRecordSet:
          $ref: '#/components/schemas/ResourceRecordSet1'
      description: The information for each resource record set that you want to change.
    ChangeBatch:
      title: ChangeBatch
      required:
      - Changes
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
        Changes:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/Change2'
          description: ''
      description: The information for a change request.
    ChangeStatus:
      title: ChangeStatus
      enum:
      - PENDING
      - INSYNC
      type: string
      example: PENDING
    ChangeResourceRecordSetsRequest:
      title: ChangeResourceRecordSetsRequest
      required:
      - ChangeBatch
      type: object
      properties:
        ChangeBatch:
          $ref: '#/components/schemas/ChangeBatch1'
      description: A complex type that contains change information for the resource record set.
    TagResourceType:
      title: TagResourceType
      enum:
      - healthcheck
      - hostedzone
      type: string
      example: healthcheck
    ChangeTagsForResourceRequest:
      title: ChangeTagsForResourceRequest
      type: object
      properties:
        AddTags:
          maxItems: 10
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/TagList'
          description: ''
        RemoveTagKeys:
          maxItems: 10
          minItems: 1
          type: array
          items:
            maxLength: 128
            type: string
            xml:
              name: Key
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
      description: A complex type that contains information about the tags that you want to add, edit, or delete.
    ComparisonOperator:
      title: ComparisonOperator
      enum:
      - GreaterThanOrEqualToThreshold
      - GreaterThanThreshold
      - LessThanThreshold
      - LessThanOrEqualToThreshold
      type: string
      example: GreaterThanOrEqualToThreshold
    Statistic:
      title: Statistic
      enum:
      - Average
      - Sum
      - SampleCount
      - Maximum
      - Minimum
      type: string
      example: Average
    CloudWatchAlarmConfiguration:
      title: CloudWatchAlarmConfiguration
      required:
      - EvaluationPeriods
      - Threshold
      - ComparisonOperator
      - Period
      - MetricName
      - Namespace
      - Statistic
      type: object
      properties:
        EvaluationPeriods:
          minimum: 1
          type: integer
          format: int32
        Threshold:
          type: number
        ComparisonOperator:
          allOf:
          - $ref: '#/components/schemas/ComparisonOperator2'
          - description: For the metric that the CloudWatch alarm is associated with, the arithmetic operation that is used for the comparison.
            example: GreaterThanOrEqualToThreshold
        Period:
          minimum: 60
          type: integer
          format: int32
        MetricName:
          maxLength: 255
          minLength: 1
          type: string
        Namespace:
          maxLength: 255
          minLength: 1
          type: string
        Statistic:
          allOf:
          - $ref: '#/components/schemas/Statistic2'
          - description: For the metric that the CloudWatch alarm is associated with, the statistic that is applied to the metric.
            example: Average
        Dimensions:
          maxItems: 10
          type: array
          items:
            $ref: '#/components/schemas/DimensionList'
          description: ''
      description: A complex type that contains information about the CloudWatch alarm that Amazon Route 53 is monitoring for this health check.
    HealthCheckConfig:
      title: HealthCheckConfig
      required:
      - Type
      type: object
      properties:
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
        Port:
          maximum: 65535
          minimum: 1
          type: integer
          format: int32
        Type:
          allOf:
          - $ref: '#/components/schemas/HealthCheckType1'
          - description: "<p>The type of health check that you want to create, which indicates how Amazon Route 53 determines whether an endpoint is healthy.</p> <important> <p>You can't change the value of <code>Type</code> after you create a health check.</p> </important> <p>You can create the following types of health checks:</p> <ul> <li> <p> <b>HTTP</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.</p> </li> <li> <p> <b>HTTPS</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400.</p> <important> <p>If you specify <code>HTTPS</code> for the value of <code>Type</code>, the endpoint must support TLS v1.0 or later.</p> </important> </li> <li> <p> <b>HTTP_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>HTTPS_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an <code>HTTPS</code> request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>TCP</b>: Route 53 tries to establish a TCP connection.</p> </li> <li> <p> <b>CLOUDWATCH_METRIC</b>: The health check is associated with a CloudWatch alarm. If the state of the alarm is <code>OK</code>, the health check is considered healthy. If the state is <code>ALARM</code>, the health check is considered unhealthy. If CloudWatch doesn't have sufficient data to determine whether the state is <code>OK</code> or <code>ALARM</code>, the health check status depends on the setting for <code>InsufficientDataHealthStatus</code>: <code>Healthy</code>, <code>Unhealthy</code>, or <code>LastKnownStatus</code>. </p> </li> <li> <p> <b>CALCULATED</b>: For health checks that monitor the status of other health checks, Route 53 adds up the number of health checks that Route 53 health checkers consider to be healthy and compares that number with the value of <code>HealthThreshold</code>. </p> </li> <li> <p> <b>RECOVERY_CONTROL</b>: The health check is assocated with a Route53 Application Recovery Controller routing control. If the routing control state is <code>ON</code>, the health check is considered healthy. If the state is <code>OFF</code>, the health check is considered unhealthy. </p> </li> </ul> <p>For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html\">How Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>"
        ResourcePath:
          maxLength: 255
          type: string
        FullyQualifiedDomainName:
          maxLength: 255
          type: string
        SearchString:
          maxLength: 255
          type: string
        RequestInterval:
          maximum: 30
          minimum: 10
          type: integer
          format: int32
        FailureThreshold:
          maximum: 10
          minimum: 1
          type: integer
          format: int32
        MeasureLatency:
          type: boolean
        Inverted:
          type: boolean
        Disabled:
          type: boolean
        HealthThreshold:
          maximum: 256
          minimum: 0
          type: integer
          format: int32
        ChildHealthChecks:
          maxItems: 256
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ChildHealthCheck
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
        EnableSNI:
          type: boolean
        Regions:
          maxItems: 64
          minItems: 3
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckRegion1'
          description: ''
        AlarmIdentifier:
          $ref: '#/components/schemas/AlarmIdentifier1'
        InsufficientDataHealthStatus:
          allOf:
          - $ref: '#/components/schemas/InsufficientDataHealthStatus1'
          - description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time that CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
        RoutingControlArn:
          maxLength: 255
          minLength: 1
          type: string
      description: A complex type that contains information about the health check.
    CreateHealthCheckRequest:
      title: CreateHealthCheckRequest
      required:
      - CallerReference
      - HealthCheckConfig
      type: object
      properties:
        CallerReference:
          maxLength: 64
          minLength: 1
          type: string
        HealthCheckConfig:
          $ref: '#/components/schemas/HealthCheckConfig2'
      description: A complex type that contains the health check request information.
    HealthCheck:
      title: HealthCheck
      required:
      - Id
      - CallerReference
      - HealthCheckConfig
      - HealthCheckVersion
      type: object
      properties:
        Id:
          maxLength: 64
          type: string
        CallerReference:
          maxLength: 64
          minLength: 1
          type: string
        LinkedService:
          $ref: '#/components/schemas/LinkedService1'
        HealthCheckConfig:
          $ref: '#/components/schemas/HealthCheckConfig2'
        HealthCheckVersion:
          minimum: 1
          type: integer
          format: int32
        CloudWatchAlarmConfiguration:
          $ref: '#/components/schemas/CloudWatchAlarmConfiguration2'
      description: A complex type that contains information about one health check that is associated with the current Amazon Web Services account.
    HostedZoneConfig:
      title: HostedZoneConfig
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
        PrivateZone:
          type: boolean
      description: A complex type that contains an optional comment about your hosted zone. If you don't want to specify a comment, omit both the <code>HostedZoneConfig</code> and <code>Comment</code> elements.
    CreateHostedZoneRequest:
      title: CreateHostedZoneRequest
      required:
      - Name
      - CallerReference
      type: object
      properties:
        Name:
          maxLength: 1024
          type: string
        VPC:
          $ref: '#/components/schemas/VPC1'
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        HostedZoneConfig:
          $ref: '#/components/schemas/HostedZoneConfig1'
        DelegationSetId:
          maxLength: 32
          type: string
      description: A complex type that contains information about the request to create a public or private hosted zone.
    HostedZone:
      title: HostedZone
      required:
      - Id
      - Name
      - CallerReference
      type: object
      properties:
        Id:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        Config:
          $ref: '#/components/schemas/Config'
        ResourceRecordSetCount:
          type: integer
          format: int32
        LinkedService:
          $ref: '#/components/schemas/LinkedService1'
      description: A complex type that contains general information about the hosted zone.
    DelegationSet:
      title: DelegationSet
      required:
      - NameServers
      type: object
      properties:
        Id:
          maxLength: 32
          type: string
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        NameServers:
          minItems: 1
          type: array
          items:
            maxLength: 1024
            type: string
            xml:
              name: NameServer
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
      description: A complex type that lists the name servers in a delegation set, as well as the <code>CallerReference</code> and the <code>ID</code> for the delegation set.
    CreateKeySigningKeyRequest:
      title: CreateKeySigningKeyRequest
      required:
      - CallerReference
      - HostedZoneId
      - KeyManagementServiceArn
      - Name
      - Status
      type: object
      properties:
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
        KeyManagementServiceArn:
          type: string
        Name:
          maxLength: 128
          minLength: 3
          type: string
        Status:
          maxLength: 150
          minLength: 5
          type: string
    KeySigningKey:
      title: KeySigningKey
      type: object
      properties:
        Name:
          maxLength: 128
          minLength: 3
          type: string
        KmsArn:
          type: string
        Flag:
          type: integer
          format: int32
        SigningAlgorithmMnemonic:
          type: string
        SigningAlgorithmType:
          type: integer
          format: int32
        DigestAlgorithmMnemonic:
          type: string
        DigestAlgorithmType:
          type: integer
          format: int32
        KeyTag:
          maximum: 65536
          minimum: 0
          type: integer
          format: int32
        DigestValue:
          type: string
        PublicKey:
          type: string
        DSRecord:
          type: string
        DNSKEYRecord:
          type: string
        Status:
          maxLength: 150
          minLength: 5
          type: string
        StatusMessage:
          maxLength: 512
          minLength: 0
          type: string
        CreatedDate:
          type: string
          format: date-time
        LastModifiedDate:
          type: string
          format: date-time
      description: A key-signing key (KSK) is a complex type that represents a public/private key pair. The private key is used to generate a digital signature for the zone signing key (ZSK). The public key is stored in the DNS and is used to authenticate the ZSK. A KSK is always associated with a hosted zone; it cannot exist by itself.
    CreateQueryLoggingConfigRequest:
      title: CreateQueryLoggingConfigRequest
      required:
      - HostedZoneId
      - CloudWatchLogsLogGroupArn
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        CloudWatchLogsLogGroupArn:
          type: string
    QueryLoggingConfig:
      title: QueryLoggingConfig
      required:
      - Id
      - HostedZoneId
      - CloudWatchLogsLogGroupArn
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
        CloudWatchLogsLogGroupArn:
          type: string
      description: A complex type that contains information about a configuration for DNS query logging.
    CreateReusableDelegationSetRequest:
      title: CreateReusableDelegationSetRequest
      required:
      - CallerReference
      type: object
      properties:
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
    CreateTrafficPolicyInstanceRequest:
      title: CreateTrafficPolicyInstanceRequest
      required:
      - HostedZoneId
      - Name
      - TTL
      - TrafficPolicyId
      - TrafficPolicyVersion
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
        TrafficPolicyId:
          maxLength: 36
          minLength: 1
          type: string
        TrafficPolicyVersion:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      description: A complex type that contains information about the resource record sets that you want to create based on a specified traffic policy.
    TrafficPolicyInstance:
      title: TrafficPolicyInstance
      required:
      - Id
      - HostedZoneId
      - Name
      - TTL
      - State
      - Message
      - TrafficPolicyId
      - TrafficPolicyVersion
      - TrafficPolicyType
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
        State:
          type: string
        Message:
          maxLength: 1024
          type: string
        TrafficPolicyId:
          maxLength: 36
          minLength: 1
          type: string
        TrafficPolicyVersion:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
        TrafficPolicyType:
          allOf:
          - $ref: '#/components/schemas/RRType2'
          - description: The DNS type that Amazon Route 53 assigned to all of the resource record sets that it created for this traffic policy instance.
            example: SOA
      description: A complex type that contains settings for the new traffic policy instance.
    CreateTrafficPolicyRequest:
      title: CreateTrafficPolicyRequest
      required:
      - Name
      - Document
      type: object
      properties:
        Name:
          maxLength: 512
          type: string
        Document:
          maxLength: 102400
          type: string
        Comment:
          maxLength: 1024
          type: string
      description: A complex type that contains information about the traffic policy that you want to create.
    TrafficPolicy:
      title: TrafficPolicy
      required:
      - Id
      - Version
      - Name
      - Type
      - Document
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        Version:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
        Name:
          maxLength: 512
          type: string
        Type:
          allOf:
          - $ref: '#/components/schemas/RRType1'
          - description: The DNS type of the resource record sets that Amazon Route 53 creates when you use a traffic policy to create a traffic policy instance.
            example: SOA
        Document:
          maxLength: 102400
          type: string
        Comment:
          maxLength: 1024
          type: string
      description: A complex type that contains settings for a traffic policy.
    CreateTrafficPolicyVersionRequest:
      title: CreateTrafficPolicyVersionRequest
      required:
      - Document
      type: object
      properties:
        Document:
          maxLength: 102400
          type: string
        Comment:
          maxLength: 1024
          type: string
      description: A complex type that contains information about the traffic policy that you want to create a new version for.
    CreateVPCAssociationAuthorizationRequest:
      title: CreateVPCAssociationAuthorizationRequest
      required:
      - VPC
      type: object
      properties:
        VPC:
          $ref: '#/components/schemas/VPC1'
      description: A complex type that contains information about the request to authorize associating a VPC with your private hosted zone. Authorization is only required when a private hosted zone and a VPC were created by using different accounts.
    DNSSECStatus:
      title: DNSSECStatus
      type: object
      properties:
        ServeSignature:
          maxLength: 1024
          minLength: 1
          type: string
        StatusMessage:
          maxLength: 512
          minLength: 0
          type: string
      description: A string repesenting the status of DNSSEC signing.
    DeleteVPCAssociationAuthorizationRequest:
      title: DeleteVPCAssociationAuthorizationRequest
      required:
      - VPC
      type: object
      properties:
        VPC:
          $ref: '#/components/schemas/VPC1'
      description: A complex type that contains information about the request to remove authorization to associate a VPC that was created by one Amazon Web Services account with a hosted zone that was created with a different Amazon Web Services account.
    Dimension:
      title: Dimension
      required:
      - Name
      - Value
      type: object
      properties:
        Name:
          maxLength: 255
          minLength: 1
          type: string
        Value:
          maxLength: 255
          minLength: 1
          type: string
      description: For the metric that the CloudWatch alarm is associated with, a complex type that contains information about one dimension.
    DisassociateVPCFromHostedZoneRequest:
      title: DisassociateVPCFromHostedZoneRequest
      required:
      - VPC
      type: object
      properties:
        VPC:
          $ref: '#/components/schemas/VPC1'
        Comment:
          type: string
      description: A complex type that contains information about the VPC that you want to disassociate from a specified private hosted zone.
    GeoLocation:
      title: GeoLocation
      type: object
      properties:
        ContinentCode:
          maxLength: 2
          minLength: 2
          type: string
        CountryCode:
          maxLength: 2
          minLength: 1
          type: string
        SubdivisionCode:
          maxLength: 3
          minLength: 1
          type: string
      description: A complex type that contains information about a geographic location.
    GeoLocationDetails:
      title: GeoLocationDetails
      type: object
      properties:
        ContinentCode:
          maxLength: 2
          minLength: 2
          type: string
        ContinentName:
          maxLength: 32
          minLength: 1
          type: string
        CountryCode:
          maxLength: 2
          minLength: 1
          type: string
        CountryName:
          maxLength: 64
          minLength: 1
          type: string
        SubdivisionCode:
          maxLength: 3
          minLength: 1
          type: string
        SubdivisionName:
          maxLength: 64
          minLength: 1
          type: string
      description: A complex type that contains the codes and full continent, country, and subdivision names for the specified <code>geolocation</code> code.
    HostedZoneLimitType:
      title: HostedZoneLimitType
      enum:
      - MAX_RRSETS_BY_ZONE
      - MAX_VPCS_ASSOCIATED_BY_ZONE
      type: string
      example: MAX_RRSETS_BY_ZONE
    HostedZoneLimit:
      title: HostedZoneLimit
      required:
      - Type
      - Value
      type: object
      properties:
        Type:
          allOf:
          - $ref: '#/components/schemas/HostedZoneLimitType2'
          - description: '<p>The limit that you requested. Valid values include the following:</p> <ul> <li> <p> <b>MAX_RRSETS_BY_ZONE</b>: The maximum number of records that you can create in the specified hosted zone.</p> </li> <li> <p> <b>MAX_VPCS_ASSOCIATED_BY_ZONE</b>: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.</p> </li> </ul>'
            example: MAX_RRSETS_BY_ZONE
        Value:
          minimum: 1
          type: integer
          format: int32
      description: A complex type that contains the type of limit that you specified in the request and the current value for that limit.
    ReusableDelegationSetLimitType:
      title: ReusableDelegationSetLimitType
      enum:
      - MAX_ZONES_BY_REUSABLE_DELEGATION_SET
      type: string
      example: MAX_ZONES_BY_REUSABLE_DELEGATION_SET
    ReusableDelegationSetLimit:
      title: ReusableDelegationSetLimit
      required:
      - Type
      - Value
      type: object
      properties:
        Type:
          enum:
          - MAX_ZONES_BY_REUSABLE_DELEGATION_SET
          type: string
          description: 'The limit that you requested: <code>MAX_ZONES_BY_REUSABLE_DELEGATION_SET</code>, the maximum number of hosted zones that you can associate with the specified reusable delegation set.'
          example: MAX_ZONES_BY_REUSABLE_DELEGATION_SET
        Value:
          minimum: 1
          type: integer
          format: int32
      description: A complex type that contains the type of limit that you specified in the request and the current value for that limit.
    LinkedService:
      title: LinkedService
      type: object
      properties:
        ServicePrincipal:
          maxLength: 128
          type: string
        Description:
          maxLength: 256
          type: string
      description: If a health check or hosted zone was created by another service, <code>LinkedService</code> is a complex type that describes the service that created the resource. When a resource is created by another service, you can't edit or delete it using Amazon Route 53.
    StatusReport:
      title: StatusReport
      type: object
      properties:
        Status:
          type: string
        CheckedTime:
          type: string
          format: date-time
      description: A complex type that contains the status that one Amazon Route 53 health checker reports and the time of the health check.
    HealthCheckObservation:
      title: HealthCheckObservation
      type: object
      properties:
        Region:
          allOf:
          - $ref: '#/components/schemas/HealthCheckRegion2'
          - description: The region of the Amazon Route 53 health checker that provided the status in <code>StatusReport</code>.
            example: us-east-1
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
        StatusReport:
          $ref: '#/components/schemas/StatusReport2'
      description: A complex type that contains the last failure reason as reported by one Amazon Route 53 health checker.
    HostedZoneOwner:
      title: HostedZoneOwner
      type: object
      properties:
        OwningAccount:
          type: string
        OwningService:
          maxLength: 128
          type: string
      description: A complex type that identifies a hosted zone that a specified Amazon VPC is associated with and the owner of the hosted zone. If there is a value for <code>OwningAccount</code>, there is no value for <code>OwningService</code>, and vice versa.
    HostedZoneSummary:
      title: HostedZoneSummary
      required:
      - HostedZoneId
      - Name
      - Owner
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        Owner:
          $ref: '#/components/schemas/Owner'
      description: In the response to a <code>ListHostedZonesByVPC</code> request, the <code>HostedZoneSummaries</code> element contains one <code>HostedZoneSummary</code> element for each hosted zone that the specified Amazon VPC is associated with. Each <code>HostedZoneSummary</code> element contains the hosted zone name and ID, and information about who owns the hosted zone.
    RRType:
      title: RRType
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      example: SOA
    ResourceTagSet:
      title: ResourceTagSet
      type: object
      properties:
        ResourceType:
          allOf:
          - $ref: '#/components/schemas/TagResourceType1'
          - description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
            example: healthcheck
        ResourceId:
          maxLength: 64
          type: string
        Tags:
          maxItems: 10
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/TagList'
          description: ''
      description: A complex type containing a resource and its associated tags.
    ListTagsForResourcesRequest:
      title: ListTagsForResourcesRequest
      required:
      - ResourceIds
      type: object
      properties:
        ResourceIds:
          maxItems: 10
          minItems: 1
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ResourceId
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
      description: A complex type that contains information about the health checks or hosted zones for which you want to list tags.
    ResourceRecord:
      title: ResourceRecord
      required:
      - Value
      type: object
      properties:
        Value:
          maxLength: 4000
          type: string
      description: <p>Information specific to the resource record.</p> <note> <p>If you're creating an alias resource record set, omit <code>ResourceRecord</code>.</p> </note>
    ResourceRecordSetRegion:
      title: ResourceRecordSetRegion
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - ca-central-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - eu-north-1
      - sa-east-1
      - cn-north-1
      - cn-northwest-1
      - ap-east-1
      - me-south-1
      - ap-south-1
      - af-south-1
      - eu-south-1
      type: string
      example: us-east-1
    ResourceRecordSetFailover:
      title: ResourceRecordSetFailover
      enum:
      - PRIMARY
      - SECONDARY
      type: string
      example: PRIMARY
    TrafficPolicySummary:
      title: TrafficPolicySummary
      required:
      - Id
      - Name
      - Type
      - LatestVersion
      - TrafficPolicyCount
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        Name:
          maxLength: 512
          type: string
        Type:
          allOf:
          - $ref: '#/components/schemas/RRType1'
          - description: The DNS type of the resource record sets that Amazon Route 53 creates when you use a traffic policy to create a traffic policy instance.
            example: SOA
        LatestVersion:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
        TrafficPolicyCount:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      description: A complex type that contains information about the latest version of one traffic policy that is associated with the current Amazon Web Services account.
    UpdateHealthCheckRequest:
      title: UpdateHealthCheckRequest
      type: object
      properties:
        HealthCheckVersion:
          minimum: 1
          type: integer
          format: int32
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
        Port:
          maximum: 65535
          minimum: 1
          type: integer
          format: int32
        ResourcePath:
          maxLength: 255
          type: string
        FullyQualifiedDomainName:
          maxLength: 255
          type: string
        SearchString:
          maxLength: 255
          type: string
        FailureThreshold:
          maximum: 10
          minimum: 1
          type: integer
          format: int32
        Inverted:
          type: boolean
        Disabled:
          type: boolean
        HealthThreshold:
          maximum: 256
          minimum: 0
          type: integer
          format: int32
        ChildHealthChecks:
          maxItems: 256
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ChildHealthCheck
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
        EnableSNI:
          type: boolean
        Regions:
          maxItems: 64
          minItems: 3
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckRegion1'
          description: ''
        AlarmIdentifier:
          $ref: '#/components/schemas/AlarmIdentifier1'
        InsufficientDataHealthStatus:
          allOf:
          - $ref: '#/components/schemas/InsufficientDataHealthStatus4'
          - description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
        ResetElements:
          maxItems: 64
          type: array
          items:
            $ref: '#/components/schemas/ResettableElementName1'
          description: ''
      description: A complex type that contains information about a request to update a health check.
    UpdateHostedZoneCommentRequest:
      title: UpdateHostedZoneCommentRequest
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
      description: A request to update the comment for a hosted zone.
    UpdateTrafficPolicyCommentRequest:
      title: UpdateTrafficPolicyCommentRequest
      required:
      - Comment
      type: object
      properties:
        Comment:
          maxLength: 1024
          type: string
      description: A complex type that contains information about the traffic policy that you want to update the comment for.
    UpdateTrafficPolicyInstanceRequest:
      title: UpdateTrafficPolicyInstanceRequest
      required:
      - TTL
      - TrafficPolicyId
      - TrafficPolicyVersion
      type: object
      properties:
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
        TrafficPolicyId:
          maxLength: 36
          minLength: 1
          type: string
        TrafficPolicyVersion:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
      description: A complex type that contains information about the resource record sets that you want to update based on a specified traffic policy instance.
    AccountLimitType2:
      title: AccountLimitType2
      enum:
      - MAX_HEALTH_CHECKS_BY_OWNER
      - MAX_HOSTED_ZONES_BY_OWNER
      - MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER
      - MAX_REUSABLE_DELEGATION_SETS_BY_OWNER
      - MAX_TRAFFIC_POLICIES_BY_OWNER
      type: string
      description: '<p>The limit that you requested. Valid values include the following:</p> <ul> <li> <p> <b>MAX_HEALTH_CHECKS_BY_OWNER</b>: The maximum number of health checks that you can create using the current account.</p> </li> <li> <p> <b>MAX_HOSTED_ZONES_BY_OWNER</b>: The maximum number of hosted zones that you can create using the current account.</p> </li> <li> <p> <b>MAX_REUSABLE_DELEGATION_SETS_BY_OWNER</b>: The maximum number of reusable delegation sets that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICIES_BY_OWNER</b>: The maximum number of traffic policies that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER</b>: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)</p> </li> </ul>'
      example: MAX_HEALTH_CHECKS_BY_OWNER
    AddTag:
      title: AddTag
      type: object
      properties:
        Key:
          maxLength: 128
          type: string
        Value:
          maxLength: 256
          type: string
    AlarmIdentifier1:
      title: AlarmIdentifier1
      required:
      - Region
      - Name
      type: object
      properties:
        Region:
          allOf:
          - $ref: '#/components/schemas/CloudWatchRegion1'
          - description: <p>For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.</p> <p>For the current list of CloudWatch regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/cw_region.html">Amazon CloudWatch endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
            example: us-east-1
        Name:
          maxLength: 256
          minLength: 1
          type: string
    AlarmIdentifier4:
      title: AlarmIdentifier4
      type: object
      properties:
        Region:
          allOf:
          - $ref: '#/components/schemas/CloudWatchRegion1'
          - description: <p>For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.</p> <p>For the current list of CloudWatch regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/cw_region.html">Amazon CloudWatch endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
            example: us-east-1
        Name:
          maxLength: 256
          minLength: 1
          type: string
      description: A complex type that identifies the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether the specified health check is healthy.
    AliasTarget2:
      title: AliasTarget2
      required:
      - HostedZoneId
      - DNSName
      - EvaluateTargetHealth
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        DNSName:
          maxLength: 1024
          type: string
        EvaluateTargetHealth:
          type: boolean
    Change2:
      title: Change2
      required:
      - Action
      - ResourceRecordSet
      type: object
      properties:
        Action:
          allOf:
          - $ref: '#/components/schemas/ChangeAction2'
          - description: "<p>The action to perform:</p> <ul> <li> <p> <code>CREATE</code>: Creates a resource record set that has the specified values.</p> </li> <li> <p> <code>DELETE</code>: Deletes a existing resource record set.</p> <important> <p>To delete the resource record set that is associated with a traffic policy instance, use <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicyInstance.html\">DeleteTrafficPolicyInstance</a>. Amazon Route 53 will delete the resource record set automatically. If you delete the resource record set by using <code>ChangeResourceRecordSets</code>, Route 53 doesn't automatically delete the traffic policy instance, and you'll continue to be charged for it even though it's no longer in use. </p> </important> </li> <li> <p> <code>UPSERT</code>: If a resource record set doesn't already exist, Route 53 creates it. If a resource record set does exist, Route 53 updates it with the values in the request.</p> </li> </ul>"
            example: CREATE
        ResourceRecordSet:
          $ref: '#/components/schemas/ResourceRecordSet1'
    ChangeAction2:
      title: ChangeAction2
      enum:
      - CREATE
      - DELETE
      - UPSERT
      type: string
      description: "<p>The action to perform:</p> <ul> <li> <p> <code>CREATE</code>: Creates a resource record set that has the specified values.</p> </li> <li> <p> <code>DELETE</code>: Deletes a existing resource record set.</p> <important> <p>To delete the resource record set that is associated with a traffic policy instance, use <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicyInstance.html\">DeleteTrafficPolicyInstance</a>. Amazon Route 53 will delete the resource record set automatically. If you delete the resource record set by using <code>ChangeResourceRecordSets</code>, Route 53 doesn't automatically delete the traffic policy instance, and you'll continue to be charged for it even though it's no longer in use. </p> </important> </li> <li> <p> <code>UPSERT</code>: If a resource record set doesn't already exist, Route 53 creates it. If a resource record set does exist, Route 53 updates it with the values in the request.</p> </li> </ul>"
      example: CREATE
    ChangeBatch1:
      title: ChangeBatch1
      required:
      - Changes
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
        Changes:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/Change2'
          description: ''
    ChangeBatch2:
      title: ChangeBatch2
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
        Changes:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/Change2'
          description: ''
      description: The information for a change request.
    ChangeInfo1:
      title: ChangeInfo1
      required:
      - Id
      - Status
      - SubmittedAt
      type: object
      properties:
        Id:
          maxLength: 32
          type: string
        Status:
          allOf:
          - $ref: '#/components/schemas/ChangeStatus1'
          - description: The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.
            example: PENDING
        SubmittedAt:
          type: string
          format: date-time
        Comment:
          maxLength: 256
          type: string
    ChangeStatus1:
      title: ChangeStatus1
      enum:
      - PENDING
      - INSYNC
      type: string
      description: The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.
      example: PENDING
    CloudWatchAlarmConfiguration2:
      title: CloudWatchAlarmConfiguration2
      required:
      - EvaluationPeriods
      - Threshold
      - ComparisonOperator
      - Period
      - MetricName
      - Namespace
      - Statistic
      type: object
      properties:
        EvaluationPeriods:
          minimum: 1
          type: integer
          format: int32
        Threshold:
          type: number
        ComparisonOperator:
          allOf:
          - $ref: '#/components/schemas/ComparisonOperator2'
          - description: For the metric that the CloudWatch alarm is associated with, the arithmetic operation that is used for the comparison.
            example: GreaterThanOrEqualToThreshold
        Period:
          minimum: 60
          type: integer
          format: int32
        MetricName:
          maxLength: 255
          minLength: 1
          type: string
        Namespace:
          maxLength: 255
          minLength: 1
          type: string
        Statistic:
          allOf:
          - $ref: '#/components/schemas/Statistic2'
          - description: For the metric that the CloudWatch alarm is associated with, the statistic that is applied to the metric.
            example: Average
        Dimensions:
          maxItems: 10
          type: array
          items:
            $ref: '#/components/schemas/DimensionList'
          description: ''
    CloudWatchRegion1:
      title: CloudWatchRegion1
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - ca-central-1
      - eu-central-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - ap-east-1
      - me-south-1
      - ap-south-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - eu-north-1
      - sa-east-1
      - cn-northwest-1
      - cn-north-1
      - af-south-1
      - eu-south-1
      - us-gov-west-1
      - us-gov-east-1
      - us-iso-east-1
      - us-isob-east-1
      type: string
      description: <p>For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.</p> <p>For the current list of CloudWatch regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/cw_region.html">Amazon CloudWatch endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
      example: us-east-1
    ComparisonOperator2:
      title: ComparisonOperator2
      enum:
      - GreaterThanOrEqualToThreshold
      - GreaterThanThreshold
      - LessThanThreshold
      - LessThanOrEqualToThreshold
      type: string
      description: For the metric that the CloudWatch alarm is associated with, the arithmetic operation that is used for the comparison.
      example: GreaterThanOrEqualToThreshold
    Config:
      title: Config
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
        PrivateZone:
          type: boolean
    Delegationset201341Request:
      title: Delegationset201341Request
      required:
      - CallerReference
      type: object
      properties:
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
          description: A unique string that identifies the request, and that allows you to retry failed <code>CreateReusableDelegationSet</code> requests without the risk of executing the operation twice. You must use a unique <code>CallerReference</code> string every time you submit a <code>CreateReusableDelegationSet</code> request. <code>CallerReference</code> can be any unique string, for example a date/time stamp.
        HostedZoneId:
          maxLength: 32
          type: string
          description: If you want to mark the delegation set for an existing hosted zone as reusable, the ID for that hosted zone.
    DelegationSet1:
      title: DelegationSet1
      required:
      - NameServers
      type: object
      properties:
        Id:
          maxLength: 32
          type: string
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        NameServers:
          minItems: 1
          type: array
          items:
            maxLength: 1024
            type: string
            xml:
              name: NameServer
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
    DimensionList:
      title: DimensionList
      required:
      - Name
      - Value
      type: object
      properties:
        Name:
          maxLength: 255
          minLength: 1
          type: string
        Value:
          maxLength: 255
          minLength: 1
          type: string
    GeoLocation2:
      title: GeoLocation2
      type: object
      properties:
        ContinentCode:
          maxLength: 2
          minLength: 2
          type: string
        CountryCode:
          maxLength: 2
          minLength: 1
          type: string
        SubdivisionCode:
          maxLength: 3
          minLength: 1
          type: string
    GeoLocationDetails2:
      title: GeoLocationDetails2
      type: object
      properties:
        ContinentCode:
          maxLength: 2
          minLength: 2
          type: string
        ContinentName:
          maxLength: 32
          minLength: 1
          type: string
        CountryCode:
          maxLength: 2
          minLength: 1
          type: string
        CountryName:
          maxLength: 64
          minLength: 1
          type: string
        SubdivisionCode:
          maxLength: 3
          minLength: 1
          type: string
        SubdivisionName:
          maxLength: 64
          minLength: 1
          type: string
    GeoLocationDetailsList:
      title: GeoLocationDetailsList
      type: object
      properties:
        ContinentCode:
          maxLength: 2
          minLength: 2
          type: string
        ContinentName:
          maxLength: 32
          minLength: 1
          type: string
        CountryCode:
          maxLength: 2
          minLength: 1
          type: string
        CountryName:
          maxLength: 64
          minLength: 1
          type: string
        SubdivisionCode:
          maxLength: 3
          minLength: 1
          type: string
        SubdivisionName:
          maxLength: 64
          minLength: 1
          type: string
    Healthcheck201341Request:
      title: Healthcheck201341Request
      required:
      - CallerReference
      - HealthCheckConfig
      type: object
      properties:
        CallerReference:
          maxLength: 64
          minLength: 1
          type: string
          description: <p>A unique string that identifies the request and that allows you to retry a failed <code>CreateHealthCheck</code> request without the risk of creating two identical health checks:</p> <ul> <li> <p>If you send a <code>CreateHealthCheck</code> request with the same <code>CallerReference</code> and settings as a previous request, and if the health check doesn't exist, Amazon Route 53 creates the health check. If the health check does exist, Route 53 returns the settings for the existing health check.</p> </li> <li> <p>If you send a <code>CreateHealthCheck</code> request with the same <code>CallerReference</code> as a deleted health check, regardless of the settings, Route 53 returns a <code>HealthCheckAlreadyExists</code> error.</p> </li> <li> <p>If you send a <code>CreateHealthCheck</code> request with the same <code>CallerReference</code> as an existing health check but with different settings, Route 53 returns a <code>HealthCheckAlreadyExists</code> error.</p> </li> <li> <p>If you send a <code>CreateHealthCheck</code> request with a unique <code>CallerReference</code> but settings identical to an existing health check, Route 53 creates the health check.</p> </li> </ul>
        HealthCheckConfig:
          allOf:
          - $ref: '#/components/schemas/HealthCheckConfig1'
          - description: A complex type that contains information about the health check.
    Healthcheck201341Request1:
      title: Healthcheck201341Request1
      type: object
      properties:
        HealthCheckVersion:
          minimum: 1
          type: integer
          description: <p>A sequential counter that Amazon Route 53 sets to <code>1</code> when you create a health check and increments by 1 each time you update settings for the health check.</p> <p>We recommend that you use <code>GetHealthCheck</code> or <code>ListHealthChecks</code> to get the current value of <code>HealthCheckVersion</code> for the health check that you want to update, and that you include that value in your <code>UpdateHealthCheck</code> request. This prevents Route 53 from overwriting an intervening update:</p> <ul> <li> <p>If the value in the <code>UpdateHealthCheck</code> request matches the value of <code>HealthCheckVersion</code> in the health check, Route 53 updates the health check with the new settings.</p> </li> <li> <p>If the value of <code>HealthCheckVersion</code> in the health check is greater, the health check was changed after you got the version number. Route 53 does not update the health check, and it returns a <code>HealthCheckVersionMismatch</code> error.</p> </li> </ul>
          format: int32
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
          description: "<p>The IPv4 or IPv6 IP address for the endpoint that you want Amazon Route 53 to perform health checks on. If you don't specify a value for <code>IPAddress</code>, Route 53 sends a DNS request to resolve the domain name that you specify in <code>FullyQualifiedDomainName</code> at the interval that you specify in <code>RequestInterval</code>. Using an IP address that is returned by DNS, Route 53 then checks the health of the endpoint.</p> <p>Use one of the following formats for the value of <code>IPAddress</code>: </p> <ul> <li> <p> <b>IPv4 address</b>: four values between 0 and 255, separated by periods (.), for example, <code>192.0.2.44</code>.</p> </li> <li> <p> <b>IPv6 address</b>: eight groups of four hexadecimal values, separated by colons (:), for example, <code>2001:0db8:85a3:0000:0000:abcd:0001:2345</code>. You can also shorten IPv6 addresses as described in RFC 5952, for example, <code>2001:db8:85a3::abcd:1:2345</code>.</p> </li> </ul> <p>If the endpoint is an EC2 instance, we recommend that you create an Elastic IP address, associate it with your EC2 instance, and specify the Elastic IP address for <code>IPAddress</code>. This ensures that the IP address of your instance never changes. For more information, see the applicable documentation:</p> <ul> <li> <p>Linux: <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html\">Elastic IP Addresses (EIP)</a> in the <i>Amazon EC2 User Guide for Linux Instances</i> </p> </li> <li> <p>Windows: <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/elastic-ip-addresses-eip.html\">Elastic IP Addresses (EIP)</a> in the <i>Amazon EC2 User Guide for Windows Instances</i> </p> </li> </ul> <note> <p>If a health check already has a value for <code>IPAddress</code>, you can change the value. However, you can't update an existing health check to add or remove the value of <code>IPAddress</code>. </p> </note> <p>For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName\">FullyQualifiedDomainName</a>. </p> <p>Constraints: Route 53 can't check the health of endpoints for which the IP address is in local, private, non-routable, or multicast ranges. For more information about IP addresses for which you can't create health checks, see the following documents:</p> <ul> <li> <p> <a href=\"https://tools.ietf.org/html/rfc5735\">RFC 5735, Special Use IPv4 Addresses</a> </p> </li> <li> <p> <a href=\"https://tools.ietf.org/html/rfc6598\">RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space</a> </p> </li> <li> <p> <a href=\"https://tools.ietf.org/html/rfc5156\">RFC 5156, Special-Use IPv6 Addresses</a> </p> </li> </ul>"
        Port:
          maximum: 65535
          minimum: 1
          type: integer
          description: <p>The port on the endpoint that you want Amazon Route 53 to perform health checks on.</p> <note> <p>Don't specify a value for <code>Port</code> when you specify a value for <code>Type</code> of <code>CLOUDWATCH_METRIC</code> or <code>CALCULATED</code>.</p> </note>
          format: int32
        ResourcePath:
          maxLength: 255
          type: string
          description: <p>The path that you want Amazon Route 53 to request when performing health checks. The path can be any value for which your endpoint will return an HTTP status code of 2xx or 3xx when the endpoint is healthy, for example the file /docs/route53-health-check.html. You can also include query string parameters, for example, <code>/welcome.html?language=jp&amp;login=y</code>. </p> <p>Specify this value only if you want to change it.</p>
        FullyQualifiedDomainName:
          maxLength: 255
          type: string
          description: <p>Amazon Route 53 behavior depends on whether you specify a value for <code>IPAddress</code>.</p> <note> <p>If a health check already has a value for <code>IPAddress</code>, you can change the value. However, you can't update an existing health check to add or remove the value of <code>IPAddress</code>. </p> </note> <p> <b>If you specify a value for</b> <code>IPAddress</code>:</p> <p>Route 53 sends health check requests to the specified IPv4 or IPv6 address and passes the value of <code>FullyQualifiedDomainName</code> in the <code>Host</code> header for all health checks except TCP health checks. This is typically the fully qualified DNS name of the endpoint on which you want Route 53 to perform health checks.</p> <p>When Route 53 checks the health of an endpoint, here is how it constructs the <code>Host</code> header:</p> <ul> <li> <p>If you specify a value of <code>80</code> for <code>Port</code> and <code>HTTP</code> or <code>HTTP_STR_MATCH</code> for <code>Type</code>, Route 53 passes the value of <code>FullyQualifiedDomainName</code> to the endpoint in the <code>Host</code> header.</p> </li> <li> <p>If you specify a value of <code>443</code> for <code>Port</code> and <code>HTTPS</code> or <code>HTTPS_STR_MATCH</code> for <code>Type</code>, Route 53 passes the value of <code>FullyQualifiedDomainName</code> to the endpoint in the <code>Host</code> header.</p> </li> <li> <p>If you specify another value for <code>Port</code> and any value except <code>TCP</code> for <code>Type</code>, Route 53 passes <i> <code>FullyQualifiedDomainName</code>:<code>Port</code> </i> to the endpoint in the <code>Host</code> header.</p> </li> </ul> <p>If you don't specify a value for <code>FullyQualifiedDomainName</code>, Route 53 substitutes the value of <code>IPAddress</code> in the <code>Host</code> header in each of the above cases.</p> <p> <b>If you don't specify a value for</b> <code>IPAddress</code>:</p> <p>If you don't specify a value for <code>IPAddress</code>, Route 53 sends a DNS request to the domain that you specify in <code>FullyQualifiedDomainName</code> at the interval you specify in <code>RequestInterval</code>. Using an IPv4 address that is returned by DNS, Route 53 then checks the health of the endpoint.</p> <note> <p>If you don't specify a value for <code>IPAddress</code>, Route 53 uses only IPv4 to send health checks to the endpoint. If there's no resource record set with a type of A for the name that you specify for <code>FullyQualifiedDomainName</code>, the health check fails with a "DNS resolution failed" error.</p> </note> <p>If you want to check the health of weighted, latency, or failover resource record sets and you choose to specify the endpoint only by <code>FullyQualifiedDomainName</code>, we recommend that you create a separate health check for each endpoint. For example, create a health check for each HTTP server that is serving content for www.example.com. For the value of <code>FullyQualifiedDomainName</code>, specify the domain name of the server (such as <code>us-east-2-www.example.com</code>), not the name of the resource record sets (www.example.com).</p> <important> <p>In this configuration, if the value of <code>FullyQualifiedDomainName</code> matches the name of the resource record sets and you then associate the health check with those resource record sets, health check results will be unpredictable.</p> </important> <p>In addition, if the value of <code>Type</code> is <code>HTTP</code>, <code>HTTPS</code>, <code>HTTP_STR_MATCH</code>, or <code>HTTPS_STR_MATCH</code>, Route 53 passes the value of <code>FullyQualifiedDomainName</code> in the <code>Host</code> header, as it does when you specify a value for <code>IPAddress</code>. If the value of <code>Type</code> is <code>TCP</code>, Route 53 doesn't pass a <code>Host</code> header.</p>
        SearchString:
          maxLength: 255
          type: string
          description: If the value of <code>Type</code> is <code>HTTP_STR_MATCH</code> or <code>HTTPS_STR_MATCH</code>, the string that you want Amazon Route 53 to search for in the response body from the specified resource. If the string appears in the response body, Route 53 considers the resource healthy. (You can't change the value of <code>Type</code> when you update a health check.)
        FailureThreshold:
          maximum: 10
          minimum: 1
          type: integer
          description: <p>The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html">How Amazon Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>If you don't specify a value for <code>FailureThreshold</code>, the default value is three health checks.</p>
          format: int32
        Inverted:
          type: boolean
          description: Specify whether you want Amazon Route 53 to invert the status of a health check, for example, to consider a health check unhealthy when it otherwise would be considered healthy.
        Disabled:
          type: boolean
          description: <p>Stops Route 53 from performing health checks. When you disable a health check, here's what happens:</p> <ul> <li> <p> <b>Health checks that check the health of endpoints:</b> Route 53 stops submitting requests to your application, server, or other resource.</p> </li> <li> <p> <b>Calculated health checks:</b> Route 53 stops aggregating the status of the referenced health checks.</p> </li> <li> <p> <b>Health checks that monitor CloudWatch alarms:</b> Route 53 stops monitoring the corresponding CloudWatch metrics.</p> </li> </ul> <p>After you disable a health check, Route 53 considers the status of the health check to always be healthy. If you configured DNS failover, Route 53 continues to route traffic to the corresponding resources. If you want to stop routing traffic to a resource, change the value of <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-Inverted">Inverted</a>. </p> <p>Charges for a health check still apply when the health check is disabled. For more information, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p>
        HealthThreshold:
          maximum: 256
          minimum: 0
          type: integer
          description: <p>The number of child health checks that are associated with a <code>CALCULATED</code> health that Amazon Route 53 must consider healthy for the <code>CALCULATED</code> health check to be considered healthy. To specify the child health checks that you want to associate with a <code>CALCULATED</code> health check, use the <code>ChildHealthChecks</code> and <code>ChildHealthCheck</code> elements.</p> <p>Note the following:</p> <ul> <li> <p>If you specify a number greater than the number of child health checks, Route 53 always considers this health check to be unhealthy.</p> </li> <li> <p>If you specify <code>0</code>, Route 53 always considers this health check to be healthy.</p> </li> </ul>
          format: int32
        ChildHealthChecks:
          maxItems: 256
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ChildHealthCheck
              attribute: false
              wrapped: false
          description: A complex type that contains one <code>ChildHealthCheck</code> element for each health check that you want to associate with a <code>CALCULATED</code> health check.
          xml:
            attribute: false
            wrapped: false
        EnableSNI:
          type: boolean
          description: <p>Specify whether you want Amazon Route 53 to send the value of <code>FullyQualifiedDomainName</code> to the endpoint in the <code>client_hello</code> message during <code>TLS</code> negotiation. This allows the endpoint to respond to <code>HTTPS</code> health check requests with the applicable SSL/TLS certificate.</p> <p>Some endpoints require that HTTPS requests include the host name in the <code>client_hello</code> message. If you don't enable SNI, the status of the health check will be SSL alert <code>handshake_failure</code>. A health check can also have that status for other reasons. If SNI is enabled and you're still getting the error, check the SSL/TLS configuration on your endpoint and confirm that your certificate is valid.</p> <p>The SSL/TLS certificate on your endpoint includes a domain name in the <code>Common Name</code> field and possibly several more in the <code>Subject Alternative Names</code> field. One of the domain names in the certificate should match the value that you specify for <code>FullyQualifiedDomainName</code>. If the endpoint responds to the <code>client_hello</code> message with a certificate that does not include the domain name that you specified in <code>FullyQualifiedDomainName</code>, a health checker will retry the handshake. In the second attempt, the health checker will omit <code>FullyQualifiedDomainName</code> from the <code>client_hello</code> message.</p>
        Regions:
          maxItems: 64
          minItems: 3
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckRegion1'
          description: A complex type that contains one <code>Region</code> element for each region that you want Amazon Route 53 health checkers to check the specified endpoint from.
        AlarmIdentifier:
          allOf:
          - $ref: '#/components/schemas/AlarmIdentifier4'
          - description: A complex type that identifies the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether the specified health check is healthy.
        InsufficientDataHealthStatus:
          allOf:
          - $ref: '#/components/schemas/InsufficientDataHealthStatus4'
          - description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
        ResetElements:
          maxItems: 64
          type: array
          items:
            $ref: '#/components/schemas/ResettableElementName1'
          description: '<p>A complex type that contains one <code>ResettableElementName</code> element for each element that you want to reset to the default value. Valid values for <code>ResettableElementName</code> include the following:</p> <ul> <li> <p> <code>ChildHealthChecks</code>: Amazon Route 53 resets <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-ChildHealthChecks">ChildHealthChecks</a> to null.</p> </li> <li> <p> <code>FullyQualifiedDomainName</code>: Route 53 resets <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName">FullyQualifiedDomainName</a>. to null.</p> </li> <li> <p> <code>Regions</code>: Route 53 resets the <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-Regions">Regions</a> list to the default set of regions. </p> </li> <li> <p> <code>ResourcePath</code>: Route 53 resets <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-ResourcePath">ResourcePath</a> to null.</p> </li> </ul>'
    HealthCheck1:
      title: HealthCheck1
      required:
      - Id
      - CallerReference
      - HealthCheckConfig
      - HealthCheckVersion
      type: object
      properties:
        Id:
          maxLength: 64
          type: string
        CallerReference:
          maxLength: 64
          minLength: 1
          type: string
        LinkedService:
          $ref: '#/components/schemas/LinkedService1'
        HealthCheckConfig:
          $ref: '#/components/schemas/HealthCheckConfig2'
        HealthCheckVersion:
          minimum: 1
          type: integer
          format: int32
        CloudWatchAlarmConfiguration:
          $ref: '#/components/schemas/CloudWatchAlarmConfiguration2'
    HealthCheckConfig1:
      title: HealthCheckConfig1
      type: object
      properties:
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
        Port:
          maximum: 65535
          minimum: 1
          type: integer
          format: int32
        Type:
          allOf:
          - $ref: '#/components/schemas/HealthCheckType1'
          - description: "<p>The type of health check that you want to create, which indicates how Amazon Route 53 determines whether an endpoint is healthy.</p> <important> <p>You can't change the value of <code>Type</code> after you create a health check.</p> </important> <p>You can create the following types of health checks:</p> <ul> <li> <p> <b>HTTP</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.</p> </li> <li> <p> <b>HTTPS</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400.</p> <important> <p>If you specify <code>HTTPS</code> for the value of <code>Type</code>, the endpoint must support TLS v1.0 or later.</p> </important> </li> <li> <p> <b>HTTP_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>HTTPS_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an <code>HTTPS</code> request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>TCP</b>: Route 53 tries to establish a TCP connection.</p> </li> <li> <p> <b>CLOUDWATCH_METRIC</b>: The health check is associated with a CloudWatch alarm. If the state of the alarm is <code>OK</code>, the health check is considered healthy. If the state is <code>ALARM</code>, the health check is considered unhealthy. If CloudWatch doesn't have sufficient data to determine whether the state is <code>OK</code> or <code>ALARM</code>, the health check status depends on the setting for <code>InsufficientDataHealthStatus</code>: <code>Healthy</code>, <code>Unhealthy</code>, or <code>LastKnownStatus</code>. </p> </li> <li> <p> <b>CALCULATED</b>: For health checks that monitor the status of other health checks, Route 53 adds up the number of health checks that Route 53 health checkers consider to be healthy and compares that number with the value of <code>HealthThreshold</code>. </p> </li> <li> <p> <b>RECOVERY_CONTROL</b>: The health check is assocated with a Route53 Application Recovery Controller routing control. If the routing control state is <code>ON</code>, the health check is considered healthy. If the state is <code>OFF</code>, the health check is considered unhealthy. </p> </li> </ul> <p>For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html\">How Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>"
        ResourcePath:
          maxLength: 255
          type: string
        FullyQualifiedDomainName:
          maxLength: 255
          type: string
        SearchString:
          maxLength: 255
          type: string
        RequestInterval:
          maximum: 30
          minimum: 10
          type: integer
          format: int32
        FailureThreshold:
          maximum: 10
          minimum: 1
          type: integer
          format: int32
        MeasureLatency:
          type: boolean
        Inverted:
          type: boolean
        Disabled:
          type: boolean
        HealthThreshold:
          maximum: 256
          minimum: 0
          type: integer
          format: int32
        ChildHealthChecks:
          maxItems: 256
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ChildHealthCheck
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
        EnableSNI:
          type: boolean
        Regions:
          maxItems: 64
          minItems: 3
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckRegion1'
          description: ''
        AlarmIdentifier:
          $ref: '#/components/schemas/AlarmIdentifier1'
        InsufficientDataHealthStatus:
          allOf:
          - $ref: '#/components/schemas/InsufficientDataHealthStatus1'
          - description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time that CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
        RoutingControlArn:
          maxLength: 255
          minLength: 1
          type: string
      description: A complex type that contains information about the health check.
    HealthCheckConfig2:
      title: HealthCheckConfig2
      required:
      - Type
      type: object
      properties:
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
        Port:
          maximum: 65535
          minimum: 1
          type: integer
          format: int32
        Type:
          allOf:
          - $ref: '#/components/schemas/HealthCheckType1'
          - description: "<p>The type of health check that you want to create, which indicates how Amazon Route 53 determines whether an endpoint is healthy.</p> <important> <p>You can't change the value of <code>Type</code> after you create a health check.</p> </important> <p>You can create the following types of health checks:</p> <ul> <li> <p> <b>HTTP</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.</p> </li> <li> <p> <b>HTTPS</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400.</p> <important> <p>If you specify <code>HTTPS</code> for the value of <code>Type</code>, the endpoint must support TLS v1.0 or later.</p> </important> </li> <li> <p> <b>HTTP_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>HTTPS_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an <code>HTTPS</code> request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>TCP</b>: Route 53 tries to establish a TCP connection.</p> </li> <li> <p> <b>CLOUDWATCH_METRIC</b>: The health check is associated with a CloudWatch alarm. If the state of the alarm is <code>OK</code>, the health check is considered healthy. If the state is <code>ALARM</code>, the health check is considered unhealthy. If CloudWatch doesn't have sufficient data to determine whether the state is <code>OK</code> or <code>ALARM</code>, the health check status depends on the setting for <code>InsufficientDataHealthStatus</code>: <code>Healthy</code>, <code>Unhealthy</code>, or <code>LastKnownStatus</code>. </p> </li> <li> <p> <b>CALCULATED</b>: For health checks that monitor the status of other health checks, Route 53 adds up the number of health checks that Route 53 health checkers consider to be healthy and compares that number with the value of <code>HealthThreshold</code>. </p> </li> <li> <p> <b>RECOVERY_CONTROL</b>: The health check is assocated with a Route53 Application Recovery Controller routing control. If the routing control state is <code>ON</code>, the health check is considered healthy. If the state is <code>OFF</code>, the health check is considered unhealthy. </p> </li> </ul> <p>For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html\">How Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>"
        ResourcePath:
          maxLength: 255
          type: string
        FullyQualifiedDomainName:
          maxLength: 255
          type: string
        SearchString:
          maxLength: 255
          type: string
        RequestInterval:
          maximum: 30
          minimum: 10
          type: integer
          format: int32
        FailureThreshold:
          maximum: 10
          minimum: 1
          type: integer
          format: int32
        MeasureLatency:
          type: boolean
        Inverted:
          type: boolean
        Disabled:
          type: boolean
        HealthThreshold:
          maximum: 256
          minimum: 0
          type: integer
          format: int32
        ChildHealthChecks:
          maxItems: 256
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ChildHealthCheck
              attribute: false
              wrapped: false
          description: ''
          xml:
            attribute: false
            wrapped: false
        EnableSNI:
          type: boolean
        Regions:
          maxItems: 64
          minItems: 3
          type: array
          items:
            $ref: '#/components/schemas/HealthCheckRegion1'
          description: ''
        AlarmIdentifier:
          $ref: '#/components/schemas/AlarmIdentifier1'
        InsufficientDataHealthStatus:
          allOf:
          - $ref: '#/components/schemas/InsufficientDataHealthStatus1'
          - description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time that CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
        RoutingControlArn:
          maxLength: 255
          minLength: 1
          type: string
    HealthCheckObservation2:
      title: HealthCheckObservation2
      type: object
      properties:
        Region:
          allOf:
          - $ref: '#/components/schemas/HealthCheckRegion2'
          - description: The region of the Amazon Route 53 health checker that provided the status in <code>StatusReport</code>.
            example: us-east-1
        IPAddress:
          maxLength: 45
          pattern: (^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)
          type: string
        StatusReport:
          $ref: '#/components/schemas/StatusReport2'
    HealthCheckRegion1:
      title: HealthCheckRegion1
      enum:
      - us-east-1
      - us-west-1
      - us-west-2
      - eu-west-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - sa-east-1
      type: string
      xml:
        name: Region
        attribute: false
        wrapped: false
    HealthCheckRegion2:
      title: HealthCheckRegion2
      enum:
      - us-east-1
      - us-west-1
      - us-west-2
      - eu-west-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - sa-east-1
      type: string
      description: The region of the Amazon Route 53 health checker that provided the status in <code>StatusReport</code>.
      example: us-east-1
    HealthCheckType1:
      title: HealthCheckType1
      enum:
      - HTTP
      - HTTPS
      - HTTP_STR_MATCH
      - HTTPS_STR_MATCH
      - TCP
      - CALCULATED
      - CLOUDWATCH_METRIC
      - RECOVERY_CONTROL
      type: string
      description: "<p>The type of health check that you want to create, which indicates how Amazon Route 53 determines whether an endpoint is healthy.</p> <important> <p>You can't change the value of <code>Type</code> after you create a health check.</p> </important> <p>You can create the following types of health checks:</p> <ul> <li> <p> <b>HTTP</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.</p> </li> <li> <p> <b>HTTPS</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400.</p> <important> <p>If you specify <code>HTTPS</code> for the value of <code>Type</code>, the endpoint must support TLS v1.0 or later.</p> </important> </li> <li> <p> <b>HTTP_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>HTTPS_STR_MATCH</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an <code>HTTPS</code> request and searches the first 5,120 bytes of the response body for the string that you specify in <code>SearchString</code>.</p> </li> <li> <p> <b>TCP</b>: Route 53 tries to establish a TCP connection.</p> </li> <li> <p> <b>CLOUDWATCH_METRIC</b>: The health check is associated with a CloudWatch alarm. If the state of the alarm is <code>OK</code>, the health check is considered healthy. If the state is <code>ALARM</code>, the health check is considered unhealthy. If CloudWatch doesn't have sufficient data to determine whether the state is <code>OK</code> or <code>ALARM</code>, the health check status depends on the setting for <code>InsufficientDataHealthStatus</code>: <code>Healthy</code>, <code>Unhealthy</code>, or <code>LastKnownStatus</code>. </p> </li> <li> <p> <b>CALCULATED</b>: For health checks that monitor the status of other health checks, Route 53 adds up the number of health checks that Route 53 health checkers consider to be healthy and compares that number with the value of <code>HealthThreshold</code>. </p> </li> <li> <p> <b>RECOVERY_CONTROL</b>: The health check is assocated with a Route53 Application Recovery Controller routing control. If the routing control state is <code>ON</code>, the health check is considered healthy. If the state is <code>OFF</code>, the health check is considered unhealthy. </p> </li> </ul> <p>For more information, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html\">How Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>"
      example: HTTP
    Hostedzone201341Request:
      title: Hostedzone201341Request
      required:
      - Name
      - CallerReference
      type: object
      properties:
        Name:
          maxLength: 1024
          type: string
          description: <p>The name of the domain. Specify a fully qualified domain name, for example, <i>www.example.com</i>. The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats <i>www.example.com</i> (without a trailing dot) and <i>www.example.com.</i> (with a trailing dot) as identical.</p> <p>If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of <code>NameServers</code> that <code>CreateHostedZone</code> returns in <code>DelegationSet</code>.</p>
        VPC:
          allOf:
          - $ref: '#/components/schemas/VPC'
          - description: (Private hosted zones only) A complex type that contains information about an Amazon VPC.
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
          description: A unique string that identifies the request and that allows failed <code>CreateHostedZone</code> requests to be retried without the risk of executing the operation twice. You must use a unique <code>CallerReference</code> string every time you submit a <code>CreateHostedZone</code> request. <code>CallerReference</code> can be any unique string, for example, a date/time stamp.
        HostedZoneConfig:
          allOf:
          - $ref: '#/components/schemas/HostedZoneConfig'
          - description: A complex type that contains an optional comment about your hosted zone. If you don't want to specify a comment, omit both the <code>HostedZoneConfig</code> and <code>Comment</code> elements.
        DelegationSetId:
          maxLength: 32
          type: string
          description: If you want to associate a reusable delegation set with this hosted zone, the ID that Amazon Route 53 assigned to the reusable delegation set when you created it. For more information about reusable delegation sets, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html">CreateReusableDelegationSet</a>.
    Hostedzone201341Request1:
      title: Hostedzone201341Request1
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
          description: The new comment for the hosted zone. If you don't specify a value for <code>Comment</code>, Amazon Route 53 deletes the existing value of the <code>Comment</code> element, if any.
    HostedzoneAssociatevpc201341Request:
      title: HostedzoneAssociatevpc201341Request
      required:
      - VPC
      type: object
      properties:
        VPC:
          allOf:
          - $ref: '#/components/schemas/VPC'
          - description: (Private hosted zones only) A complex type that contains information about an Amazon VPC.
        Comment:
          type: string
          description: <i>Optional:</i> A comment about the association request.
    HostedzoneAuthorizevpcassociation201341Request:
      title: HostedzoneAuthorizevpcassociation201341Request
      required:
      - VPC
      type: object
      properties:
        VPC:
          allOf:
          - $ref: '#/components/schemas/VPC'
          - description: (Private hosted zones only) A complex type that contains information about an Amazon VPC.
    HostedzoneDeauthorizevpcassociation201341Request:
      title: HostedzoneDeauthorizevpcassociation201341Request
      required:
      - VPC
      type: object
      properties:
        VPC:
          allOf:
          - $ref: '#/components/schemas/VPC'
          - description: (Private hosted zones only) A complex type that contains information about an Amazon VPC.
    HostedzoneDisassociatevpc201341Request:
      title: HostedzoneDisassociatevpc201341Request
      required:
      - VPC
      type: object
      properties:
        VPC:
          allOf:
          - $ref: '#/components/schemas/VPC'
          - description: (Private hosted zones only) A complex type that contains information about an Amazon VPC.
        Comment:
          type: string
          description: <i>Optional:</i> A comment about the disassociation request.
    HostedzoneRrset201341Request:
      title: HostedzoneRrset201341Request
      required:
      - ChangeBatch
      type: object
      properties:
        ChangeBatch:
          allOf:
          - $ref: '#/components/schemas/ChangeBatch2'
          - description: The information for a change request.
    HostedZone1:
      title: HostedZone1
      required:
      - Id
      - Name
      - CallerReference
      type: object
      properties:
        Id:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
        Config:
          $ref: '#/components/schemas/Config'
        ResourceRecordSetCount:
          type: integer
          format: int32
        LinkedService:
          $ref: '#/components/schemas/LinkedService1'
    HostedZoneConfig1:
      title: HostedZoneConfig1
      type: object
      properties:
        Comment:
          maxLength: 256
          type: string
        PrivateZone:
          type: boolean
    HostedZoneLimitType2:
      title: HostedZoneLimitType2
      enum:
      - MAX_RRSETS_BY_ZONE
      - MAX_VPCS_ASSOCIATED_BY_ZONE
      type: string
      description: '<p>The limit that you requested. Valid values include the following:</p> <ul> <li> <p> <b>MAX_RRSETS_BY_ZONE</b>: The maximum number of records that you can create in the specified hosted zone.</p> </li> <li> <p> <b>MAX_VPCS_ASSOCIATED_BY_ZONE</b>: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.</p> </li> </ul>'
      example: MAX_RRSETS_BY_ZONE
    HostedZoneSummary2:
      title: HostedZoneSummary2
      required:
      - HostedZoneId
      - Name
      - Owner
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        Owner:
          $ref: '#/components/schemas/Owner'
    InsufficientDataHealthStatus1:
      title: InsufficientDataHealthStatus1
      enum:
      - Healthy
      - Unhealthy
      - LastKnownStatus
      type: string
      description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time that CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
      example: Healthy
    InsufficientDataHealthStatus4:
      title: InsufficientDataHealthStatus4
      enum:
      - Healthy
      - Unhealthy
      - LastKnownStatus
      type: string
      description: '<p>When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check:</p> <ul> <li> <p> <code>Healthy</code>: Route 53 considers the health check to be healthy.</p> </li> <li> <p> <code>Unhealthy</code>: Route 53 considers the health check to be unhealthy.</p> </li> <li> <p> <code>LastKnownStatus</code>: Route 53 uses the status of the health check from the last time CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.</p> </li> </ul>'
      example: Healthy
    Keysigningkey201341Request:
      title: Keysigningkey201341Request
      required:
      - CallerReference
      - HostedZoneId
      - KeyManagementServiceArn
      - Name
      - Status
      type: object
      properties:
        CallerReference:
          maxLength: 128
          minLength: 1
          type: string
          description: A unique string that identifies the request.
        HostedZoneId:
          maxLength: 32
          type: string
          description: The unique string (ID) used to identify a hosted zone.
        KeyManagementServiceArn:
          type: string
          description: '<p>The Amazon resource name (ARN) for a customer managed customer master key (CMK) in Key Management Service (KMS). The <code>KeyManagementServiceArn</code> must be unique for each key-signing key (KSK) in a single hosted zone. To see an example of <code>KeyManagementServiceArn</code> that grants the correct permissions for DNSSEC, scroll down to <b>Example</b>. </p> <p>You must configure the customer managed CMK as follows:</p> <dl> <dt>Status</dt> <dd> <p>Enabled</p> </dd> <dt>Key spec</dt> <dd> <p>ECC_NIST_P256</p> </dd> <dt>Key usage</dt> <dd> <p>Sign and verify</p> </dd> <dt>Key policy</dt> <dd> <p>The key policy must give permission for the following actions:</p> <ul> <li> <p>DescribeKey</p> </li> <li> <p>GetPublicKey</p> </li> <li> <p>Sign</p> </li> </ul> <p>The key policy must also include the Amazon Route 53 service in the principal for your account. Specify the following:</p> <ul> <li> <p> <code>"Service": "dnssec-route53.amazonaws.com"</code> </p> </li> </ul> </dd> </dl> <p>For more information about working with a customer managed CMK in KMS, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html">Key Management Service concepts</a>.</p>'
        Name:
          maxLength: 128
          minLength: 3
          type: string
          description: A string used to identify a key-signing key (KSK). <code>Name</code> can include numbers, letters, and underscores (_). <code>Name</code> must be unique for each key-signing key in the same hosted zone.
        Status:
          maxLength: 150
          minLength: 5
          type: string
          description: A string specifying the initial status of the key-signing key (KSK). You can set the value to <code>ACTIVE</code> or <code>INACTIVE</code>.
    KeySigningKey2:
      title: KeySigningKey2
      type: object
      properties:
        Name:
          maxLength: 128
          minLength: 3
          type: string
        KmsArn:
          type: string
        Flag:
          type: integer
          format: int32
        SigningAlgorithmMnemonic:
          type: string
        SigningAlgorithmType:
          type: integer
          format: int32
        DigestAlgorithmMnemonic:
          type: string
        DigestAlgorithmType:
          type: integer
          format: int32
        KeyTag:
          maximum: 65536
          minimum: 0
          type: integer
          format: int32
        DigestValue:
          type: string
        PublicKey:
          type: string
        DSRecord:
          type: string
        DNSKEYRecord:
          type: string
        Status:
          maxLength: 150
          minLength: 5
          type: string
        StatusMessage:
          maxLength: 512
          minLength: 0
          type: string
        CreatedDate:
          type: string
          format: date-time
        LastModifiedDate:
          type: string
          format: date-time
    Limit:
      title: Limit
      required:
      - Type
      - Value
      type: object
      properties:
        Type:
          allOf:
          - $ref: '#/components/schemas/AccountLimitType2'
          - description: '<p>The limit that you requested. Valid values include the following:</p> <ul> <li> <p> <b>MAX_HEALTH_CHECKS_BY_OWNER</b>: The maximum number of health checks that you can create using the current account.</p> </li> <li> <p> <b>MAX_HOSTED_ZONES_BY_OWNER</b>: The maximum number of hosted zones that you can create using the current account.</p> </li> <li> <p> <b>MAX_REUSABLE_DELEGATION_SETS_BY_OWNER</b>: The maximum number of reusable delegation sets that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICIES_BY_OWNER</b>: The maximum number of traffic policies that you can create using the current account.</p> </li> <li> <p> <b>MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER</b>: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)</p> </li> </ul>'
            example: MAX_HEALTH_CHECKS_BY_OWNER
        Value:
          minimum: 1
          type: integer
          format: int32
    Limit1:
      title: Limit1
      required:
      - Type
      - Value
      type: object
      properties:
        Type:
          allOf:
          - $ref: '#/components/schemas/HostedZoneLimitType2'
          - description: '<p>The limit that you requested. Valid values include the following:</p> <ul> <li> <p> <b>MAX_RRSETS_BY_ZONE</b>: The maximum number of records that you can create in the specified hosted zone.</p> </li> <li> <p> <b>MAX_VPCS_ASSOCIATED_BY_ZONE</b>: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.</p> </li> </ul>'
            example: MAX_RRSETS_BY_ZONE
        Value:
          minimum: 1
          type: integer
          format: int32
    Limit2:
      title: Limit2
      required:
      - Type
      - Value
      type: object
      properties:
        Type:
          enum:
          - MAX_ZONES_BY_REUSABLE_DELEGATION_SET
          type: string
          description: 'The limit that you requested: <code>MAX_ZONES_BY_REUSABLE_DELEGATION_SET</code>, the maximum number of hosted zones that you can associate with the specified reusable delegation set.'
          example: MAX_ZONES_BY_REUSABLE_DELEGATION_SET
        Value:
          minimum: 1
          type: integer
          format: int32
    LinkedService1:
      title: LinkedService1
      type: object
      properties:
        ServicePrincipal:
          maxLength: 128
          type: string
        Description:
          maxLength: 256
          type: string
    Owner:
      title: Owner
      type: object
      properties:
        OwningAccount:
          type: string
        OwningService:
          maxLength: 128
          type: string
    Queryloggingconfig201341Request:
      title: Queryloggingconfig201341Request
      required:
      - HostedZoneId
      - CloudWatchLogsLogGroupArn
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
          description: The ID of the hosted zone that you want to log queries for. You can log queries only for public hosted zones.
        CloudWatchLogsLogGroupArn:
          type: string
          description: <p>The Amazon Resource Name (ARN) for the log group that you want to Amazon Route 53 to send query logs to. This is the format of the ARN:</p> <p>arn:aws:logs:<i>region</i>:<i>account-id</i>:log-group:<i>log_group_name</i> </p> <p>To get the ARN for a log group, you can use the CloudWatch console, the <a href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html">DescribeLogGroups</a> API action, the <a href="https://docs.aws.amazon.com/cli/latest/reference/logs/describe-log-groups.html">describe-log-groups</a> command, or the applicable command in one of the Amazon Web Services SDKs.</p>
    QueryLoggingConfig1:
      title: QueryLoggingConfig1
      required:
      - Id
      - HostedZoneId
      - CloudWatchLogsLogGroupArn
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
        CloudWatchLogsLogGroupArn:
          type: string
    ResettableElementName1:
      title: ResettableElementName1
      enum:
      - FullyQualifiedDomainName
      - Regions
      - ResourcePath
      - ChildHealthChecks
      type: string
      xml:
        name: ResettableElementName
        attribute: false
        wrapped: false
    ResourceRecord2:
      title: ResourceRecord2
      required:
      - Value
      type: object
      properties:
        Value:
          maxLength: 4000
          type: string
    ResourceRecordSet1:
      title: ResourceRecordSet1
      required:
      - Name
      - Type
      type: object
      properties:
        Name:
          maxLength: 1024
          type: string
        Type:
          allOf:
          - $ref: '#/components/schemas/RRType6'
          - description: "<p>The DNS record type. For information about different record types and how data is encoded for them, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html\">Supported DNS Resource Record Types</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Valid values for basic resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>DS</code> |<code>MX</code> | <code>NAPTR</code> | <code>NS</code> | <code>PTR</code> | <code>SOA</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for weighted, latency, geolocation, and failover resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code>. When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.</p> <p>Valid values for multivalue answer resource record sets: <code>A</code> | <code>AAAA</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <note> <p>SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of <code>Type</code> is <code>SPF</code>. RFC 7208, <i>Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1</i>, has been updated to say, \"...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it.\" In RFC 7208, see section 14.1, <a href=\"http://tools.ietf.org/html/rfc7208#section-14.1\">The SPF DNS Record Type</a>.</p> </note> <p>Values for alias resource record sets:</p> <ul> <li> <p> <b>Amazon API Gateway custom regional APIs and edge-optimized APIs:</b> <code>A</code> </p> </li> <li> <p> <b>CloudFront distributions:</b> <code>A</code> </p> <p>If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of <code>A</code> and one with a value of <code>AAAA</code>. </p> </li> <li> <p> <b>Amazon API Gateway environment that has a regionalized subdomain</b>: <code>A</code> </p> </li> <li> <p> <b>ELB load balancers:</b> <code>A</code> | <code>AAAA</code> </p> </li> <li> <p> <b>Amazon S3 buckets:</b> <code>A</code> </p> </li> <li> <p> <b>Amazon Virtual Private Cloud interface VPC endpoints</b> <code>A</code> </p> </li> <li> <p> <b>Another resource record set in this hosted zone:</b> Specify the type of the resource record set that you're creating the alias for. All values are supported except <code>NS</code> and <code>SOA</code>.</p> <note> <p>If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of <code>Type</code> is <code>CNAME</code>. This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.</p> </note> </li> </ul>"
            example: SOA
        SetIdentifier:
          maxLength: 128
          minLength: 1
          type: string
        Weight:
          maximum: 255
          minimum: 0
          type: integer
          format: int32
        Region:
          allOf:
          - $ref: '#/components/schemas/ResourceRecordSetRegion1'
          - description: <p> <i>Latency-based resource record sets only:</i> The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an Amazon Web Services resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.</p> <note> <p>Although creating latency and latency alias resource record sets in a private hosted zone is allowed, it's not supported.</p> </note> <p>When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set.</p> <p>Note the following:</p> <ul> <li> <p>You can only specify one <code>ResourceRecord</code> per latency resource record set.</p> </li> <li> <p>You can only create one latency resource record set for each Amazon EC2 Region.</p> </li> <li> <p>You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for.</p> </li> <li> <p>You can't create non-latency resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as latency resource record sets.</p> </li> </ul>
            example: us-east-1
        GeoLocation:
          $ref: '#/components/schemas/GeoLocation2'
        Failover:
          allOf:
          - $ref: '#/components/schemas/ResourceRecordSetFailover1'
          - description: "<p> <i>Failover resource record sets only:</i> To configure failover, you add the <code>Failover</code> element to two resource record sets. For one resource record set, you specify <code>PRIMARY</code> as the value for <code>Failover</code>; for the other resource record set, you specify <code>SECONDARY</code>. In addition, you include the <code>HealthCheckId</code> element and specify the health check that you want Amazon Route 53 to perform for each resource record set.</p> <p>Except where noted, the following failover behaviors assume that you have included the <code>HealthCheckId</code> element in both resource record sets:</p> <ul> <li> <p>When the primary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.</p> </li> <li> <p>When the primary resource record set is unhealthy and the secondary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the secondary resource record set.</p> </li> <li> <p>When the secondary resource record set is unhealthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.</p> </li> <li> <p>If you omit the <code>HealthCheckId</code> element for the secondary resource record set, and if the primary resource record set is unhealthy, Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.</p> </li> </ul> <p>You can't create non-failover resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as failover resource record sets.</p> <p>For failover alias resource record sets, you must also include the <code>EvaluateTargetHealth</code> element and set the value to true.</p> <p>For more information about configuring failover for Route 53, see the following topics in the <i>Amazon Route 53 Developer Guide</i>: </p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html\">Route 53 Health Checks and DNS Failover</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html\">Configuring Failover in a Private Hosted Zone</a> </p> </li> </ul>"
            example: PRIMARY
        MultiValueAnswer:
          type: boolean
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
        ResourceRecords:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/ResourceRecord2'
          description: ''
        AliasTarget:
          $ref: '#/components/schemas/AliasTarget2'
        HealthCheckId:
          maxLength: 64
          type: string
        TrafficPolicyInstanceId:
          maxLength: 36
          minLength: 1
          type: string
    ResourceRecordSetFailover1:
      title: ResourceRecordSetFailover1
      enum:
      - PRIMARY
      - SECONDARY
      type: string
      description: "<p> <i>Failover resource record sets only:</i> To configure failover, you add the <code>Failover</code> element to two resource record sets. For one resource record set, you specify <code>PRIMARY</code> as the value for <code>Failover</code>; for the other resource record set, you specify <code>SECONDARY</code>. In addition, you include the <code>HealthCheckId</code> element and specify the health check that you want Amazon Route 53 to perform for each resource record set.</p> <p>Except where noted, the following failover behaviors assume that you have included the <code>HealthCheckId</code> element in both resource record sets:</p> <ul> <li> <p>When the primary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.</p> </li> <li> <p>When the primary resource record set is unhealthy and the secondary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the secondary resource record set.</p> </li> <li> <p>When the secondary resource record set is unhealthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.</p> </li> <li> <p>If you omit the <code>HealthCheckId</code> element for the secondary resource record set, and if the primary resource record set is unhealthy, Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.</p> </li> </ul> <p>You can't create non-failover resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as failover resource record sets.</p> <p>For failover alias resource record sets, you must also include the <code>EvaluateTargetHealth</code> element and set the value to true.</p> <p>For more information about configuring failover for Route 53, see the following topics in the <i>Amazon Route 53 Developer Guide</i>: </p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html\">Route 53 Health Checks and DNS Failover</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html\">Configuring Failover in a Private Hosted Zone</a> </p> </li> </ul>"
      example: PRIMARY
    ResourceRecordSetRegion1:
      title: ResourceRecordSetRegion1
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - ca-central-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - eu-north-1
      - sa-east-1
      - cn-north-1
      - cn-northwest-1
      - ap-east-1
      - me-south-1
      - ap-south-1
      - af-south-1
      - eu-south-1
      type: string
      description: <p> <i>Latency-based resource record sets only:</i> The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an Amazon Web Services resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.</p> <note> <p>Although creating latency and latency alias resource record sets in a private hosted zone is allowed, it's not supported.</p> </note> <p>When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set.</p> <p>Note the following:</p> <ul> <li> <p>You can only specify one <code>ResourceRecord</code> per latency resource record set.</p> </li> <li> <p>You can only create one latency resource record set for each Amazon EC2 Region.</p> </li> <li> <p>You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for.</p> </li> <li> <p>You can't create non-latency resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as latency resource record sets.</p> </li> </ul>
      example: us-east-1
    ResourceTagSet2:
      title: ResourceTagSet2
      type: object
      properties:
        ResourceType:
          allOf:
          - $ref: '#/components/schemas/TagResourceType1'
          - description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
            example: healthcheck
        ResourceId:
          maxLength: 64
          type: string
        Tags:
          maxItems: 10
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/TagList'
          description: ''
    ResourceTagSetList:
      title: ResourceTagSetList
      type: object
      properties:
        ResourceType:
          allOf:
          - $ref: '#/components/schemas/TagResourceType1'
          - description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
            example: healthcheck
        ResourceId:
          maxLength: 64
          type: string
        Tags:
          maxItems: 10
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/TagList'
          description: ''
    ReusableDelegationSetLimitType2:
      title: ReusableDelegationSetLimitType2
      enum:
      - MAX_ZONES_BY_REUSABLE_DELEGATION_SET
      type: string
      description: 'The limit that you requested: <code>MAX_ZONES_BY_REUSABLE_DELEGATION_SET</code>, the maximum number of hosted zones that you can associate with the specified reusable delegation set.'
      example: MAX_ZONES_BY_REUSABLE_DELEGATION_SET
    RRType1:
      title: RRType1
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: The DNS type of the resource record sets that Amazon Route 53 creates when you use a traffic policy to create a traffic policy instance.
      example: SOA
    RRType2:
      title: RRType2
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: The DNS type that Amazon Route 53 assigned to all of the resource record sets that it created for this traffic policy instance.
      example: SOA
    RRType6:
      title: RRType6
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: "<p>The DNS record type. For information about different record types and how data is encoded for them, see <a href=\"https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html\">Supported DNS Resource Record Types</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Valid values for basic resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>DS</code> |<code>MX</code> | <code>NAPTR</code> | <code>NS</code> | <code>PTR</code> | <code>SOA</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <p>Values for weighted, latency, geolocation, and failover resource record sets: <code>A</code> | <code>AAAA</code> | <code>CAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code>. When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.</p> <p>Valid values for multivalue answer resource record sets: <code>A</code> | <code>AAAA</code> | <code>MX</code> | <code>NAPTR</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code> </p> <note> <p>SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of <code>Type</code> is <code>SPF</code>. RFC 7208, <i>Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1</i>, has been updated to say, \"...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it.\" In RFC 7208, see section 14.1, <a href=\"http://tools.ietf.org/html/rfc7208#section-14.1\">The SPF DNS Record Type</a>.</p> </note> <p>Values for alias resource record sets:</p> <ul> <li> <p> <b>Amazon API Gateway custom regional APIs and edge-optimized APIs:</b> <code>A</code> </p> </li> <li> <p> <b>CloudFront distributions:</b> <code>A</code> </p> <p>If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of <code>A</code> and one with a value of <code>AAAA</code>. </p> </li> <li> <p> <b>Amazon API Gateway environment that has a regionalized subdomain</b>: <code>A</code> </p> </li> <li> <p> <b>ELB load balancers:</b> <code>A</code> | <code>AAAA</code> </p> </li> <li> <p> <b>Amazon S3 buckets:</b> <code>A</code> </p> </li> <li> <p> <b>Amazon Virtual Private Cloud interface VPC endpoints</b> <code>A</code> </p> </li> <li> <p> <b>Another resource record set in this hosted zone:</b> Specify the type of the resource record set that you're creating the alias for. All values are supported except <code>NS</code> and <code>SOA</code>.</p> <note> <p>If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of <code>Type</code> is <code>CNAME</code>. This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.</p> </note> </li> </ul>"
      example: SOA
    RRType7:
      title: RRType7
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: <p>If the results were truncated, the type of the next record in the list.</p> <p>This element is present only if <code>IsTruncated</code> is true. </p>
      example: SOA
    RRType10:
      title: RRType10
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance that Amazon Route 53 will return if you submit another <code>ListTrafficPolicyInstances</code> request.
      example: SOA
    RRType11:
      title: RRType11
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: If <code>IsTruncated</code> is true, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of traffic policy instances.
      example: SOA
    RRType12:
      title: RRType12
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.
      example: SOA
    RRType14:
      title: RRType14
      enum:
      - SOA
      - A
      - TXT
      - NS
      - CNAME
      - MX
      - NAPTR
      - PTR
      - SRV
      - SPF
      - AAAA
      - CAA
      - DS
      type: string
      description: The type of the resource record set that you submitted a request for.
      example: SOA
    Statistic2:
      title: Statistic2
      enum:
      - Average
      - Sum
      - SampleCount
      - Maximum
      - Minimum
      type: string
      description: For the metric that the CloudWatch alarm is associated with, the statistic that is applied to the metric.
      example: Average
    Status:
      title: Status
      type: object
      properties:
        ServeSignature:
          maxLength: 1024
          minLength: 1
          type: string
        StatusMessage:
          maxLength: 512
          minLength: 0
          type: string
    StatusReport2:
      title: StatusReport2
      type: object
      properties:
        Status:
          type: string
        CheckedTime:
          type: string
          format: date-time
    TagList:
      title: TagList
      type: object
      properties:
        Key:
          maxLength: 128
          type: string
        Value:
          maxLength: 256
          type: string
    TagResourceType1:
      title: TagResourceType1
      enum:
      - healthcheck
      - hostedzone
      type: string
      description: <p>The type of the resource.</p> <ul> <li> <p>The resource type for health checks is <code>healthcheck</code>.</p> </li> <li> <p>The resource type for hosted zones is <code>hostedzone</code>.</p> </li> </ul>
      example: healthcheck
    Tags201341Request:
      title: Tags201341Request
      type: object
      properties:
        AddTags:
          maxItems: 10
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/AddTag'
          description: <p>A complex type that contains a list of the tags that you want to add to the specified health check or hosted zone and/or the tags that you want to edit <code>Value</code> for.</p> <p>You can add a maximum of 10 tags to a health check or a hosted zone.</p>
        RemoveTagKeys:
          maxItems: 10
          minItems: 1
          type: array
          items:
            maxLength: 128
            type: string
            xml:
              name: Key
              attribute: false
              wrapped: false
          description: A complex type that contains a list of the tags that you want to delete from the specified health check or hosted zone. You can specify up to 10 keys.
          xml:
            attribute: false
            wrapped: false
    Tags201341Request1:
      title: Tags201341Request1
      required:
      - ResourceIds
      type: object
      properties:
        ResourceIds:
          maxItems: 10
          minItems: 1
          type: array
          items:
            maxLength: 64
            type: string
            xml:
              name: ResourceId
              attribute: false
              wrapped: false
          description: A complex type that contains the ResourceId element for each resource for which you want to get a list of tags.
          xml:
            attribute: false
            wrapped: false
    Trafficpolicy201341Request:
      title: Trafficpolicy201341Request
      required:
      - Name
      - Document
      type: object
      properties:
        Name:
          maxLength: 512
          type: string
          description: The name of the traffic policy.
        Document:
          maxLength: 102400
          type: string
          description: The definition of this traffic policy in JSON format. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html">Traffic Policy Document Format</a>.
        Comment:
          maxLength: 1024
          type: string
          description: (Optional) Any comments that you want to include about the traffic policy.
    Trafficpolicy201341Request1:
      title: Trafficpolicy201341Request1
      required:
      - Document
      type: object
      properties:
        Document:
          maxLength: 102400
          type: string
          description: The definition of this version of the traffic policy, in JSON format. You specified the JSON in the <code>CreateTrafficPolicyVersion</code> request. For more information about the JSON format, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html">CreateTrafficPolicy</a>.
        Comment:
          maxLength: 1024
          type: string
          description: The comment that you specified in the <code>CreateTrafficPolicyVersion</code> request, if any.
    Trafficpolicy201341Request2:
      title: Trafficpolicy201341Request2
      required:
      - Comment
      type: object
      properties:
        Comment:
          maxLength: 1024
          type: string
          description: The new comment for the specified traffic policy and version.
    TrafficPolicy1:
      title: TrafficPolicy1
      required:
      - Id
      - Version
      - Name
      - Type
      - Document
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        Version:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
        Name:
          maxLength: 512
          type: string
        Type:
          allOf:
          - $ref: '#/components/schemas/RRType1'
          - description: The DNS type of the resource record sets that Amazon Route 53 creates when you use a traffic policy to create a traffic policy instance.
            example: SOA
        Document:
          maxLength: 102400
          type: string
        Comment:
          maxLength: 1024
          type: string
    Trafficpolicyinstance201341Request:
      title: Trafficpolicyinstance201341Request
      required:
      - HostedZoneId
      - Name
      - TTL
      - TrafficPolicyId
      - TrafficPolicyVersion
      type: object
      properties:
        HostedZoneId:
          maxLength: 32
          type: string
          description: The ID of the hosted zone that you want Amazon Route 53 to create resource record sets in by using the configuration in a traffic policy.
        Name:
          maxLength: 1024
          type: string
          description: The domain name (such as example.com) or subdomain name (such as www.example.com) for which Amazon Route 53 responds to DNS queries by using the resource record sets that Route 53 creates for this traffic policy instance.
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          description: (Optional) The TTL that you want Amazon Route 53 to assign to all of the resource record sets that it creates in the specified hosted zone.
          format: int32
        TrafficPolicyId:
          maxLength: 36
          minLength: 1
          type: string
          description: The ID of the traffic policy that you want to use to create resource record sets in the specified hosted zone.
        TrafficPolicyVersion:
          maximum: 1000
          minimum: 1
          type: integer
          description: The version of the traffic policy that you want to use to create resource record sets in the specified hosted zone.
          format: int32
    Trafficpolicyinstance201341Request1:
      title: Trafficpolicyinstance201341Request1
      required:
      - TTL
      - TrafficPolicyId
      - TrafficPolicyVersion
      type: object
      properties:
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          description: The TTL that you want Amazon Route 53 to assign to all of the updated resource record sets.
          format: int32
        TrafficPolicyId:
          maxLength: 36
          minLength: 1
          type: string
          description: The ID of the traffic policy that you want Amazon Route 53 to use to update resource record sets for the specified traffic policy instance.
        TrafficPolicyVersion:
          maximum: 1000
          minimum: 1
          type: integer
          description: The version of the traffic policy that you want Amazon Route 53 to use to update resource record sets for the specified traffic policy instance.
          format: int32
    TrafficPolicyInstance1:
      title: TrafficPolicyInstance1
      required:
      - Id
      - HostedZoneId
      - Name
      - TTL
      - State
      - Message
      - TrafficPolicyId
      - TrafficPolicyVersion
      - TrafficPolicyType
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        HostedZoneId:
          maxLength: 32
          type: string
        Name:
          maxLength: 1024
          type: string
        TTL:
          maximum: 2147483647
          minimum: 0
          type: integer
          format: int32
        State:
          type: string
        Message:
          maxLength: 1024
          type: string
        TrafficPolicyId:
          maxLength: 36
          minLength: 1
          type: string
        TrafficPolicyVersion:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
        TrafficPolicyType:
          allOf:
          - $ref: '#/components/schemas/RRType2'
          - description: The DNS type that Amazon Route 53 assigned to all of the resource record sets that it created for this traffic policy instance.
            example: SOA
    TrafficPolicySummary2:
      title: TrafficPolicySummary2
      required:
      - Id
      - Name
      - Type
      - LatestVersion
      - TrafficPolicyCount
      type: object
      properties:
        Id:
          maxLength: 36
          minLength: 1
          type: string
        Name:
          maxLength: 512
          type: string
        Type:
          allOf:
          - $ref: '#/components/schemas/RRType1'
          - description: The DNS type of the resource record sets that Amazon Route 53 creates when you use a traffic policy to create a traffic policy instance.
            example: SOA
        LatestVersion:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
        TrafficPolicyCount:
          maximum: 1000
          minimum: 1
          type: integer
          format: int32
    VPC1:
      title: VPC1
      type: object
      properties:
        VPCRegion:
          allOf:
          - $ref: '#/components/schemas/VPCRegion1'
          - description: (Private hosted zones only) The region that an Amazon VPC was created in.
            example: us-east-1
        VPCId:
          maxLength: 1024
          type: string
          description: (Private hosted zones only) The ID of an Amazon VPC.
    VPCRegion1:
      title: VPCRegion1
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - ap-east-1
      - me-south-1
      - us-gov-west-1
      - us-gov-east-1
      - us-iso-east-1
      - us-isob-east-1
      - ap-southeast-1
      - ap-southeast-2
      - ap-south-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - eu-north-1
      - sa-east-1
      - ca-central-1
      - cn-north-1
      - af-south-1
      - eu-south-1
      type: string
      description: (Private hosted zones only) The region that an Amazon VPC was created in.
      example: us-east-1
    Content-Type:
      title: Content-Type
      enum:
      - text/xml
      type: string
      example: text/xml
  securitySchemes:
    hmac:
      type: apiKey
      description: Amazon Signature authorization v4
      name: Authorization
      in: header
security:
- hmac: []
tags: []
externalDocs:
  description: Amazon Web Services documentation
  url: https://docs.aws.amazon.com/route53/