aws-sdk-route53 1.0.0.rc2 → 1.0.0.rc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +153 -105
- data/lib/aws-sdk-route53/client_api.rb +2 -0
- data/lib/aws-sdk-route53/types.rb +394 -161
- metadata +2 -2
| @@ -1113,6 +1113,7 @@ module Aws::Route53 | |
| 1113 1113 | 
             
                      }
         | 
| 1114 1114 | 
             
                    )
         | 
| 1115 1115 | 
             
                    o.output = Shapes::ShapeRef.new(shape: CreateVPCAssociationAuthorizationResponse)
         | 
| 1116 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ConcurrentModification)
         | 
| 1116 1117 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: TooManyVPCAssociationAuthorizations)
         | 
| 1117 1118 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
         | 
| 1118 1119 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InvalidVPCId)
         | 
| @@ -1189,6 +1190,7 @@ module Aws::Route53 | |
| 1189 1190 | 
             
                      }
         | 
| 1190 1191 | 
             
                    )
         | 
| 1191 1192 | 
             
                    o.output = Shapes::ShapeRef.new(shape: DeleteVPCAssociationAuthorizationResponse)
         | 
| 1193 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ConcurrentModification)
         | 
| 1192 1194 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: VPCAssociationAuthorizationNotFound)
         | 
| 1193 1195 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
         | 
| 1194 1196 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InvalidVPCId)
         | 
| @@ -26,8 +26,8 @@ module Aws::Route53 | |
| 26 26 | 
             
                #   health check is healthy.
         | 
| 27 27 | 
             
                #
         | 
| 28 28 | 
             
                #   For the current list of CloudWatch regions, see [Amazon
         | 
| 29 | 
            -
                #   CloudWatch][1] in *AWS Regions and Endpoints*  | 
| 30 | 
            -
                #   Services General Reference*.
         | 
| 29 | 
            +
                #   CloudWatch][1] in the *AWS Regions and Endpoints* chapter of the
         | 
| 30 | 
            +
                #   *Amazon Web Services General Reference*.
         | 
| 31 31 | 
             
                #
         | 
| 32 32 | 
             
                #
         | 
| 33 33 | 
             
                #
         | 
| @@ -40,6 +40,8 @@ module Aws::Route53 | |
| 40 40 | 
             
                #   healthy.
         | 
| 41 41 | 
             
                #   @return [String]
         | 
| 42 42 | 
             
                #
         | 
| 43 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AlarmIdentifier AWS API Documentation
         | 
| 44 | 
            +
                #
         | 
| 43 45 | 
             
                class AlarmIdentifier < Struct.new(
         | 
| 44 46 | 
             
                  :region,
         | 
| 45 47 | 
             
                  :name)
         | 
| @@ -49,7 +51,7 @@ module Aws::Route53 | |
| 49 51 | 
             
                # *Alias resource record sets only:* Information about the CloudFront
         | 
| 50 52 | 
             
                # distribution, Elastic Beanstalk environment, ELB load balancer, Amazon
         | 
| 51 53 | 
             
                # S3 bucket, or Amazon Route 53 resource record set that you're
         | 
| 52 | 
            -
                # redirecting queries to.  | 
| 54 | 
            +
                # redirecting queries to. An Elastic Beanstalk environment must have a
         | 
| 53 55 | 
             
                # regionalized subdomain.
         | 
| 54 56 | 
             
                #
         | 
| 55 57 | 
             
                # When creating resource record sets for a private hosted zone, note the
         | 
| @@ -80,9 +82,9 @@ module Aws::Route53 | |
| 80 82 | 
             
                #
         | 
| 81 83 | 
             
                # @!attribute [rw] hosted_zone_id
         | 
| 82 84 | 
             
                #   *Alias resource records sets only*\: The value used depends on where
         | 
| 83 | 
            -
                #    | 
| 85 | 
            +
                #   you want to route traffic:
         | 
| 84 86 | 
             
                #
         | 
| 85 | 
            -
                #    | 
| 87 | 
            +
                #   CloudFront distribution
         | 
| 86 88 | 
             
                #
         | 
| 87 89 | 
             
                #   : Specify `Z2FDTNDATAQYW2`.
         | 
| 88 90 | 
             
                #
         | 
| @@ -96,40 +98,43 @@ module Aws::Route53 | |
| 96 98 | 
             
                #   : Specify the hosted zone ID for the region in which you created the
         | 
| 97 99 | 
             
                #     environment. The environment must have a regionalized subdomain.
         | 
| 98 100 | 
             
                #     For a list of regions and the corresponding hosted zone IDs, see
         | 
| 99 | 
            -
                #     [AWS Elastic Beanstalk][1] in the Regions and Endpoints | 
| 100 | 
            -
                #     the *Amazon Web Services General Reference*.
         | 
| 101 | 
            +
                #     [AWS Elastic Beanstalk][1] in the "AWS Regions and Endpoints"
         | 
| 102 | 
            +
                #     chapter of the *Amazon Web Services General Reference*.
         | 
| 101 103 | 
             
                #
         | 
| 102 104 | 
             
                #   ELB load balancer
         | 
| 103 105 | 
             
                #
         | 
| 104 106 | 
             
                #   : Specify the value of the hosted zone ID for the load balancer. Use
         | 
| 105 107 | 
             
                #     the following methods to get the hosted zone ID:
         | 
| 106 108 | 
             
                #
         | 
| 107 | 
            -
                #     *  | 
| 108 | 
            -
                #        | 
| 109 | 
            -
                #        | 
| 110 | 
            -
                #        | 
| 111 | 
            -
                #        | 
| 112 | 
            -
                # | 
| 109 | 
            +
                #     * [Elastic Load Balancing][2] table in the "AWS Regions and
         | 
| 110 | 
            +
                #       Endpoints" chapter of the *Amazon Web Services General
         | 
| 111 | 
            +
                #       Reference*\: Use the value in the "Amazon Route 53 Hosted Zone
         | 
| 112 | 
            +
                #       ID" column that corresponds with the region that you created
         | 
| 113 | 
            +
                #       your load balancer in.
         | 
| 114 | 
            +
                #
         | 
| 115 | 
            +
                #     * **AWS Management Console**\: Go to the Amazon EC2 page, click
         | 
| 116 | 
            +
                #       **Load Balancers** in the navigation pane, select the load
         | 
| 117 | 
            +
                #       balancer, and get the value of the **Hosted zone** field on the
         | 
| 118 | 
            +
                #       **Description** tab.
         | 
| 113 119 | 
             
                #
         | 
| 114 | 
            -
                #     *  | 
| 115 | 
            -
                #       get the value of `CanonicalHostedZoneNameId | 
| 116 | 
            -
                #        | 
| 117 | 
            -
                #       more information, see the applicable guide:
         | 
| 120 | 
            +
                #     * **Elastic Load Balancing API**\: Use `DescribeLoadBalancers` to
         | 
| 121 | 
            +
                #       get the value of `CanonicalHostedZoneNameId`. For more
         | 
| 122 | 
            +
                #       information, see the applicable guide:
         | 
| 118 123 | 
             
                #
         | 
| 119 | 
            -
                #       * Classic Load Balancer: [DescribeLoadBalancers][ | 
| 124 | 
            +
                #       * Classic Load Balancer: [DescribeLoadBalancers][3]
         | 
| 120 125 | 
             
                #
         | 
| 121 | 
            -
                #       * Application Load Balancer: [DescribeLoadBalancers][ | 
| 126 | 
            +
                #       * Application Load Balancer: [DescribeLoadBalancers][4]
         | 
| 122 127 | 
             
                #
         | 
| 123 | 
            -
                #     * AWS CLI | 
| 124 | 
            -
                #       `CanonicalHostedZoneNameID | 
| 125 | 
            -
                #       value of `DNSName` for AliasTarget$DNSName.)
         | 
| 128 | 
            +
                #     * **AWS CLI**\: Use ` describe-load-balancers ` to get the value
         | 
| 129 | 
            +
                #       of `CanonicalHostedZoneNameID`.
         | 
| 126 130 | 
             
                #
         | 
| 127 131 | 
             
                #   An Amazon S3 bucket configured as a static website
         | 
| 128 132 | 
             
                #
         | 
| 129 133 | 
             
                #   : Specify the hosted zone ID for the region that you created the
         | 
| 130 | 
            -
                #     bucket in. For more information about valid values, see the | 
| 131 | 
            -
                #     [Amazon Simple Storage Service Website Endpoints][ | 
| 132 | 
            -
                #     *Amazon Web Services | 
| 134 | 
            +
                #     bucket in. For more information about valid values, see the
         | 
| 135 | 
            +
                #     [Amazon Simple Storage Service Website Endpoints][5] table in the
         | 
| 136 | 
            +
                #     "AWS Regions and Endpoints" chapter of the *Amazon Web Services
         | 
| 137 | 
            +
                #     General Reference*.
         | 
| 133 138 | 
             
                #
         | 
| 134 139 | 
             
                #   Another Amazon Route 53 resource record set in your hosted zone
         | 
| 135 140 | 
             
                #
         | 
| @@ -140,17 +145,20 @@ module Aws::Route53 | |
| 140 145 | 
             
                #
         | 
| 141 146 | 
             
                #
         | 
| 142 147 | 
             
                #   [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region
         | 
| 143 | 
            -
                #   [2]: http://docs.aws.amazon.com/ | 
| 144 | 
            -
                #   [3]: http://docs.aws.amazon.com/elasticloadbalancing/ | 
| 145 | 
            -
                #   [4]: http://docs.aws.amazon.com/ | 
| 148 | 
            +
                #   [2]: http://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region
         | 
| 149 | 
            +
                #   [3]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
         | 
| 150 | 
            +
                #   [4]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
         | 
| 151 | 
            +
                #   [5]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
         | 
| 146 152 | 
             
                #   @return [String]
         | 
| 147 153 | 
             
                #
         | 
| 148 154 | 
             
                # @!attribute [rw] dns_name
         | 
| 149 155 | 
             
                #   *Alias resource record sets only:* The value that you specify
         | 
| 150 156 | 
             
                #   depends on where you want to route queries:
         | 
| 151 157 | 
             
                #
         | 
| 152 | 
            -
                #    | 
| 153 | 
            -
                # | 
| 158 | 
            +
                #   CloudFront distribution
         | 
| 159 | 
            +
                #
         | 
| 160 | 
            +
                #   : Specify the domain name that CloudFront assigned when you created
         | 
| 161 | 
            +
                #     your distribution.
         | 
| 154 162 | 
             
                #
         | 
| 155 163 | 
             
                #     Your CloudFront distribution must include an alternate domain name
         | 
| 156 164 | 
             
                #     that matches the name of the resource record set. For example, if
         | 
| @@ -160,10 +168,11 @@ module Aws::Route53 | |
| 160 168 | 
             
                #     Alternate Domain Names (CNAMEs)][1] in the *Amazon CloudFront
         | 
| 161 169 | 
             
                #     Developer Guide*.
         | 
| 162 170 | 
             
                #
         | 
| 163 | 
            -
                #    | 
| 164 | 
            -
                # | 
| 165 | 
            -
                # | 
| 166 | 
            -
                #      | 
| 171 | 
            +
                #   Elastic Beanstalk environment
         | 
| 172 | 
            +
                #
         | 
| 173 | 
            +
                #   : Specify the `CNAME` attribute for the environment. (The
         | 
| 174 | 
            +
                #     environment must have a regionalized domain name.) You can use the
         | 
| 175 | 
            +
                #     following methods to get the value of the CNAME attribute:
         | 
| 167 176 | 
             
                #
         | 
| 168 177 | 
             
                #     * *AWS Management Console*\: For information about how to get the
         | 
| 169 178 | 
             
                #       value by using the console, see [Using Custom Domains with AWS
         | 
| @@ -180,49 +189,44 @@ module Aws::Route53 | |
| 180 189 | 
             
                #       [describe-environments][4] in the *AWS Command Line Interface
         | 
| 181 190 | 
             
                #       Reference*.
         | 
| 182 191 | 
             
                #
         | 
| 183 | 
            -
                #    | 
| 184 | 
            -
                # | 
| 185 | 
            -
                # | 
| 186 | 
            -
                #      | 
| 187 | 
            -
                #      | 
| 188 | 
            -
                #     CLI, creating the resource record set will fail.
         | 
| 192 | 
            +
                #   ELB load balancer
         | 
| 193 | 
            +
                #
         | 
| 194 | 
            +
                #   : Specify the DNS name that is associated with the load balancer.
         | 
| 195 | 
            +
                #     Get the DNS name by using the AWS Management Console, the ELB API,
         | 
| 196 | 
            +
                #     or the AWS CLI.
         | 
| 189 197 | 
             
                #
         | 
| 190 | 
            -
                #     *  | 
| 198 | 
            +
                #     * **AWS Management Console**\: Go to the EC2 page, choose **Load
         | 
| 191 199 | 
             
                #       Balancers** in the navigation pane, choose the load balancer,
         | 
| 192 200 | 
             
                #       choose the **Description** tab, and get the value of the **DNS
         | 
| 193 201 | 
             
                #       name** field. (If you're routing traffic to a Classic Load
         | 
| 194 | 
            -
                #       Balancer, get the value that begins with **dualstack**.) | 
| 195 | 
            -
                # | 
| 196 | 
            -
                # | 
| 197 | 
            -
                #
         | 
| 198 | 
            -
                #     * *Elastic Load Balancing API*\: Use `DescribeLoadBalancers` to
         | 
| 199 | 
            -
                #       get the value of `DNSName` and `CanonicalHostedZoneNameId`. (You
         | 
| 200 | 
            -
                #       specify the value of `CanonicalHostedZoneNameId` for
         | 
| 201 | 
            -
                #       AliasTarget$HostedZoneId.) For more information, see the
         | 
| 202 | 
            +
                #       Balancer, get the value that begins with **dualstack**.)
         | 
| 203 | 
            +
                #
         | 
| 204 | 
            +
                #     * **Elastic Load Balancing API**\: Use `DescribeLoadBalancers` to
         | 
| 205 | 
            +
                #       get the value of `DNSName`. For more information, see the
         | 
| 202 206 | 
             
                #       applicable guide:
         | 
| 203 207 | 
             
                #
         | 
| 204 208 | 
             
                #       * Classic Load Balancer: [DescribeLoadBalancers][5]
         | 
| 205 209 | 
             
                #
         | 
| 206 210 | 
             
                #       * Application Load Balancer: [DescribeLoadBalancers][6]
         | 
| 207 211 | 
             
                #
         | 
| 208 | 
            -
                #     *  | 
| 209 | 
            -
                #       `DNSName | 
| 210 | 
            -
                # | 
| 211 | 
            -
                # | 
| 212 | 
            +
                #     * **AWS CLI**\: Use ` describe-load-balancers ` to get the value
         | 
| 213 | 
            +
                #       of `DNSName`.
         | 
| 214 | 
            +
                #
         | 
| 215 | 
            +
                #   Amazon S3 bucket that is configured as a static website
         | 
| 212 216 | 
             
                #
         | 
| 213 | 
            -
                #    | 
| 214 | 
            -
                #     Specify the domain name of the Amazon S3 website endpoint in which
         | 
| 217 | 
            +
                #   : Specify the domain name of the Amazon S3 website endpoint in which
         | 
| 215 218 | 
             
                #     you created the bucket, for example,
         | 
| 216 | 
            -
                #     `s3-website-us-east- | 
| 219 | 
            +
                #     `s3-website-us-east-2.amazonaws.com`. For more information about
         | 
| 217 220 | 
             
                #     valid values, see the table [Amazon Simple Storage Service (S3)
         | 
| 218 221 | 
             
                #     Website Endpoints][7] in the *Amazon Web Services General
         | 
| 219 222 | 
             
                #     Reference*. For more information about using S3 buckets for
         | 
| 220 223 | 
             
                #     websites, see [Getting Started with Amazon Route 53][8] in the
         | 
| 221 224 | 
             
                #     *Amazon Route 53 Developer Guide.*
         | 
| 222 225 | 
             
                #
         | 
| 223 | 
            -
                #    | 
| 224 | 
            -
                # | 
| 225 | 
            -
                # | 
| 226 | 
            +
                #   Another Amazon Route 53 resource record set
         | 
| 227 | 
            +
                #
         | 
| 228 | 
            +
                #   : Specify the value of the `Name` element for a resource record set
         | 
| 229 | 
            +
                #     in the current hosted zone.
         | 
| 226 230 | 
             
                #
         | 
| 227 231 | 
             
                #
         | 
| 228 232 | 
             
                #
         | 
| @@ -330,6 +334,8 @@ module Aws::Route53 | |
| 330 334 | 
             
                #   [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
         | 
| 331 335 | 
             
                #   @return [Boolean]
         | 
| 332 336 | 
             
                #
         | 
| 337 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AliasTarget AWS API Documentation
         | 
| 338 | 
            +
                #
         | 
| 333 339 | 
             
                class AliasTarget < Struct.new(
         | 
| 334 340 | 
             
                  :hosted_zone_id,
         | 
| 335 341 | 
             
                  :dns_name,
         | 
| @@ -369,6 +375,8 @@ module Aws::Route53 | |
| 369 375 | 
             
                #   *Optional:* A comment about the association request.
         | 
| 370 376 | 
             
                #   @return [String]
         | 
| 371 377 | 
             
                #
         | 
| 378 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AssociateVPCWithHostedZoneRequest AWS API Documentation
         | 
| 379 | 
            +
                #
         | 
| 372 380 | 
             
                class AssociateVPCWithHostedZoneRequest < Struct.new(
         | 
| 373 381 | 
             
                  :hosted_zone_id,
         | 
| 374 382 | 
             
                  :vpc,
         | 
| @@ -383,6 +391,8 @@ module Aws::Route53 | |
| 383 391 | 
             
                #   A complex type that describes the changes made to your hosted zone.
         | 
| 384 392 | 
             
                #   @return [Types::ChangeInfo]
         | 
| 385 393 | 
             
                #
         | 
| 394 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AssociateVPCWithHostedZoneResponse AWS API Documentation
         | 
| 395 | 
            +
                #
         | 
| 386 396 | 
             
                class AssociateVPCWithHostedZoneResponse < Struct.new(
         | 
| 387 397 | 
             
                  :change_info)
         | 
| 388 398 | 
             
                  include Aws::Structure
         | 
| @@ -486,6 +496,8 @@ module Aws::Route53 | |
| 486 496 | 
             
                #   update.
         | 
| 487 497 | 
             
                #   @return [Types::ResourceRecordSet]
         | 
| 488 498 | 
             
                #
         | 
| 499 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/Change AWS API Documentation
         | 
| 500 | 
            +
                #
         | 
| 489 501 | 
             
                class Change < Struct.new(
         | 
| 490 502 | 
             
                  :action,
         | 
| 491 503 | 
             
                  :resource_record_set)
         | 
| @@ -541,6 +553,8 @@ module Aws::Route53 | |
| 541 553 | 
             
                #   Information about the changes to make to the record sets.
         | 
| 542 554 | 
             
                #   @return [Array<Types::Change>]
         | 
| 543 555 | 
             
                #
         | 
| 556 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeBatch AWS API Documentation
         | 
| 557 | 
            +
                #
         | 
| 544 558 | 
             
                class ChangeBatch < Struct.new(
         | 
| 545 559 | 
             
                  :comment,
         | 
| 546 560 | 
             
                  :changes)
         | 
| @@ -577,6 +591,8 @@ module Aws::Route53 | |
| 577 591 | 
             
                #   action to get detailed information about the change.
         | 
| 578 592 | 
             
                #   @return [String]
         | 
| 579 593 | 
             
                #
         | 
| 594 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeInfo AWS API Documentation
         | 
| 595 | 
            +
                #
         | 
| 580 596 | 
             
                class ChangeInfo < Struct.new(
         | 
| 581 597 | 
             
                  :id,
         | 
| 582 598 | 
             
                  :status,
         | 
| @@ -639,6 +655,8 @@ module Aws::Route53 | |
| 639 655 | 
             
                #   element.
         | 
| 640 656 | 
             
                #   @return [Types::ChangeBatch]
         | 
| 641 657 | 
             
                #
         | 
| 658 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeResourceRecordSetsRequest AWS API Documentation
         | 
| 659 | 
            +
                #
         | 
| 642 660 | 
             
                class ChangeResourceRecordSetsRequest < Struct.new(
         | 
| 643 661 | 
             
                  :hosted_zone_id,
         | 
| 644 662 | 
             
                  :change_batch)
         | 
| @@ -655,6 +673,8 @@ module Aws::Route53 | |
| 655 673 | 
             
                #   action to get detailed information about the change.
         | 
| 656 674 | 
             
                #   @return [Types::ChangeInfo]
         | 
| 657 675 | 
             
                #
         | 
| 676 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeResourceRecordSetsResponse AWS API Documentation
         | 
| 677 | 
            +
                #
         | 
| 658 678 | 
             
                class ChangeResourceRecordSetsResponse < Struct.new(
         | 
| 659 679 | 
             
                  :change_info)
         | 
| 660 680 | 
             
                  include Aws::Structure
         | 
| @@ -705,6 +725,8 @@ module Aws::Route53 | |
| 705 725 | 
             
                #   specify up to 10 keys.
         | 
| 706 726 | 
             
                #   @return [Array<String>]
         | 
| 707 727 | 
             
                #
         | 
| 728 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeTagsForResourceRequest AWS API Documentation
         | 
| 729 | 
            +
                #
         | 
| 708 730 | 
             
                class ChangeTagsForResourceRequest < Struct.new(
         | 
| 709 731 | 
             
                  :resource_type,
         | 
| 710 732 | 
             
                  :resource_id,
         | 
| @@ -715,6 +737,8 @@ module Aws::Route53 | |
| 715 737 |  | 
| 716 738 | 
             
                # Empty response for the request.
         | 
| 717 739 | 
             
                #
         | 
| 740 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeTagsForResourceResponse AWS API Documentation
         | 
| 741 | 
            +
                #
         | 
| 718 742 | 
             
                class ChangeTagsForResourceResponse < Aws::EmptyStructure; end
         | 
| 719 743 |  | 
| 720 744 | 
             
                # A complex type that contains information about the CloudWatch alarm
         | 
| @@ -763,11 +787,16 @@ module Aws::Route53 | |
| 763 787 | 
             
                #   For the metric that the CloudWatch alarm is associated with, a
         | 
| 764 788 | 
             
                #   complex type that contains information about the dimensions for the
         | 
| 765 789 | 
             
                #   metric.For information, see [Amazon CloudWatch Namespaces,
         | 
| 766 | 
            -
                #   Dimensions, and Metrics Reference] | 
| 767 | 
            -
                #    | 
| 768 | 
            -
                # | 
| 790 | 
            +
                #   Dimensions, and Metrics Reference][1] in the *Amazon CloudWatch User
         | 
| 791 | 
            +
                #   Guide*.
         | 
| 792 | 
            +
                #
         | 
| 793 | 
            +
                #
         | 
| 794 | 
            +
                #
         | 
| 795 | 
            +
                #   [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html
         | 
| 769 796 | 
             
                #   @return [Array<Types::Dimension>]
         | 
| 770 797 | 
             
                #
         | 
| 798 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CloudWatchAlarmConfiguration AWS API Documentation
         | 
| 799 | 
            +
                #
         | 
| 771 800 | 
             
                class CloudWatchAlarmConfiguration < Struct.new(
         | 
| 772 801 | 
             
                  :evaluation_periods,
         | 
| 773 802 | 
             
                  :threshold,
         | 
| @@ -822,6 +851,8 @@ module Aws::Route53 | |
| 822 851 | 
             
                #   request.
         | 
| 823 852 | 
             
                #   @return [Types::HealthCheckConfig]
         | 
| 824 853 | 
             
                #
         | 
| 854 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHealthCheckRequest AWS API Documentation
         | 
| 855 | 
            +
                #
         | 
| 825 856 | 
             
                class CreateHealthCheckRequest < Struct.new(
         | 
| 826 857 | 
             
                  :caller_reference,
         | 
| 827 858 | 
             
                  :health_check_config)
         | 
| @@ -840,6 +871,8 @@ module Aws::Route53 | |
| 840 871 | 
             
                #   The unique URL representing the new health check.
         | 
| 841 872 | 
             
                #   @return [String]
         | 
| 842 873 | 
             
                #
         | 
| 874 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHealthCheckResponse AWS API Documentation
         | 
| 875 | 
            +
                #
         | 
| 843 876 | 
             
                class CreateHealthCheckResponse < Struct.new(
         | 
| 844 877 | 
             
                  :health_check,
         | 
| 845 878 | 
             
                  :location)
         | 
| @@ -920,6 +953,8 @@ module Aws::Route53 | |
| 920 953 | 
             
                #   : `CreatedHostedZoneRequest`
         | 
| 921 954 | 
             
                #   @return [String]
         | 
| 922 955 | 
             
                #
         | 
| 956 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHostedZoneRequest AWS API Documentation
         | 
| 957 | 
            +
                #
         | 
| 923 958 | 
             
                class CreateHostedZoneRequest < Struct.new(
         | 
| 924 959 | 
             
                  :name,
         | 
| 925 960 | 
             
                  :vpc,
         | 
| @@ -954,6 +989,8 @@ module Aws::Route53 | |
| 954 989 | 
             
                #   The unique URL representing the new hosted zone.
         | 
| 955 990 | 
             
                #   @return [String]
         | 
| 956 991 | 
             
                #
         | 
| 992 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHostedZoneResponse AWS API Documentation
         | 
| 993 | 
            +
                #
         | 
| 957 994 | 
             
                class CreateHostedZoneResponse < Struct.new(
         | 
| 958 995 | 
             
                  :hosted_zone,
         | 
| 959 996 | 
             
                  :change_info,
         | 
| @@ -985,6 +1022,8 @@ module Aws::Route53 | |
| 985 1022 | 
             
                #   as reusable, the ID for that hosted zone.
         | 
| 986 1023 | 
             
                #   @return [String]
         | 
| 987 1024 | 
             
                #
         | 
| 1025 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateReusableDelegationSetRequest AWS API Documentation
         | 
| 1026 | 
            +
                #
         | 
| 988 1027 | 
             
                class CreateReusableDelegationSetRequest < Struct.new(
         | 
| 989 1028 | 
             
                  :caller_reference,
         | 
| 990 1029 | 
             
                  :hosted_zone_id)
         | 
| @@ -999,6 +1038,8 @@ module Aws::Route53 | |
| 999 1038 | 
             
                #   The unique URL representing the new reusable delegation set.
         | 
| 1000 1039 | 
             
                #   @return [String]
         | 
| 1001 1040 | 
             
                #
         | 
| 1041 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateReusableDelegationSetResponse AWS API Documentation
         | 
| 1042 | 
            +
                #
         | 
| 1002 1043 | 
             
                class CreateReusableDelegationSetResponse < Struct.new(
         | 
| 1003 1044 | 
             
                  :delegation_set,
         | 
| 1004 1045 | 
             
                  :location)
         | 
| @@ -1048,6 +1089,8 @@ module Aws::Route53 | |
| 1048 1089 | 
             
                #   resource record sets in the specified hosted zone.
         | 
| 1049 1090 | 
             
                #   @return [Integer]
         | 
| 1050 1091 | 
             
                #
         | 
| 1092 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyInstanceRequest AWS API Documentation
         | 
| 1093 | 
            +
                #
         | 
| 1051 1094 | 
             
                class CreateTrafficPolicyInstanceRequest < Struct.new(
         | 
| 1052 1095 | 
             
                  :hosted_zone_id,
         | 
| 1053 1096 | 
             
                  :name,
         | 
| @@ -1069,6 +1112,8 @@ module Aws::Route53 | |
| 1069 1112 | 
             
                #   A unique URL that represents a new traffic policy instance.
         | 
| 1070 1113 | 
             
                #   @return [String]
         | 
| 1071 1114 | 
             
                #
         | 
| 1115 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyInstanceResponse AWS API Documentation
         | 
| 1116 | 
            +
                #
         | 
| 1072 1117 | 
             
                class CreateTrafficPolicyInstanceResponse < Struct.new(
         | 
| 1073 1118 | 
             
                  :traffic_policy_instance,
         | 
| 1074 1119 | 
             
                  :location)
         | 
| @@ -1105,6 +1150,8 @@ module Aws::Route53 | |
| 1105 1150 | 
             
                #   policy.
         | 
| 1106 1151 | 
             
                #   @return [String]
         | 
| 1107 1152 | 
             
                #
         | 
| 1153 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyRequest AWS API Documentation
         | 
| 1154 | 
            +
                #
         | 
| 1108 1155 | 
             
                class CreateTrafficPolicyRequest < Struct.new(
         | 
| 1109 1156 | 
             
                  :name,
         | 
| 1110 1157 | 
             
                  :document,
         | 
| @@ -1123,6 +1170,8 @@ module Aws::Route53 | |
| 1123 1170 | 
             
                #   A unique URL that represents a new traffic policy.
         | 
| 1124 1171 | 
             
                #   @return [String]
         | 
| 1125 1172 | 
             
                #
         | 
| 1173 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyResponse AWS API Documentation
         | 
| 1174 | 
            +
                #
         | 
| 1126 1175 | 
             
                class CreateTrafficPolicyResponse < Struct.new(
         | 
| 1127 1176 | 
             
                  :traffic_policy,
         | 
| 1128 1177 | 
             
                  :location)
         | 
| @@ -1158,6 +1207,8 @@ module Aws::Route53 | |
| 1158 1207 | 
             
                #   request, if any.
         | 
| 1159 1208 | 
             
                #   @return [String]
         | 
| 1160 1209 | 
             
                #
         | 
| 1210 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyVersionRequest AWS API Documentation
         | 
| 1211 | 
            +
                #
         | 
| 1161 1212 | 
             
                class CreateTrafficPolicyVersionRequest < Struct.new(
         | 
| 1162 1213 | 
             
                  :id,
         | 
| 1163 1214 | 
             
                  :document,
         | 
| @@ -1177,6 +1228,8 @@ module Aws::Route53 | |
| 1177 1228 | 
             
                #   A unique URL that represents a new traffic policy version.
         | 
| 1178 1229 | 
             
                #   @return [String]
         | 
| 1179 1230 | 
             
                #
         | 
| 1231 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyVersionResponse AWS API Documentation
         | 
| 1232 | 
            +
                #
         | 
| 1180 1233 | 
             
                class CreateTrafficPolicyVersionResponse < Struct.new(
         | 
| 1181 1234 | 
             
                  :traffic_policy,
         | 
| 1182 1235 | 
             
                  :location)
         | 
| @@ -1209,6 +1262,8 @@ module Aws::Route53 | |
| 1209 1262 | 
             
                #   you want to authorize associating with your hosted zone.
         | 
| 1210 1263 | 
             
                #   @return [Types::VPC]
         | 
| 1211 1264 | 
             
                #
         | 
| 1265 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorizationRequest AWS API Documentation
         | 
| 1266 | 
            +
                #
         | 
| 1212 1267 | 
             
                class CreateVPCAssociationAuthorizationRequest < Struct.new(
         | 
| 1213 1268 | 
             
                  :hosted_zone_id,
         | 
| 1214 1269 | 
             
                  :vpc)
         | 
| @@ -1216,7 +1271,7 @@ module Aws::Route53 | |
| 1216 1271 | 
             
                end
         | 
| 1217 1272 |  | 
| 1218 1273 | 
             
                # A complex type that contains the response information from a
         | 
| 1219 | 
            -
                # CreateVPCAssociationAuthorization request.
         | 
| 1274 | 
            +
                # `CreateVPCAssociationAuthorization` request.
         | 
| 1220 1275 | 
             
                #
         | 
| 1221 1276 | 
             
                # @!attribute [rw] hosted_zone_id
         | 
| 1222 1277 | 
             
                #   The ID of the hosted zone that you authorized associating a VPC
         | 
| @@ -1227,6 +1282,8 @@ module Aws::Route53 | |
| 1227 1282 | 
             
                #   The VPC that you authorized associating with a hosted zone.
         | 
| 1228 1283 | 
             
                #   @return [Types::VPC]
         | 
| 1229 1284 | 
             
                #
         | 
| 1285 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorizationResponse AWS API Documentation
         | 
| 1286 | 
            +
                #
         | 
| 1230 1287 | 
             
                class CreateVPCAssociationAuthorizationResponse < Struct.new(
         | 
| 1231 1288 | 
             
                  :hosted_zone_id,
         | 
| 1232 1289 | 
             
                  :vpc)
         | 
| @@ -1253,6 +1310,8 @@ module Aws::Route53 | |
| 1253 1310 | 
             
                #   servers for the hosted zone.
         | 
| 1254 1311 | 
             
                #   @return [Array<String>]
         | 
| 1255 1312 | 
             
                #
         | 
| 1313 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSet AWS API Documentation
         | 
| 1314 | 
            +
                #
         | 
| 1256 1315 | 
             
                class DelegationSet < Struct.new(
         | 
| 1257 1316 | 
             
                  :id,
         | 
| 1258 1317 | 
             
                  :caller_reference,
         | 
| @@ -1274,6 +1333,8 @@ module Aws::Route53 | |
| 1274 1333 | 
             
                #   The ID of the health check that you want to delete.
         | 
| 1275 1334 | 
             
                #   @return [String]
         | 
| 1276 1335 | 
             
                #
         | 
| 1336 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteHealthCheckRequest AWS API Documentation
         | 
| 1337 | 
            +
                #
         | 
| 1277 1338 | 
             
                class DeleteHealthCheckRequest < Struct.new(
         | 
| 1278 1339 | 
             
                  :health_check_id)
         | 
| 1279 1340 | 
             
                  include Aws::Structure
         | 
| @@ -1281,6 +1342,8 @@ module Aws::Route53 | |
| 1281 1342 |  | 
| 1282 1343 | 
             
                # An empty element.
         | 
| 1283 1344 | 
             
                #
         | 
| 1345 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteHealthCheckResponse AWS API Documentation
         | 
| 1346 | 
            +
                #
         | 
| 1284 1347 | 
             
                class DeleteHealthCheckResponse < Aws::EmptyStructure; end
         | 
| 1285 1348 |  | 
| 1286 1349 | 
             
                # A complex type that contains information about the hosted zone that
         | 
| @@ -1297,6 +1360,8 @@ module Aws::Route53 | |
| 1297 1360 | 
             
                #   The ID of the hosted zone you want to delete.
         | 
| 1298 1361 | 
             
                #   @return [String]
         | 
| 1299 1362 | 
             
                #
         | 
| 1363 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteHostedZoneRequest AWS API Documentation
         | 
| 1364 | 
            +
                #
         | 
| 1300 1365 | 
             
                class DeleteHostedZoneRequest < Struct.new(
         | 
| 1301 1366 | 
             
                  :id)
         | 
| 1302 1367 | 
             
                  include Aws::Structure
         | 
| @@ -1309,6 +1374,8 @@ module Aws::Route53 | |
| 1309 1374 | 
             
                #   time of your delete request.
         | 
| 1310 1375 | 
             
                #   @return [Types::ChangeInfo]
         | 
| 1311 1376 | 
             
                #
         | 
| 1377 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteHostedZoneResponse AWS API Documentation
         | 
| 1378 | 
            +
                #
         | 
| 1312 1379 | 
             
                class DeleteHostedZoneResponse < Struct.new(
         | 
| 1313 1380 | 
             
                  :change_info)
         | 
| 1314 1381 | 
             
                  include Aws::Structure
         | 
| @@ -1327,6 +1394,8 @@ module Aws::Route53 | |
| 1327 1394 | 
             
                #   The ID of the reusable delegation set you want to delete.
         | 
| 1328 1395 | 
             
                #   @return [String]
         | 
| 1329 1396 | 
             
                #
         | 
| 1397 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteReusableDelegationSetRequest AWS API Documentation
         | 
| 1398 | 
            +
                #
         | 
| 1330 1399 | 
             
                class DeleteReusableDelegationSetRequest < Struct.new(
         | 
| 1331 1400 | 
             
                  :id)
         | 
| 1332 1401 | 
             
                  include Aws::Structure
         | 
| @@ -1334,6 +1403,8 @@ module Aws::Route53 | |
| 1334 1403 |  | 
| 1335 1404 | 
             
                # An empty element.
         | 
| 1336 1405 | 
             
                #
         | 
| 1406 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteReusableDelegationSetResponse AWS API Documentation
         | 
| 1407 | 
            +
                #
         | 
| 1337 1408 | 
             
                class DeleteReusableDelegationSetResponse < Aws::EmptyStructure; end
         | 
| 1338 1409 |  | 
| 1339 1410 | 
             
                # A complex type that contains information about the traffic policy
         | 
| @@ -1354,6 +1425,8 @@ module Aws::Route53 | |
| 1354 1425 | 
             
                #   created the traffic policy instance.
         | 
| 1355 1426 | 
             
                #   @return [String]
         | 
| 1356 1427 | 
             
                #
         | 
| 1428 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteTrafficPolicyInstanceRequest AWS API Documentation
         | 
| 1429 | 
            +
                #
         | 
| 1357 1430 | 
             
                class DeleteTrafficPolicyInstanceRequest < Struct.new(
         | 
| 1358 1431 | 
             
                  :id)
         | 
| 1359 1432 | 
             
                  include Aws::Structure
         | 
| @@ -1361,6 +1434,8 @@ module Aws::Route53 | |
| 1361 1434 |  | 
| 1362 1435 | 
             
                # An empty element.
         | 
| 1363 1436 | 
             
                #
         | 
| 1437 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteTrafficPolicyInstanceResponse AWS API Documentation
         | 
| 1438 | 
            +
                #
         | 
| 1364 1439 | 
             
                class DeleteTrafficPolicyInstanceResponse < Aws::EmptyStructure; end
         | 
| 1365 1440 |  | 
| 1366 1441 | 
             
                # A request to delete a specified traffic policy version.
         | 
| @@ -1381,6 +1456,8 @@ module Aws::Route53 | |
| 1381 1456 | 
             
                #   The version number of the traffic policy that you want to delete.
         | 
| 1382 1457 | 
             
                #   @return [Integer]
         | 
| 1383 1458 | 
             
                #
         | 
| 1459 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteTrafficPolicyRequest AWS API Documentation
         | 
| 1460 | 
            +
                #
         | 
| 1384 1461 | 
             
                class DeleteTrafficPolicyRequest < Struct.new(
         | 
| 1385 1462 | 
             
                  :id,
         | 
| 1386 1463 | 
             
                  :version)
         | 
| @@ -1389,6 +1466,8 @@ module Aws::Route53 | |
| 1389 1466 |  | 
| 1390 1467 | 
             
                # An empty element.
         | 
| 1391 1468 | 
             
                #
         | 
| 1469 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteTrafficPolicyResponse AWS API Documentation
         | 
| 1470 | 
            +
                #
         | 
| 1392 1471 | 
             
                class DeleteTrafficPolicyResponse < Aws::EmptyStructure; end
         | 
| 1393 1472 |  | 
| 1394 1473 | 
             
                # A complex type that contains information about the request to remove
         | 
| @@ -1419,6 +1498,8 @@ module Aws::Route53 | |
| 1419 1498 | 
             
                #   VPC.
         | 
| 1420 1499 | 
             
                #   @return [Types::VPC]
         | 
| 1421 1500 | 
             
                #
         | 
| 1501 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteVPCAssociationAuthorizationRequest AWS API Documentation
         | 
| 1502 | 
            +
                #
         | 
| 1422 1503 | 
             
                class DeleteVPCAssociationAuthorizationRequest < Struct.new(
         | 
| 1423 1504 | 
             
                  :hosted_zone_id,
         | 
| 1424 1505 | 
             
                  :vpc)
         | 
| @@ -1427,6 +1508,8 @@ module Aws::Route53 | |
| 1427 1508 |  | 
| 1428 1509 | 
             
                # Empty response for the request.
         | 
| 1429 1510 | 
             
                #
         | 
| 1511 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteVPCAssociationAuthorizationResponse AWS API Documentation
         | 
| 1512 | 
            +
                #
         | 
| 1430 1513 | 
             
                class DeleteVPCAssociationAuthorizationResponse < Aws::EmptyStructure; end
         | 
| 1431 1514 |  | 
| 1432 1515 | 
             
                # For the metric that the CloudWatch alarm is associated with, a complex
         | 
| @@ -1442,6 +1525,8 @@ module Aws::Route53 | |
| 1442 1525 | 
             
                #   value of one dimension.
         | 
| 1443 1526 | 
             
                #   @return [String]
         | 
| 1444 1527 | 
             
                #
         | 
| 1528 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/Dimension AWS API Documentation
         | 
| 1529 | 
            +
                #
         | 
| 1445 1530 | 
             
                class Dimension < Struct.new(
         | 
| 1446 1531 | 
             
                  :name,
         | 
| 1447 1532 | 
             
                  :value)
         | 
| @@ -1477,6 +1562,8 @@ module Aws::Route53 | |
| 1477 1562 | 
             
                #   *Optional:* A comment about the disassociation request.
         | 
| 1478 1563 | 
             
                #   @return [String]
         | 
| 1479 1564 | 
             
                #
         | 
| 1565 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisassociateVPCFromHostedZoneRequest AWS API Documentation
         | 
| 1566 | 
            +
                #
         | 
| 1480 1567 | 
             
                class DisassociateVPCFromHostedZoneRequest < Struct.new(
         | 
| 1481 1568 | 
             
                  :hosted_zone_id,
         | 
| 1482 1569 | 
             
                  :vpc,
         | 
| @@ -1492,6 +1579,8 @@ module Aws::Route53 | |
| 1492 1579 | 
             
                #   private hosted zone.
         | 
| 1493 1580 | 
             
                #   @return [Types::ChangeInfo]
         | 
| 1494 1581 | 
             
                #
         | 
| 1582 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisassociateVPCFromHostedZoneResponse AWS API Documentation
         | 
| 1583 | 
            +
                #
         | 
| 1495 1584 | 
             
                class DisassociateVPCFromHostedZoneResponse < Struct.new(
         | 
| 1496 1585 | 
             
                  :change_info)
         | 
| 1497 1586 | 
             
                  include Aws::Structure
         | 
| @@ -1526,6 +1615,8 @@ module Aws::Route53 | |
| 1526 1615 | 
             
                #   States or a province in Canada.
         | 
| 1527 1616 | 
             
                #   @return [String]
         | 
| 1528 1617 | 
             
                #
         | 
| 1618 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GeoLocation AWS API Documentation
         | 
| 1619 | 
            +
                #
         | 
| 1529 1620 | 
             
                class GeoLocation < Struct.new(
         | 
| 1530 1621 | 
             
                  :continent_code,
         | 
| 1531 1622 | 
             
                  :country_code,
         | 
| @@ -1562,6 +1653,8 @@ module Aws::Route53 | |
| 1562 1653 | 
             
                #   States or a province in Canada.
         | 
| 1563 1654 | 
             
                #   @return [String]
         | 
| 1564 1655 | 
             
                #
         | 
| 1656 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GeoLocationDetails AWS API Documentation
         | 
| 1657 | 
            +
                #
         | 
| 1565 1658 | 
             
                class GeoLocationDetails < Struct.new(
         | 
| 1566 1659 | 
             
                  :continent_code,
         | 
| 1567 1660 | 
             
                  :continent_name,
         | 
| @@ -1587,6 +1680,8 @@ module Aws::Route53 | |
| 1587 1680 | 
             
                #   element when you submitted the request.
         | 
| 1588 1681 | 
             
                #   @return [String]
         | 
| 1589 1682 | 
             
                #
         | 
| 1683 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetChangeRequest AWS API Documentation
         | 
| 1684 | 
            +
                #
         | 
| 1590 1685 | 
             
                class GetChangeRequest < Struct.new(
         | 
| 1591 1686 | 
             
                  :id)
         | 
| 1592 1687 | 
             
                  include Aws::Structure
         | 
| @@ -1599,24 +1694,24 @@ module Aws::Route53 | |
| 1599 1694 | 
             
                #   batch.
         | 
| 1600 1695 | 
             
                #   @return [Types::ChangeInfo]
         | 
| 1601 1696 | 
             
                #
         | 
| 1697 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetChangeResponse AWS API Documentation
         | 
| 1698 | 
            +
                #
         | 
| 1602 1699 | 
             
                class GetChangeResponse < Struct.new(
         | 
| 1603 1700 | 
             
                  :change_info)
         | 
| 1604 1701 | 
             
                  include Aws::Structure
         | 
| 1605 1702 | 
             
                end
         | 
| 1606 1703 |  | 
| 1607 | 
            -
                # Empty request.
         | 
| 1608 | 
            -
                #
         | 
| 1609 1704 | 
             
                # @api private
         | 
| 1610 1705 | 
             
                #
         | 
| 1706 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetCheckerIpRangesRequest AWS API Documentation
         | 
| 1707 | 
            +
                #
         | 
| 1611 1708 | 
             
                class GetCheckerIpRangesRequest < Aws::EmptyStructure; end
         | 
| 1612 1709 |  | 
| 1613 | 
            -
                # A complex type that contains the `CheckerIpRanges` element.
         | 
| 1614 | 
            -
                #
         | 
| 1615 1710 | 
             
                # @!attribute [rw] checker_ip_ranges
         | 
| 1616 | 
            -
                #   A complex type that contains sorted list of IP ranges in CIDR format
         | 
| 1617 | 
            -
                #   for Amazon Route 53 health checkers.
         | 
| 1618 1711 | 
             
                #   @return [Array<String>]
         | 
| 1619 1712 | 
             
                #
         | 
| 1713 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetCheckerIpRangesResponse AWS API Documentation
         | 
| 1714 | 
            +
                #
         | 
| 1620 1715 | 
             
                class GetCheckerIpRangesResponse < Struct.new(
         | 
| 1621 1716 | 
             
                  :checker_ip_ranges)
         | 
| 1622 1717 | 
             
                  include Aws::Structure
         | 
| @@ -1672,6 +1767,8 @@ module Aws::Route53 | |
| 1672 1767 | 
             
                #   [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
         | 
| 1673 1768 | 
             
                #   @return [String]
         | 
| 1674 1769 | 
             
                #
         | 
| 1770 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetGeoLocationRequest AWS API Documentation
         | 
| 1771 | 
            +
                #
         | 
| 1675 1772 | 
             
                class GetGeoLocationRequest < Struct.new(
         | 
| 1676 1773 | 
             
                  :continent_code,
         | 
| 1677 1774 | 
             
                  :country_code,
         | 
| @@ -1687,6 +1784,8 @@ module Aws::Route53 | |
| 1687 1784 | 
             
                #   and subdivision names for the specified geolocation code.
         | 
| 1688 1785 | 
             
                #   @return [Types::GeoLocationDetails]
         | 
| 1689 1786 | 
             
                #
         | 
| 1787 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetGeoLocationResponse AWS API Documentation
         | 
| 1788 | 
            +
                #
         | 
| 1690 1789 | 
             
                class GetGeoLocationResponse < Struct.new(
         | 
| 1691 1790 | 
             
                  :geo_location_details)
         | 
| 1692 1791 | 
             
                  include Aws::Structure
         | 
| @@ -1697,6 +1796,8 @@ module Aws::Route53 | |
| 1697 1796 | 
             
                #
         | 
| 1698 1797 | 
             
                # @api private
         | 
| 1699 1798 | 
             
                #
         | 
| 1799 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckCountRequest AWS API Documentation
         | 
| 1800 | 
            +
                #
         | 
| 1700 1801 | 
             
                class GetHealthCheckCountRequest < Aws::EmptyStructure; end
         | 
| 1701 1802 |  | 
| 1702 1803 | 
             
                # A complex type that contains the response to a `healthcheckcount`
         | 
| @@ -1706,6 +1807,8 @@ module Aws::Route53 | |
| 1706 1807 | 
             
                #   The number of health checks associated with the current AWS account.
         | 
| 1707 1808 | 
             
                #   @return [Integer]
         | 
| 1708 1809 | 
             
                #
         | 
| 1810 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckCountResponse AWS API Documentation
         | 
| 1811 | 
            +
                #
         | 
| 1709 1812 | 
             
                class GetHealthCheckCountResponse < Struct.new(
         | 
| 1710 1813 | 
             
                  :health_check_count)
         | 
| 1711 1814 | 
             
                  include Aws::Structure
         | 
| @@ -1740,6 +1843,8 @@ module Aws::Route53 | |
| 1740 1843 | 
             
                #   returned the ID in the response, in the `HealthCheckId` element.
         | 
| 1741 1844 | 
             
                #   @return [String]
         | 
| 1742 1845 | 
             
                #
         | 
| 1846 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckLastFailureReasonRequest AWS API Documentation
         | 
| 1847 | 
            +
                #
         | 
| 1743 1848 | 
             
                class GetHealthCheckLastFailureReasonRequest < Struct.new(
         | 
| 1744 1849 | 
             
                  :health_check_id)
         | 
| 1745 1850 | 
             
                  include Aws::Structure
         | 
| @@ -1753,6 +1858,8 @@ module Aws::Route53 | |
| 1753 1858 | 
             
                #   53 health checker that is reporting a last failure reason.
         | 
| 1754 1859 | 
             
                #   @return [Array<Types::HealthCheckObservation>]
         | 
| 1755 1860 | 
             
                #
         | 
| 1861 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckLastFailureReasonResponse AWS API Documentation
         | 
| 1862 | 
            +
                #
         | 
| 1756 1863 | 
             
                class GetHealthCheckLastFailureReasonResponse < Struct.new(
         | 
| 1757 1864 | 
             
                  :health_check_observations)
         | 
| 1758 1865 | 
             
                  include Aws::Structure
         | 
| @@ -1785,6 +1892,8 @@ module Aws::Route53 | |
| 1785 1892 | 
             
                #   can be up to 64 characters long.
         | 
| 1786 1893 | 
             
                #   @return [String]
         | 
| 1787 1894 | 
             
                #
         | 
| 1895 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckRequest AWS API Documentation
         | 
| 1896 | 
            +
                #
         | 
| 1788 1897 | 
             
                class GetHealthCheckRequest < Struct.new(
         | 
| 1789 1898 | 
             
                  :health_check_id)
         | 
| 1790 1899 | 
             
                  include Aws::Structure
         | 
| @@ -1798,6 +1907,8 @@ module Aws::Route53 | |
| 1798 1907 | 
             
                #   is associated with the current AWS account.
         | 
| 1799 1908 | 
             
                #   @return [Types::HealthCheck]
         | 
| 1800 1909 | 
             
                #
         | 
| 1910 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckResponse AWS API Documentation
         | 
| 1911 | 
            +
                #
         | 
| 1801 1912 | 
             
                class GetHealthCheckResponse < Struct.new(
         | 
| 1802 1913 | 
             
                  :health_check)
         | 
| 1803 1914 | 
             
                  include Aws::Structure
         | 
| @@ -1814,71 +1925,20 @@ module Aws::Route53 | |
| 1814 1925 | 
             
                #       }
         | 
| 1815 1926 | 
             
                #
         | 
| 1816 1927 | 
             
                # @!attribute [rw] health_check_id
         | 
| 1817 | 
            -
                #    | 
| 1818 | 
            -
                #    | 
| 1819 | 
            -
                #    | 
| 1820 | 
            -
                #   health check.
         | 
| 1821 | 
            -
                #
         | 
| 1822 | 
            -
                #   Amazon Route 53 determines whether a resource record set is healthy
         | 
| 1823 | 
            -
                #   by periodically sending a request to the endpoint that is specified
         | 
| 1824 | 
            -
                #   in the health check. If that endpoint returns an HTTP status code of
         | 
| 1825 | 
            -
                #   2xx or 3xx, the endpoint is healthy. If the endpoint returns an HTTP
         | 
| 1826 | 
            -
                #   status code of 400 or greater, or if the endpoint doesn't respond
         | 
| 1827 | 
            -
                #   for a certain amount of time, Amazon Route 53 considers the endpoint
         | 
| 1828 | 
            -
                #   unhealthy and also considers the resource record set unhealthy.
         | 
| 1829 | 
            -
                #
         | 
| 1830 | 
            -
                #   The `HealthCheckId` element is only useful when Amazon Route 53 is
         | 
| 1831 | 
            -
                #   choosing between two or more resource record sets to respond to a
         | 
| 1832 | 
            -
                #   DNS query, and you want Amazon Route 53 to base the choice in part
         | 
| 1833 | 
            -
                #   on the status of a health check. Configuring health checks only
         | 
| 1834 | 
            -
                #   makes sense in the following configurations:
         | 
| 1835 | 
            -
                #
         | 
| 1836 | 
            -
                #   * You're checking the health of the resource record sets in a
         | 
| 1837 | 
            -
                #     weighted, latency, geolocation, or failover resource record set,
         | 
| 1838 | 
            -
                #     and you specify health check IDs for all of the resource record
         | 
| 1839 | 
            -
                #     sets. If the health check for one resource record set specifies an
         | 
| 1840 | 
            -
                #     endpoint that is not healthy, Amazon Route 53 stops responding to
         | 
| 1841 | 
            -
                #     queries using the value for that resource record set.
         | 
| 1842 | 
            -
                #
         | 
| 1843 | 
            -
                #   * You set `EvaluateTargetHealth` to `true` for the resource record
         | 
| 1844 | 
            -
                #     sets in an alias, weighted alias, latency alias, geolocation
         | 
| 1845 | 
            -
                #     alias, or failover alias resource record set, and you specify
         | 
| 1846 | 
            -
                #     health check IDs for all of the resource record sets that are
         | 
| 1847 | 
            -
                #     referenced by the alias resource record sets. For more information
         | 
| 1848 | 
            -
                #     about this configuration, see `EvaluateTargetHealth`.
         | 
| 1849 | 
            -
                #
         | 
| 1850 | 
            -
                #     Amazon Route 53 doesn't check the health of the endpoint
         | 
| 1851 | 
            -
                #     specified in the resource record set, for example, the endpoint
         | 
| 1852 | 
            -
                #     specified by the IP address in the `Value` element. When you add a
         | 
| 1853 | 
            -
                #     `HealthCheckId` element to a resource record set, Amazon Route 53
         | 
| 1854 | 
            -
                #     checks the health of the endpoint that you specified in the health
         | 
| 1855 | 
            -
                #     check.
         | 
| 1856 | 
            -
                #
         | 
| 1857 | 
            -
                #   For geolocation resource record sets, if an endpoint is unhealthy,
         | 
| 1858 | 
            -
                #   Amazon Route 53 looks for a resource record set for the larger,
         | 
| 1859 | 
            -
                #   associated geographic region. For example, suppose you have resource
         | 
| 1860 | 
            -
                #   record sets for a state in the United States, for the United States,
         | 
| 1861 | 
            -
                #   for North America, and for all locations. If the endpoint for the
         | 
| 1862 | 
            -
                #   state resource record set is unhealthy, Amazon Route 53 checks the
         | 
| 1863 | 
            -
                #   resource record sets for the United States, for North America, and
         | 
| 1864 | 
            -
                #   for all locations (a resource record set for which the value of
         | 
| 1865 | 
            -
                #   CountryCode is `*`), in that order, until it finds a resource record
         | 
| 1866 | 
            -
                #   set for which the endpoint is healthy.
         | 
| 1928 | 
            +
                #   The ID for the health check for which you want the current status.
         | 
| 1929 | 
            +
                #   When you created the health check, `CreateHealthCheck` returned the
         | 
| 1930 | 
            +
                #   ID in the response, in the `HealthCheckId` element.
         | 
| 1867 1931 | 
             
                #
         | 
| 1868 | 
            -
                #   If  | 
| 1869 | 
            -
                #    | 
| 1870 | 
            -
                #    | 
| 1871 | 
            -
                #    | 
| 1872 | 
            -
                #   `FullyQualifiedDomainName`, specify the domain name of the server
         | 
| 1873 | 
            -
                #   (such as `us-east-1-www.example.com`), not the name of the resource
         | 
| 1874 | 
            -
                #   record sets (example.com).
         | 
| 1932 | 
            +
                #   <note markdown="1"> If you want to check the status of a calculated health check, you
         | 
| 1933 | 
            +
                #   must use the Amazon Route 53 console or the CloudWatch console. You
         | 
| 1934 | 
            +
                #   can't use `GetHealthCheckStatus` to get the status of a calculated
         | 
| 1935 | 
            +
                #   health check.
         | 
| 1875 1936 | 
             
                #
         | 
| 1876 | 
            -
                # | 
| 1877 | 
            -
                #   value of `FullyQualifiedDomainName` matches the name of the resource
         | 
| 1878 | 
            -
                #   record sets and then associate the health check with those resource
         | 
| 1879 | 
            -
                #   record sets, health check results will be unpredictable.
         | 
| 1937 | 
            +
                #    </note>
         | 
| 1880 1938 | 
             
                #   @return [String]
         | 
| 1881 1939 | 
             
                #
         | 
| 1940 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckStatusRequest AWS API Documentation
         | 
| 1941 | 
            +
                #
         | 
| 1882 1942 | 
             
                class GetHealthCheckStatusRequest < Struct.new(
         | 
| 1883 1943 | 
             
                  :health_check_id)
         | 
| 1884 1944 | 
             
                  include Aws::Structure
         | 
| @@ -1893,6 +1953,8 @@ module Aws::Route53 | |
| 1893 1953 | 
             
                #   health check endpoint.
         | 
| 1894 1954 | 
             
                #   @return [Array<Types::HealthCheckObservation>]
         | 
| 1895 1955 | 
             
                #
         | 
| 1956 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckStatusResponse AWS API Documentation
         | 
| 1957 | 
            +
                #
         | 
| 1896 1958 | 
             
                class GetHealthCheckStatusResponse < Struct.new(
         | 
| 1897 1959 | 
             
                  :health_check_observations)
         | 
| 1898 1960 | 
             
                  include Aws::Structure
         | 
| @@ -1903,6 +1965,8 @@ module Aws::Route53 | |
| 1903 1965 | 
             
                #
         | 
| 1904 1966 | 
             
                # @api private
         | 
| 1905 1967 | 
             
                #
         | 
| 1968 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneCountRequest AWS API Documentation
         | 
| 1969 | 
            +
                #
         | 
| 1906 1970 | 
             
                class GetHostedZoneCountRequest < Aws::EmptyStructure; end
         | 
| 1907 1971 |  | 
| 1908 1972 | 
             
                # A complex type that contains the response to a `hostedzonecount`
         | 
| @@ -1913,6 +1977,8 @@ module Aws::Route53 | |
| 1913 1977 | 
             
                #   the current AWS account.
         | 
| 1914 1978 | 
             
                #   @return [Integer]
         | 
| 1915 1979 | 
             
                #
         | 
| 1980 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneCountResponse AWS API Documentation
         | 
| 1981 | 
            +
                #
         | 
| 1916 1982 | 
             
                class GetHostedZoneCountResponse < Struct.new(
         | 
| 1917 1983 | 
             
                  :hosted_zone_count)
         | 
| 1918 1984 | 
             
                  include Aws::Structure
         | 
| @@ -1932,6 +1998,8 @@ module Aws::Route53 | |
| 1932 1998 | 
             
                #   name servers in the delegation set.
         | 
| 1933 1999 | 
             
                #   @return [String]
         | 
| 1934 2000 | 
             
                #
         | 
| 2001 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneRequest AWS API Documentation
         | 
| 2002 | 
            +
                #
         | 
| 1935 2003 | 
             
                class GetHostedZoneRequest < Struct.new(
         | 
| 1936 2004 | 
             
                  :id)
         | 
| 1937 2005 | 
             
                  include Aws::Structure
         | 
| @@ -1954,6 +2022,8 @@ module Aws::Route53 | |
| 1954 2022 | 
             
                #   the specified hosted zone.
         | 
| 1955 2023 | 
             
                #   @return [Array<Types::VPC>]
         | 
| 1956 2024 | 
             
                #
         | 
| 2025 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneResponse AWS API Documentation
         | 
| 2026 | 
            +
                #
         | 
| 1957 2027 | 
             
                class GetHostedZoneResponse < Struct.new(
         | 
| 1958 2028 | 
             
                  :hosted_zone,
         | 
| 1959 2029 | 
             
                  :delegation_set,
         | 
| @@ -1975,6 +2045,8 @@ module Aws::Route53 | |
| 1975 2045 | 
             
                #   list of the name server.
         | 
| 1976 2046 | 
             
                #   @return [String]
         | 
| 1977 2047 | 
             
                #
         | 
| 2048 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetReusableDelegationSetRequest AWS API Documentation
         | 
| 2049 | 
            +
                #
         | 
| 1978 2050 | 
             
                class GetReusableDelegationSetRequest < Struct.new(
         | 
| 1979 2051 | 
             
                  :id)
         | 
| 1980 2052 | 
             
                  include Aws::Structure
         | 
| @@ -1988,16 +2060,20 @@ module Aws::Route53 | |
| 1988 2060 | 
             
                #   delegation set.
         | 
| 1989 2061 | 
             
                #   @return [Types::DelegationSet]
         | 
| 1990 2062 | 
             
                #
         | 
| 2063 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetReusableDelegationSetResponse AWS API Documentation
         | 
| 2064 | 
            +
                #
         | 
| 1991 2065 | 
             
                class GetReusableDelegationSetResponse < Struct.new(
         | 
| 1992 2066 | 
             
                  :delegation_set)
         | 
| 1993 2067 | 
             
                  include Aws::Structure
         | 
| 1994 2068 | 
             
                end
         | 
| 1995 2069 |  | 
| 1996 | 
            -
                #  | 
| 1997 | 
            -
                #  | 
| 2070 | 
            +
                # Request to get the number of traffic policy instances that are
         | 
| 2071 | 
            +
                # associated with the current AWS account.
         | 
| 1998 2072 | 
             
                #
         | 
| 1999 2073 | 
             
                # @api private
         | 
| 2000 2074 | 
             
                #
         | 
| 2075 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceCountRequest AWS API Documentation
         | 
| 2076 | 
            +
                #
         | 
| 2001 2077 | 
             
                class GetTrafficPolicyInstanceCountRequest < Aws::EmptyStructure; end
         | 
| 2002 2078 |  | 
| 2003 2079 | 
             
                # A complex type that contains information about the resource record
         | 
| @@ -2008,6 +2084,8 @@ module Aws::Route53 | |
| 2008 2084 | 
             
                #   current AWS account.
         | 
| 2009 2085 | 
             
                #   @return [Integer]
         | 
| 2010 2086 | 
             
                #
         | 
| 2087 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceCountResponse AWS API Documentation
         | 
| 2088 | 
            +
                #
         | 
| 2011 2089 | 
             
                class GetTrafficPolicyInstanceCountResponse < Struct.new(
         | 
| 2012 2090 | 
             
                  :traffic_policy_instance_count)
         | 
| 2013 2091 | 
             
                  include Aws::Structure
         | 
| @@ -2031,6 +2109,8 @@ module Aws::Route53 | |
| 2031 2109 | 
             
                #   information about.
         | 
| 2032 2110 | 
             
                #   @return [String]
         | 
| 2033 2111 | 
             
                #
         | 
| 2112 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceRequest AWS API Documentation
         | 
| 2113 | 
            +
                #
         | 
| 2034 2114 | 
             
                class GetTrafficPolicyInstanceRequest < Struct.new(
         | 
| 2035 2115 | 
             
                  :id)
         | 
| 2036 2116 | 
             
                  include Aws::Structure
         | 
| @@ -2044,6 +2124,8 @@ module Aws::Route53 | |
| 2044 2124 | 
             
                #   instance.
         | 
| 2045 2125 | 
             
                #   @return [Types::TrafficPolicyInstance]
         | 
| 2046 2126 | 
             
                #
         | 
| 2127 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceResponse AWS API Documentation
         | 
| 2128 | 
            +
                #
         | 
| 2047 2129 | 
             
                class GetTrafficPolicyInstanceResponse < Struct.new(
         | 
| 2048 2130 | 
             
                  :traffic_policy_instance)
         | 
| 2049 2131 | 
             
                  include Aws::Structure
         | 
| @@ -2070,6 +2152,8 @@ module Aws::Route53 | |
| 2070 2152 | 
             
                #   information about.
         | 
| 2071 2153 | 
             
                #   @return [Integer]
         | 
| 2072 2154 | 
             
                #
         | 
| 2155 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyRequest AWS API Documentation
         | 
| 2156 | 
            +
                #
         | 
| 2073 2157 | 
             
                class GetTrafficPolicyRequest < Struct.new(
         | 
| 2074 2158 | 
             
                  :id,
         | 
| 2075 2159 | 
             
                  :version)
         | 
| @@ -2083,6 +2167,8 @@ module Aws::Route53 | |
| 2083 2167 | 
             
                #   policy.
         | 
| 2084 2168 | 
             
                #   @return [Types::TrafficPolicy]
         | 
| 2085 2169 | 
             
                #
         | 
| 2170 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyResponse AWS API Documentation
         | 
| 2171 | 
            +
                #
         | 
| 2086 2172 | 
             
                class GetTrafficPolicyResponse < Struct.new(
         | 
| 2087 2173 | 
             
                  :traffic_policy)
         | 
| 2088 2174 | 
             
                  include Aws::Structure
         | 
| @@ -2119,6 +2205,8 @@ module Aws::Route53 | |
| 2119 2205 | 
             
                #   that Amazon Route 53 is monitoring for this health check.
         | 
| 2120 2206 | 
             
                #   @return [Types::CloudWatchAlarmConfiguration]
         | 
| 2121 2207 | 
             
                #
         | 
| 2208 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheck AWS API Documentation
         | 
| 2209 | 
            +
                #
         | 
| 2122 2210 | 
             
                class HealthCheck < Struct.new(
         | 
| 2123 2211 | 
             
                  :id,
         | 
| 2124 2212 | 
             
                  :caller_reference,
         | 
| @@ -2164,6 +2252,17 @@ module Aws::Route53 | |
| 2164 2252 | 
             
                #   returned by DNS, Amazon Route 53 then checks the health of the
         | 
| 2165 2253 | 
             
                #   endpoint.
         | 
| 2166 2254 | 
             
                #
         | 
| 2255 | 
            +
                #   Use one of the following formats for the value of `IPAddress`\:
         | 
| 2256 | 
            +
                #
         | 
| 2257 | 
            +
                #   * **IPv4 address**\: four values between 0 and 255, separated by
         | 
| 2258 | 
            +
                #     periods (.), for example, `192.0.2.44`.
         | 
| 2259 | 
            +
                #
         | 
| 2260 | 
            +
                #   * **IPv6 address**\: eight groups of four hexadecimal values,
         | 
| 2261 | 
            +
                #     separated by colons (:), for example,
         | 
| 2262 | 
            +
                #     `2001:0db8:85a3:0000:0000:abcd:0001:2345`. You can also shorten
         | 
| 2263 | 
            +
                #     IPv6 addresses as described in RFC 5952, for example,
         | 
| 2264 | 
            +
                #     `2001:db8:85a3::abcd:1:2345`.
         | 
| 2265 | 
            +
                #
         | 
| 2167 2266 | 
             
                #   If the endpoint is an EC2 instance, we recommend that you create an
         | 
| 2168 2267 | 
             
                #   Elastic IP address, associate it with your EC2 instance, and specify
         | 
| 2169 2268 | 
             
                #   the Elastic IP address for `IPAddress`. This ensures that the IP
         | 
| @@ -2309,7 +2408,7 @@ module Aws::Route53 | |
| 2309 2408 | 
             
                #   health check for each endpoint. For example, create a health check
         | 
| 2310 2409 | 
             
                #   for each HTTP server that is serving content for www.example.com.
         | 
| 2311 2410 | 
             
                #   For the value of `FullyQualifiedDomainName`, specify the domain name
         | 
| 2312 | 
            -
                #   of the server (such as us-east- | 
| 2411 | 
            +
                #   of the server (such as us-east-2-www.example.com), not the name of
         | 
| 2313 2412 | 
             
                #   the resource record sets (www.example.com).
         | 
| 2314 2413 | 
             
                #
         | 
| 2315 2414 | 
             
                #   In this configuration, if you create a health check for which the
         | 
| @@ -2337,11 +2436,14 @@ module Aws::Route53 | |
| 2337 2436 | 
             
                # @!attribute [rw] request_interval
         | 
| 2338 2437 | 
             
                #   The number of seconds between the time that Amazon Route 53 gets a
         | 
| 2339 2438 | 
             
                #   response from your endpoint and the time that it sends the next
         | 
| 2340 | 
            -
                #   health | 
| 2439 | 
            +
                #   health check request. Each Amazon Route 53 health checker makes
         | 
| 2341 2440 | 
             
                #   requests at this interval.
         | 
| 2342 2441 | 
             
                #
         | 
| 2343 2442 | 
             
                #   You can't change the value of `RequestInterval` after you create a
         | 
| 2344 2443 | 
             
                #   health check.
         | 
| 2444 | 
            +
                #
         | 
| 2445 | 
            +
                #   If you don't specify a value for `RequestInterval`, the default
         | 
| 2446 | 
            +
                #   value is `30` seconds.
         | 
| 2345 2447 | 
             
                #   @return [Integer]
         | 
| 2346 2448 | 
             
                #
         | 
| 2347 2449 | 
             
                # @!attribute [rw] failure_threshold
         | 
| @@ -2351,6 +2453,9 @@ module Aws::Route53 | |
| 2351 2453 | 
             
                #   information, see [How Amazon Route 53 Determines Whether an Endpoint
         | 
| 2352 2454 | 
             
                #   Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
         | 
| 2353 2455 | 
             
                #
         | 
| 2456 | 
            +
                #   If you don't specify a value for `FailureThreshold`, the default
         | 
| 2457 | 
            +
                #   value is three health checks.
         | 
| 2458 | 
            +
                #
         | 
| 2354 2459 | 
             
                #
         | 
| 2355 2460 | 
             
                #
         | 
| 2356 2461 | 
             
                #   [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
         | 
| @@ -2424,9 +2529,19 @@ module Aws::Route53 | |
| 2424 2529 | 
             
                #   @return [Boolean]
         | 
| 2425 2530 | 
             
                #
         | 
| 2426 2531 | 
             
                # @!attribute [rw] regions
         | 
| 2427 | 
            -
                #   A complex type that contains one Region element for each region | 
| 2428 | 
            -
                #   which you want Amazon Route 53 health checkers to check the
         | 
| 2532 | 
            +
                #   A complex type that contains one `Region` element for each region
         | 
| 2533 | 
            +
                #   from which you want Amazon Route 53 health checkers to check the
         | 
| 2429 2534 | 
             
                #   specified endpoint.
         | 
| 2535 | 
            +
                #
         | 
| 2536 | 
            +
                #   If you don't specify any regions, Amazon Route 53 health checkers
         | 
| 2537 | 
            +
                #   automatically performs checks from all of the regions that are
         | 
| 2538 | 
            +
                #   listed under **Valid Values**.
         | 
| 2539 | 
            +
                #
         | 
| 2540 | 
            +
                #   If you update a health check to remove a region that has been
         | 
| 2541 | 
            +
                #   performing health checks, Amazon Route 53 will briefly continue to
         | 
| 2542 | 
            +
                #   perform checks from that region to ensure that some health checkers
         | 
| 2543 | 
            +
                #   are always checking the endpoint (for example, if you replace three
         | 
| 2544 | 
            +
                #   regions with four different regions).
         | 
| 2430 2545 | 
             
                #   @return [Array<String>]
         | 
| 2431 2546 | 
             
                #
         | 
| 2432 2547 | 
             
                # @!attribute [rw] alarm_identifier
         | 
| @@ -2452,6 +2567,8 @@ module Aws::Route53 | |
| 2452 2567 | 
             
                #     known status, the default status for the health check is healthy.
         | 
| 2453 2568 | 
             
                #   @return [String]
         | 
| 2454 2569 | 
             
                #
         | 
| 2570 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckConfig AWS API Documentation
         | 
| 2571 | 
            +
                #
         | 
| 2455 2572 | 
             
                class HealthCheckConfig < Struct.new(
         | 
| 2456 2573 | 
             
                  :ip_address,
         | 
| 2457 2574 | 
             
                  :port,
         | 
| @@ -2491,6 +2608,8 @@ module Aws::Route53 | |
| 2491 2608 | 
             
                #   check.
         | 
| 2492 2609 | 
             
                #   @return [Types::StatusReport]
         | 
| 2493 2610 | 
             
                #
         | 
| 2611 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckObservation AWS API Documentation
         | 
| 2612 | 
            +
                #
         | 
| 2494 2613 | 
             
                class HealthCheckObservation < Struct.new(
         | 
| 2495 2614 | 
             
                  :region,
         | 
| 2496 2615 | 
             
                  :ip_address,
         | 
| @@ -2531,6 +2650,8 @@ module Aws::Route53 | |
| 2531 2650 | 
             
                #   The number of resource record sets in the hosted zone.
         | 
| 2532 2651 | 
             
                #   @return [Integer]
         | 
| 2533 2652 | 
             
                #
         | 
| 2653 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZone AWS API Documentation
         | 
| 2654 | 
            +
                #
         | 
| 2534 2655 | 
             
                class HostedZone < Struct.new(
         | 
| 2535 2656 | 
             
                  :id,
         | 
| 2536 2657 | 
             
                  :name,
         | 
| @@ -2560,6 +2681,8 @@ module Aws::Route53 | |
| 2560 2681 | 
             
                #   A value that indicates whether this is a private hosted zone.
         | 
| 2561 2682 | 
             
                #   @return [Boolean]
         | 
| 2562 2683 | 
             
                #
         | 
| 2684 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneConfig AWS API Documentation
         | 
| 2685 | 
            +
                #
         | 
| 2563 2686 | 
             
                class HostedZoneConfig < Struct.new(
         | 
| 2564 2687 | 
             
                  :comment,
         | 
| 2565 2688 | 
             
                  :private_zone)
         | 
| @@ -2636,6 +2759,8 @@ module Aws::Route53 | |
| 2636 2759 | 
             
                #   the response is `true`.
         | 
| 2637 2760 | 
             
                #   @return [Integer]
         | 
| 2638 2761 | 
             
                #
         | 
| 2762 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListGeoLocationsRequest AWS API Documentation
         | 
| 2763 | 
            +
                #
         | 
| 2639 2764 | 
             
                class ListGeoLocationsRequest < Struct.new(
         | 
| 2640 2765 | 
             
                  :start_continent_code,
         | 
| 2641 2766 | 
             
                  :start_country_code,
         | 
| @@ -2685,6 +2810,8 @@ module Aws::Route53 | |
| 2685 2810 | 
             
                #   The value that you specified for `MaxItems` in the request.
         | 
| 2686 2811 | 
             
                #   @return [Integer]
         | 
| 2687 2812 | 
             
                #
         | 
| 2813 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListGeoLocationsResponse AWS API Documentation
         | 
| 2814 | 
            +
                #
         | 
| 2688 2815 | 
             
                class ListGeoLocationsResponse < Struct.new(
         | 
| 2689 2816 | 
             
                  :geo_location_details_list,
         | 
| 2690 2817 | 
             
                  :is_truncated,
         | 
| @@ -2747,6 +2874,8 @@ module Aws::Route53 | |
| 2747 2874 | 
             
                #   * ListHealthChecksResponse$NextMarker is omitted.
         | 
| 2748 2875 | 
             
                #   @return [Integer]
         | 
| 2749 2876 | 
             
                #
         | 
| 2877 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHealthChecksRequest AWS API Documentation
         | 
| 2878 | 
            +
                #
         | 
| 2750 2879 | 
             
                class ListHealthChecksRequest < Struct.new(
         | 
| 2751 2880 | 
             
                  :marker,
         | 
| 2752 2881 | 
             
                  :max_items)
         | 
| @@ -2789,6 +2918,8 @@ module Aws::Route53 | |
| 2789 2918 | 
             
                #   call to `ListHealthChecks` that produced the current response.
         | 
| 2790 2919 | 
             
                #   @return [Integer]
         | 
| 2791 2920 | 
             
                #
         | 
| 2921 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHealthChecksResponse AWS API Documentation
         | 
| 2922 | 
            +
                #
         | 
| 2792 2923 | 
             
                class ListHealthChecksResponse < Struct.new(
         | 
| 2793 2924 | 
             
                  :health_checks,
         | 
| 2794 2925 | 
             
                  :marker,
         | 
| @@ -2898,6 +3029,8 @@ module Aws::Route53 | |
| 2898 3029 | 
             
                #   zones.
         | 
| 2899 3030 | 
             
                #   @return [Integer]
         | 
| 2900 3031 | 
             
                #
         | 
| 3032 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByNameRequest AWS API Documentation
         | 
| 3033 | 
            +
                #
         | 
| 2901 3034 | 
             
                class ListHostedZonesByNameRequest < Struct.new(
         | 
| 2902 3035 | 
             
                  :dns_name,
         | 
| 2903 3036 | 
             
                  :hosted_zone_id,
         | 
| @@ -2956,6 +3089,8 @@ module Aws::Route53 | |
| 2956 3089 | 
             
                #   call to `ListHostedZonesByName` that produced the current response.
         | 
| 2957 3090 | 
             
                #   @return [Integer]
         | 
| 2958 3091 | 
             
                #
         | 
| 3092 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByNameResponse AWS API Documentation
         | 
| 3093 | 
            +
                #
         | 
| 2959 3094 | 
             
                class ListHostedZonesByNameResponse < Struct.new(
         | 
| 2960 3095 | 
             
                  :hosted_zones,
         | 
| 2961 3096 | 
             
                  :dns_name,
         | 
| @@ -3034,6 +3169,8 @@ module Aws::Route53 | |
| 3034 3169 | 
             
                #   set, specify the ID of that reusable delegation set.
         | 
| 3035 3170 | 
             
                #   @return [String]
         | 
| 3036 3171 | 
             
                #
         | 
| 3172 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesRequest AWS API Documentation
         | 
| 3173 | 
            +
                #
         | 
| 3037 3174 | 
             
                class ListHostedZonesRequest < Struct.new(
         | 
| 3038 3175 | 
             
                  :marker,
         | 
| 3039 3176 | 
             
                  :max_items,
         | 
| @@ -3074,6 +3211,8 @@ module Aws::Route53 | |
| 3074 3211 | 
             
                #   call to `ListHostedZones` that produced the current response.
         | 
| 3075 3212 | 
             
                #   @return [Integer]
         | 
| 3076 3213 | 
             
                #
         | 
| 3214 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesResponse AWS API Documentation
         | 
| 3215 | 
            +
                #
         | 
| 3077 3216 | 
             
                class ListHostedZonesResponse < Struct.new(
         | 
| 3078 3217 | 
             
                  :hosted_zones,
         | 
| 3079 3218 | 
             
                  :marker,
         | 
| @@ -3149,6 +3288,8 @@ module Aws::Route53 | |
| 3149 3288 | 
             
                #   `maxitems` resource record sets.
         | 
| 3150 3289 | 
             
                #   @return [Integer]
         | 
| 3151 3290 | 
             
                #
         | 
| 3291 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListResourceRecordSetsRequest AWS API Documentation
         | 
| 3292 | 
            +
                #
         | 
| 3152 3293 | 
             
                class ListResourceRecordSetsRequest < Struct.new(
         | 
| 3153 3294 | 
             
                  :hosted_zone_id,
         | 
| 3154 3295 | 
             
                  :start_record_name,
         | 
| @@ -3196,6 +3337,8 @@ module Aws::Route53 | |
| 3196 3337 | 
             
                #   The maximum number of records you requested.
         | 
| 3197 3338 | 
             
                #   @return [Integer]
         | 
| 3198 3339 | 
             
                #
         | 
| 3340 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListResourceRecordSetsResponse AWS API Documentation
         | 
| 3341 | 
            +
                #
         | 
| 3199 3342 | 
             
                class ListResourceRecordSetsResponse < Struct.new(
         | 
| 3200 3343 | 
             
                  :resource_record_sets,
         | 
| 3201 3344 | 
             
                  :is_truncated,
         | 
| @@ -3241,6 +3384,8 @@ module Aws::Route53 | |
| 3241 3384 | 
             
                #   request that produced the current response.
         | 
| 3242 3385 | 
             
                #   @return [Integer]
         | 
| 3243 3386 | 
             
                #
         | 
| 3387 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListReusableDelegationSetsRequest AWS API Documentation
         | 
| 3388 | 
            +
                #
         | 
| 3244 3389 | 
             
                class ListReusableDelegationSetsRequest < Struct.new(
         | 
| 3245 3390 | 
             
                  :marker,
         | 
| 3246 3391 | 
             
                  :max_items)
         | 
| @@ -3282,6 +3427,8 @@ module Aws::Route53 | |
| 3282 3427 | 
             
                #   response.
         | 
| 3283 3428 | 
             
                #   @return [Integer]
         | 
| 3284 3429 | 
             
                #
         | 
| 3430 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListReusableDelegationSetsResponse AWS API Documentation
         | 
| 3431 | 
            +
                #
         | 
| 3285 3432 | 
             
                class ListReusableDelegationSetsResponse < Struct.new(
         | 
| 3286 3433 | 
             
                  :delegation_sets,
         | 
| 3287 3434 | 
             
                  :marker,
         | 
| @@ -3314,6 +3461,8 @@ module Aws::Route53 | |
| 3314 3461 | 
             
                #   The ID of the resource for which you want to retrieve tags.
         | 
| 3315 3462 | 
             
                #   @return [String]
         | 
| 3316 3463 | 
             
                #
         | 
| 3464 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTagsForResourceRequest AWS API Documentation
         | 
| 3465 | 
            +
                #
         | 
| 3317 3466 | 
             
                class ListTagsForResourceRequest < Struct.new(
         | 
| 3318 3467 | 
             
                  :resource_type,
         | 
| 3319 3468 | 
             
                  :resource_id)
         | 
| @@ -3328,6 +3477,8 @@ module Aws::Route53 | |
| 3328 3477 | 
             
                #   resource.
         | 
| 3329 3478 | 
             
                #   @return [Types::ResourceTagSet]
         | 
| 3330 3479 | 
             
                #
         | 
| 3480 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTagsForResourceResponse AWS API Documentation
         | 
| 3481 | 
            +
                #
         | 
| 3331 3482 | 
             
                class ListTagsForResourceResponse < Struct.new(
         | 
| 3332 3483 | 
             
                  :resource_tag_set)
         | 
| 3333 3484 | 
             
                  include Aws::Structure
         | 
| @@ -3357,6 +3508,8 @@ module Aws::Route53 | |
| 3357 3508 | 
             
                #   resource for which you want to get a list of tags.
         | 
| 3358 3509 | 
             
                #   @return [Array<String>]
         | 
| 3359 3510 | 
             
                #
         | 
| 3511 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTagsForResourcesRequest AWS API Documentation
         | 
| 3512 | 
            +
                #
         | 
| 3360 3513 | 
             
                class ListTagsForResourcesRequest < Struct.new(
         | 
| 3361 3514 | 
             
                  :resource_type,
         | 
| 3362 3515 | 
             
                  :resource_ids)
         | 
| @@ -3370,6 +3523,8 @@ module Aws::Route53 | |
| 3370 3523 | 
             
                #   specified resources.
         | 
| 3371 3524 | 
             
                #   @return [Array<Types::ResourceTagSet>]
         | 
| 3372 3525 | 
             
                #
         | 
| 3526 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTagsForResourcesResponse AWS API Documentation
         | 
| 3527 | 
            +
                #
         | 
| 3373 3528 | 
             
                class ListTagsForResourcesResponse < Struct.new(
         | 
| 3374 3529 | 
             
                  :resource_tag_sets)
         | 
| 3375 3530 | 
             
                  include Aws::Structure
         | 
| @@ -3410,6 +3565,8 @@ module Aws::Route53 | |
| 3410 3565 | 
             
                #   `MaxItems` traffic policies.
         | 
| 3411 3566 | 
             
                #   @return [Integer]
         | 
| 3412 3567 | 
             
                #
         | 
| 3568 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPoliciesRequest AWS API Documentation
         | 
| 3569 | 
            +
                #
         | 
| 3413 3570 | 
             
                class ListTrafficPoliciesRequest < Struct.new(
         | 
| 3414 3571 | 
             
                  :traffic_policy_id_marker,
         | 
| 3415 3572 | 
             
                  :max_items)
         | 
| @@ -3444,6 +3601,8 @@ module Aws::Route53 | |
| 3444 3601 | 
             
                #   call to `ListTrafficPolicies` that produced the current response.
         | 
| 3445 3602 | 
             
                #   @return [Integer]
         | 
| 3446 3603 | 
             
                #
         | 
| 3604 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPoliciesResponse AWS API Documentation
         | 
| 3605 | 
            +
                #
         | 
| 3447 3606 | 
             
                class ListTrafficPoliciesResponse < Struct.new(
         | 
| 3448 3607 | 
             
                  :traffic_policy_summaries,
         | 
| 3449 3608 | 
             
                  :is_truncated,
         | 
| @@ -3511,6 +3670,8 @@ module Aws::Route53 | |
| 3511 3670 | 
             
                #   instance in the next group of `MaxItems` traffic policy instances.
         | 
| 3512 3671 | 
             
                #   @return [Integer]
         | 
| 3513 3672 | 
             
                #
         | 
| 3673 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesByHostedZoneRequest AWS API Documentation
         | 
| 3674 | 
            +
                #
         | 
| 3514 3675 | 
             
                class ListTrafficPolicyInstancesByHostedZoneRequest < Struct.new(
         | 
| 3515 3676 | 
             
                  :hosted_zone_id,
         | 
| 3516 3677 | 
             
                  :traffic_policy_instance_name_marker,
         | 
| @@ -3556,6 +3717,8 @@ module Aws::Route53 | |
| 3556 3717 | 
             
                #   current response.
         | 
| 3557 3718 | 
             
                #   @return [Integer]
         | 
| 3558 3719 | 
             
                #
         | 
| 3720 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesByHostedZoneResponse AWS API Documentation
         | 
| 3721 | 
            +
                #
         | 
| 3559 3722 | 
             
                class ListTrafficPolicyInstancesByHostedZoneResponse < Struct.new(
         | 
| 3560 3723 | 
             
                  :traffic_policy_instances,
         | 
| 3561 3724 | 
             
                  :traffic_policy_instance_name_marker,
         | 
| @@ -3649,6 +3812,8 @@ module Aws::Route53 | |
| 3649 3812 | 
             
                #   instance in the next group of `MaxItems` traffic policy instances.
         | 
| 3650 3813 | 
             
                #   @return [Integer]
         | 
| 3651 3814 | 
             
                #
         | 
| 3815 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesByPolicyRequest AWS API Documentation
         | 
| 3816 | 
            +
                #
         | 
| 3652 3817 | 
             
                class ListTrafficPolicyInstancesByPolicyRequest < Struct.new(
         | 
| 3653 3818 | 
             
                  :traffic_policy_id,
         | 
| 3654 3819 | 
             
                  :traffic_policy_version,
         | 
| @@ -3701,6 +3866,8 @@ module Aws::Route53 | |
| 3701 3866 | 
             
                #   current response.
         | 
| 3702 3867 | 
             
                #   @return [Integer]
         | 
| 3703 3868 | 
             
                #
         | 
| 3869 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesByPolicyResponse AWS API Documentation
         | 
| 3870 | 
            +
                #
         | 
| 3704 3871 | 
             
                class ListTrafficPolicyInstancesByPolicyResponse < Struct.new(
         | 
| 3705 3872 | 
             
                  :traffic_policy_instances,
         | 
| 3706 3873 | 
             
                  :hosted_zone_id_marker,
         | 
| @@ -3711,8 +3878,8 @@ module Aws::Route53 | |
| 3711 3878 | 
             
                  include Aws::Structure
         | 
| 3712 3879 | 
             
                end
         | 
| 3713 3880 |  | 
| 3714 | 
            -
                # A  | 
| 3715 | 
            -
                #  | 
| 3881 | 
            +
                # A request to get information about the traffic policy instances that
         | 
| 3882 | 
            +
                # you created by using the current AWS account.
         | 
| 3716 3883 | 
             
                #
         | 
| 3717 3884 | 
             
                # @note When making an API call, you may pass ListTrafficPolicyInstancesRequest
         | 
| 3718 3885 | 
             
                #   data as a hash:
         | 
| @@ -3777,6 +3944,8 @@ module Aws::Route53 | |
| 3777 3944 | 
             
                #   instance in the next group of `MaxItems` traffic policy instances.
         | 
| 3778 3945 | 
             
                #   @return [Integer]
         | 
| 3779 3946 | 
             
                #
         | 
| 3947 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesRequest AWS API Documentation
         | 
| 3948 | 
            +
                #
         | 
| 3780 3949 | 
             
                class ListTrafficPolicyInstancesRequest < Struct.new(
         | 
| 3781 3950 | 
             
                  :hosted_zone_id_marker,
         | 
| 3782 3951 | 
             
                  :traffic_policy_instance_name_marker,
         | 
| @@ -3827,6 +3996,8 @@ module Aws::Route53 | |
| 3827 3996 | 
             
                #   response.
         | 
| 3828 3997 | 
             
                #   @return [Integer]
         | 
| 3829 3998 | 
             
                #
         | 
| 3999 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyInstancesResponse AWS API Documentation
         | 
| 4000 | 
            +
                #
         | 
| 3830 4001 | 
             
                class ListTrafficPolicyInstancesResponse < Struct.new(
         | 
| 3831 4002 | 
             
                  :traffic_policy_instances,
         | 
| 3832 4003 | 
             
                  :hosted_zone_id_marker,
         | 
| @@ -3880,6 +4051,8 @@ module Aws::Route53 | |
| 3880 4051 | 
             
                #   versions.
         | 
| 3881 4052 | 
             
                #   @return [Integer]
         | 
| 3882 4053 | 
             
                #
         | 
| 4054 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyVersionsRequest AWS API Documentation
         | 
| 4055 | 
            +
                #
         | 
| 3883 4056 | 
             
                class ListTrafficPolicyVersionsRequest < Struct.new(
         | 
| 3884 4057 | 
             
                  :id,
         | 
| 3885 4058 | 
             
                  :traffic_policy_version_marker,
         | 
| @@ -3919,6 +4092,8 @@ module Aws::Route53 | |
| 3919 4092 | 
             
                #   response.
         | 
| 3920 4093 | 
             
                #   @return [Integer]
         | 
| 3921 4094 | 
             
                #
         | 
| 4095 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyVersionsResponse AWS API Documentation
         | 
| 4096 | 
            +
                #
         | 
| 3922 4097 | 
             
                class ListTrafficPolicyVersionsResponse < Struct.new(
         | 
| 3923 4098 | 
             
                  :traffic_policies,
         | 
| 3924 4099 | 
             
                  :is_truncated,
         | 
| @@ -3958,6 +4133,8 @@ module Aws::Route53 | |
| 3958 4133 | 
             
                #   that you want Amazon Route 53 to return.
         | 
| 3959 4134 | 
             
                #   @return [String]
         | 
| 3960 4135 | 
             
                #
         | 
| 4136 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizationsRequest AWS API Documentation
         | 
| 4137 | 
            +
                #
         | 
| 3961 4138 | 
             
                class ListVPCAssociationAuthorizationsRequest < Struct.new(
         | 
| 3962 4139 | 
             
                  :hosted_zone_id,
         | 
| 3963 4140 | 
             
                  :next_token,
         | 
| @@ -3989,6 +4166,8 @@ module Aws::Route53 | |
| 3989 4166 | 
             
                #   specified hosted zone.
         | 
| 3990 4167 | 
             
                #   @return [Array<Types::VPC>]
         | 
| 3991 4168 | 
             
                #
         | 
| 4169 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizationsResponse AWS API Documentation
         | 
| 4170 | 
            +
                #
         | 
| 3992 4171 | 
             
                class ListVPCAssociationAuthorizationsResponse < Struct.new(
         | 
| 3993 4172 | 
             
                  :hosted_zone_id,
         | 
| 3994 4173 | 
             
                  :next_token,
         | 
| @@ -3998,7 +4177,7 @@ module Aws::Route53 | |
| 3998 4177 |  | 
| 3999 4178 | 
             
                # Information specific to the resource record.
         | 
| 4000 4179 | 
             
                #
         | 
| 4001 | 
            -
                # <note markdown="1"> If you  | 
| 4180 | 
            +
                # <note markdown="1"> If you're creating an alias resource record set, omit
         | 
| 4002 4181 | 
             
                # `ResourceRecord`.
         | 
| 4003 4182 | 
             
                #
         | 
| 4004 4183 | 
             
                #  </note>
         | 
| @@ -4020,7 +4199,7 @@ module Aws::Route53 | |
| 4020 4199 | 
             
                #   You can specify more than one value for all record types except
         | 
| 4021 4200 | 
             
                #   `CNAME` and `SOA`.
         | 
| 4022 4201 | 
             
                #
         | 
| 4023 | 
            -
                #   <note markdown="1"> If you  | 
| 4202 | 
            +
                #   <note markdown="1"> If you're creating an alias resource record set, omit `Value`.
         | 
| 4024 4203 | 
             
                #
         | 
| 4025 4204 | 
             
                #    </note>
         | 
| 4026 4205 | 
             
                #
         | 
| @@ -4029,6 +4208,8 @@ module Aws::Route53 | |
| 4029 4208 | 
             
                #   [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html
         | 
| 4030 4209 | 
             
                #   @return [String]
         | 
| 4031 4210 | 
             
                #
         | 
| 4211 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecord AWS API Documentation
         | 
| 4212 | 
            +
                #
         | 
| 4032 4213 | 
             
                class ResourceRecord < Struct.new(
         | 
| 4033 4214 | 
             
                  :value)
         | 
| 4034 4215 | 
             
                  include Aws::Structure
         | 
| @@ -4238,7 +4419,7 @@ module Aws::Route53 | |
| 4238 4419 | 
             
                #   * You can only create one latency resource record set for each
         | 
| 4239 4420 | 
             
                #     Amazon EC2 Region.
         | 
| 4240 4421 | 
             
                #
         | 
| 4241 | 
            -
                #   * You  | 
| 4422 | 
            +
                #   * You aren't required to create latency resource record sets for
         | 
| 4242 4423 | 
             
                #     all Amazon EC2 Regions. Amazon Route 53 will choose the region
         | 
| 4243 4424 | 
             
                #     with the best latency from among the regions for which you create
         | 
| 4244 4425 | 
             
                #     latency resource record sets.
         | 
| @@ -4377,7 +4558,7 @@ module Aws::Route53 | |
| 4377 4558 | 
             
                # @!attribute [rw] resource_records
         | 
| 4378 4559 | 
             
                #   Information about the resource records to act upon.
         | 
| 4379 4560 | 
             
                #
         | 
| 4380 | 
            -
                #   <note markdown="1"> If you  | 
| 4561 | 
            +
                #   <note markdown="1"> If you're creating an alias resource record set, omit
         | 
| 4381 4562 | 
             
                #   `ResourceRecords`.
         | 
| 4382 4563 | 
             
                #
         | 
| 4383 4564 | 
             
                #    </note>
         | 
| @@ -4387,7 +4568,7 @@ module Aws::Route53 | |
| 4387 4568 | 
             
                #   *Alias resource record sets only:* Information about the CloudFront
         | 
| 4388 4569 | 
             
                #   distribution, AWS Elastic Beanstalk environment, ELB load balancer,
         | 
| 4389 4570 | 
             
                #   Amazon S3 bucket, or Amazon Route 53 resource record set to which
         | 
| 4390 | 
            -
                #   you  | 
| 4571 | 
            +
                #   you're redirecting queries. The AWS Elastic Beanstalk environment
         | 
| 4391 4572 | 
             
                #   must have a regionalized subdomain.
         | 
| 4392 4573 | 
             
                #
         | 
| 4393 4574 | 
             
                #   If you're creating resource records sets for a private hosted zone,
         | 
| @@ -4426,8 +4607,8 @@ module Aws::Route53 | |
| 4426 4607 | 
             
                #   * By determining the current state of a CloudWatch alarm (CloudWatch
         | 
| 4427 4608 | 
             
                #     metric health checks)
         | 
| 4428 4609 | 
             
                #
         | 
| 4429 | 
            -
                #   For information  | 
| 4430 | 
            -
                #    | 
| 4610 | 
            +
                #   For more information, see [How Amazon Route 53 Determines Whether an
         | 
| 4611 | 
            +
                #   Endpoint Is Healthy][1].
         | 
| 4431 4612 | 
             
                #
         | 
| 4432 4613 | 
             
                #   The `HealthCheckId` element is only useful when Amazon Route 53 is
         | 
| 4433 4614 | 
             
                #   choosing between two or more resource record sets to respond to a
         | 
| @@ -4435,18 +4616,19 @@ module Aws::Route53 | |
| 4435 4616 | 
             
                #   on the status of a health check. Configuring health checks only
         | 
| 4436 4617 | 
             
                #   makes sense in the following configurations:
         | 
| 4437 4618 | 
             
                #
         | 
| 4438 | 
            -
                #   * You're checking the health of the resource record sets in a
         | 
| 4439 | 
            -
                #     weighted, latency, geolocation, or failover resource record | 
| 4440 | 
            -
                #     and you specify health check IDs for all of the resource | 
| 4441 | 
            -
                #     sets. If the health check for one resource record set | 
| 4442 | 
            -
                #     endpoint that is not healthy, Amazon Route 53 stops | 
| 4443 | 
            -
                #     queries using the value for that resource record | 
| 4619 | 
            +
                #   * You're checking the health of the resource record sets in a group
         | 
| 4620 | 
            +
                #     of weighted, latency, geolocation, or failover resource record
         | 
| 4621 | 
            +
                #     sets, and you specify health check IDs for all of the resource
         | 
| 4622 | 
            +
                #     record sets. If the health check for one resource record set
         | 
| 4623 | 
            +
                #     specifies an endpoint that is not healthy, Amazon Route 53 stops
         | 
| 4624 | 
            +
                #     responding to queries using the value for that resource record
         | 
| 4625 | 
            +
                #     set.
         | 
| 4444 4626 | 
             
                #
         | 
| 4445 4627 | 
             
                #   * You set `EvaluateTargetHealth` to true for the resource record
         | 
| 4446 | 
            -
                #     sets in  | 
| 4447 | 
            -
                #     alias, or failover alias resource record  | 
| 4448 | 
            -
                #     health check IDs for all of the resource record sets that | 
| 4449 | 
            -
                #     referenced by the alias resource record sets.
         | 
| 4628 | 
            +
                #     sets in a group of alias, weighted alias, latency alias,
         | 
| 4629 | 
            +
                #     geolocation alias, or failover alias resource record sets, and you
         | 
| 4630 | 
            +
                #     specify health check IDs for all of the resource record sets that
         | 
| 4631 | 
            +
                #     are referenced by the alias resource record sets.
         | 
| 4450 4632 | 
             
                #
         | 
| 4451 4633 | 
             
                #   Amazon Route 53 doesn't check the health of the endpoint specified
         | 
| 4452 4634 | 
             
                #   in the resource record set, for example, the endpoint specified by
         | 
| @@ -4471,7 +4653,7 @@ module Aws::Route53 | |
| 4471 4653 | 
             
                #   For example, create a health check for each `HTTP` server that is
         | 
| 4472 4654 | 
             
                #   serving content for `www.example.com`. For the value of
         | 
| 4473 4655 | 
             
                #   `FullyQualifiedDomainName`, specify the domain name of the server
         | 
| 4474 | 
            -
                #   (such as `us-east- | 
| 4656 | 
            +
                #   (such as `us-east-2-www.example.com`), not the name of the resource
         | 
| 4475 4657 | 
             
                #   record sets (example.com).
         | 
| 4476 4658 | 
             
                #
         | 
| 4477 4659 | 
             
                #   n this configuration, if you create a health check for which the
         | 
| @@ -4482,14 +4664,15 @@ module Aws::Route53 | |
| 4482 4664 | 
             
                #   For more information, see the following topics in the *Amazon Route
         | 
| 4483 4665 | 
             
                #   53 Developer Guide*\:
         | 
| 4484 4666 | 
             
                #
         | 
| 4485 | 
            -
                #   * [Amazon Route 53 Health Checks and DNS Failover][ | 
| 4667 | 
            +
                #   * [Amazon Route 53 Health Checks and DNS Failover][2]
         | 
| 4486 4668 | 
             
                #
         | 
| 4487 | 
            -
                #   * [Configuring Failover in a Private Hosted Zone][ | 
| 4669 | 
            +
                #   * [Configuring Failover in a Private Hosted Zone][3]
         | 
| 4488 4670 | 
             
                #
         | 
| 4489 4671 | 
             
                #
         | 
| 4490 4672 | 
             
                #
         | 
| 4491 | 
            -
                #   [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
         | 
| 4492 | 
            -
                #   [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover | 
| 4673 | 
            +
                #   [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
         | 
| 4674 | 
            +
                #   [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
         | 
| 4675 | 
            +
                #   [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
         | 
| 4493 4676 | 
             
                #   @return [String]
         | 
| 4494 4677 | 
             
                #
         | 
| 4495 4678 | 
             
                # @!attribute [rw] traffic_policy_instance_id
         | 
| @@ -4507,6 +4690,8 @@ module Aws::Route53 | |
| 4507 4690 | 
             
                #   longer in use.
         | 
| 4508 4691 | 
             
                #   @return [String]
         | 
| 4509 4692 | 
             
                #
         | 
| 4693 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecordSet AWS API Documentation
         | 
| 4694 | 
            +
                #
         | 
| 4510 4695 | 
             
                class ResourceRecordSet < Struct.new(
         | 
| 4511 4696 | 
             
                  :name,
         | 
| 4512 4697 | 
             
                  :type,
         | 
| @@ -4541,6 +4726,8 @@ module Aws::Route53 | |
| 4541 4726 | 
             
                #   The tags associated with the specified resource.
         | 
| 4542 4727 | 
             
                #   @return [Array<Types::Tag>]
         | 
| 4543 4728 | 
             
                #
         | 
| 4729 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceTagSet AWS API Documentation
         | 
| 4730 | 
            +
                #
         | 
| 4544 4731 | 
             
                class ResourceTagSet < Struct.new(
         | 
| 4545 4732 | 
             
                  :resource_type,
         | 
| 4546 4733 | 
             
                  :resource_id,
         | 
| @@ -4567,6 +4754,8 @@ module Aws::Route53 | |
| 4567 4754 | 
             
                #   [1]: https://en.wikipedia.org/wiki/ISO_8601
         | 
| 4568 4755 | 
             
                #   @return [Time]
         | 
| 4569 4756 | 
             
                #
         | 
| 4757 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/StatusReport AWS API Documentation
         | 
| 4758 | 
            +
                #
         | 
| 4570 4759 | 
             
                class StatusReport < Struct.new(
         | 
| 4571 4760 | 
             
                  :status,
         | 
| 4572 4761 | 
             
                  :checked_time)
         | 
| @@ -4614,6 +4803,8 @@ module Aws::Route53 | |
| 4614 4803 | 
             
                #     the tag.
         | 
| 4615 4804 | 
             
                #   @return [String]
         | 
| 4616 4805 | 
             
                #
         | 
| 4806 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/Tag AWS API Documentation
         | 
| 4807 | 
            +
                #
         | 
| 4617 4808 | 
             
                class Tag < Struct.new(
         | 
| 4618 4809 | 
             
                  :key,
         | 
| 4619 4810 | 
             
                  :value)
         | 
| @@ -4709,6 +4900,8 @@ module Aws::Route53 | |
| 4709 4900 | 
             
                #   from 192.0.2.0/24. The default value is 24 bits.
         | 
| 4710 4901 | 
             
                #   @return [String]
         | 
| 4711 4902 | 
             
                #
         | 
| 4903 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TestDNSAnswerRequest AWS API Documentation
         | 
| 4904 | 
            +
                #
         | 
| 4712 4905 | 
             
                class TestDNSAnswerRequest < Struct.new(
         | 
| 4713 4906 | 
             
                  :hosted_zone_id,
         | 
| 4714 4907 | 
             
                  :record_name,
         | 
| @@ -4758,6 +4951,8 @@ module Aws::Route53 | |
| 4758 4951 | 
             
                #   either `UDP` or `TCP`.
         | 
| 4759 4952 | 
             
                #   @return [String]
         | 
| 4760 4953 | 
             
                #
         | 
| 4954 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TestDNSAnswerResponse AWS API Documentation
         | 
| 4955 | 
            +
                #
         | 
| 4761 4956 | 
             
                class TestDNSAnswerResponse < Struct.new(
         | 
| 4762 4957 | 
             
                  :nameserver,
         | 
| 4763 4958 | 
             
                  :record_name,
         | 
| @@ -4806,6 +5001,8 @@ module Aws::Route53 | |
| 4806 5001 | 
             
                #   if any.
         | 
| 4807 5002 | 
             
                #   @return [String]
         | 
| 4808 5003 | 
             
                #
         | 
| 5004 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicy AWS API Documentation
         | 
| 5005 | 
            +
                #
         | 
| 4809 5006 | 
             
                class TrafficPolicy < Struct.new(
         | 
| 4810 5007 | 
             
                  :id,
         | 
| 4811 5008 | 
             
                  :version,
         | 
| @@ -4881,6 +5078,8 @@ module Aws::Route53 | |
| 4881 5078 | 
             
                #   record sets that it created for this traffic policy instance.
         | 
| 4882 5079 | 
             
                #   @return [String]
         | 
| 4883 5080 | 
             
                #
         | 
| 5081 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyInstance AWS API Documentation
         | 
| 5082 | 
            +
                #
         | 
| 4884 5083 | 
             
                class TrafficPolicyInstance < Struct.new(
         | 
| 4885 5084 | 
             
                  :id,
         | 
| 4886 5085 | 
             
                  :hosted_zone_id,
         | 
| @@ -4922,6 +5121,8 @@ module Aws::Route53 | |
| 4922 5121 | 
             
                #   AWS account.
         | 
| 4923 5122 | 
             
                #   @return [Integer]
         | 
| 4924 5123 | 
             
                #
         | 
| 5124 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicySummary AWS API Documentation
         | 
| 5125 | 
            +
                #
         | 
| 4925 5126 | 
             
                class TrafficPolicySummary < Struct.new(
         | 
| 4926 5127 | 
             
                  :id,
         | 
| 4927 5128 | 
             
                  :name,
         | 
| @@ -4993,6 +5194,17 @@ module Aws::Route53 | |
| 4993 5194 | 
             
                #   that is returned by DNS, Amazon Route 53 then checks the health of
         | 
| 4994 5195 | 
             
                #   the endpoint.
         | 
| 4995 5196 | 
             
                #
         | 
| 5197 | 
            +
                #   Use one of the following formats for the value of `IPAddress`\:
         | 
| 5198 | 
            +
                #
         | 
| 5199 | 
            +
                #   * **IPv4 address**\: four values between 0 and 255, separated by
         | 
| 5200 | 
            +
                #     periods (.), for example, `192.0.2.44`.
         | 
| 5201 | 
            +
                #
         | 
| 5202 | 
            +
                #   * **IPv6 address**\: eight groups of four hexadecimal values,
         | 
| 5203 | 
            +
                #     separated by colons (:), for example,
         | 
| 5204 | 
            +
                #     `2001:0db8:85a3:0000:0000:abcd:0001:2345`. You can also shorten
         | 
| 5205 | 
            +
                #     IPv6 addresses as described in RFC 5952, for example,
         | 
| 5206 | 
            +
                #     `2001:db8:85a3::abcd:1:2345`.
         | 
| 5207 | 
            +
                #
         | 
| 4996 5208 | 
             
                #   If the endpoint is an EC2 instance, we recommend that you create an
         | 
| 4997 5209 | 
             
                #   Elastic IP address, associate it with your EC2 instance, and specify
         | 
| 4998 5210 | 
             
                #   the Elastic IP address for `IPAddress`. This ensures that the IP
         | 
| @@ -5102,7 +5314,7 @@ module Aws::Route53 | |
| 5102 5314 | 
             
                #   health check for each endpoint. For example, create a health check
         | 
| 5103 5315 | 
             
                #   for each HTTP server that is serving content for www.example.com.
         | 
| 5104 5316 | 
             
                #   For the value of `FullyQualifiedDomainName`, specify the domain name
         | 
| 5105 | 
            -
                #   of the server (such as `us-east- | 
| 5317 | 
            +
                #   of the server (such as `us-east-2-www.example.com`), not the name of
         | 
| 5106 5318 | 
             
                #   the resource record sets (www.example.com).
         | 
| 5107 5319 | 
             
                #
         | 
| 5108 5320 | 
             
                #   In this configuration, if the value of `FullyQualifiedDomainName`
         | 
| @@ -5132,6 +5344,9 @@ module Aws::Route53 | |
| 5132 5344 | 
             
                #   information, see [How Amazon Route 53 Determines Whether an Endpoint
         | 
| 5133 5345 | 
             
                #   Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
         | 
| 5134 5346 | 
             
                #
         | 
| 5347 | 
            +
                #   If you don't specify a value for `FailureThreshold`, the default
         | 
| 5348 | 
            +
                #   value is three health checks.
         | 
| 5349 | 
            +
                #
         | 
| 5135 5350 | 
             
                #
         | 
| 5136 5351 | 
             
                #
         | 
| 5137 5352 | 
             
                #   [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
         | 
| @@ -5222,6 +5437,8 @@ module Aws::Route53 | |
| 5222 5437 | 
             
                #     known status, the default status for the health check is healthy.
         | 
| 5223 5438 | 
             
                #   @return [String]
         | 
| 5224 5439 | 
             
                #
         | 
| 5440 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheckRequest AWS API Documentation
         | 
| 5441 | 
            +
                #
         | 
| 5225 5442 | 
             
                class UpdateHealthCheckRequest < Struct.new(
         | 
| 5226 5443 | 
             
                  :health_check_id,
         | 
| 5227 5444 | 
             
                  :health_check_version,
         | 
| @@ -5246,6 +5463,8 @@ module Aws::Route53 | |
| 5246 5463 | 
             
                #   is associated with the current AWS account.
         | 
| 5247 5464 | 
             
                #   @return [Types::HealthCheck]
         | 
| 5248 5465 | 
             
                #
         | 
| 5466 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheckResponse AWS API Documentation
         | 
| 5467 | 
            +
                #
         | 
| 5249 5468 | 
             
                class UpdateHealthCheckResponse < Struct.new(
         | 
| 5250 5469 | 
             
                  :health_check)
         | 
| 5251 5470 | 
             
                  include Aws::Structure
         | 
| @@ -5271,6 +5490,8 @@ module Aws::Route53 | |
| 5271 5490 | 
             
                #   `Comment` element, if any.
         | 
| 5272 5491 | 
             
                #   @return [String]
         | 
| 5273 5492 | 
             
                #
         | 
| 5493 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneCommentRequest AWS API Documentation
         | 
| 5494 | 
            +
                #
         | 
| 5274 5495 | 
             
                class UpdateHostedZoneCommentRequest < Struct.new(
         | 
| 5275 5496 | 
             
                  :id,
         | 
| 5276 5497 | 
             
                  :comment)
         | 
| @@ -5285,6 +5506,8 @@ module Aws::Route53 | |
| 5285 5506 | 
             
                #   zone.
         | 
| 5286 5507 | 
             
                #   @return [Types::HostedZone]
         | 
| 5287 5508 | 
             
                #
         | 
| 5509 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneCommentResponse AWS API Documentation
         | 
| 5510 | 
            +
                #
         | 
| 5288 5511 | 
             
                class UpdateHostedZoneCommentResponse < Struct.new(
         | 
| 5289 5512 | 
             
                  :hosted_zone)
         | 
| 5290 5513 | 
             
                  include Aws::Structure
         | 
| @@ -5316,6 +5539,8 @@ module Aws::Route53 | |
| 5316 5539 | 
             
                #   The new comment for the specified traffic policy and version.
         | 
| 5317 5540 | 
             
                #   @return [String]
         | 
| 5318 5541 | 
             
                #
         | 
| 5542 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyCommentRequest AWS API Documentation
         | 
| 5543 | 
            +
                #
         | 
| 5319 5544 | 
             
                class UpdateTrafficPolicyCommentRequest < Struct.new(
         | 
| 5320 5545 | 
             
                  :id,
         | 
| 5321 5546 | 
             
                  :version,
         | 
| @@ -5331,6 +5556,8 @@ module Aws::Route53 | |
| 5331 5556 | 
             
                #   policy.
         | 
| 5332 5557 | 
             
                #   @return [Types::TrafficPolicy]
         | 
| 5333 5558 | 
             
                #
         | 
| 5559 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyCommentResponse AWS API Documentation
         | 
| 5560 | 
            +
                #
         | 
| 5334 5561 | 
             
                class UpdateTrafficPolicyCommentResponse < Struct.new(
         | 
| 5335 5562 | 
             
                  :traffic_policy)
         | 
| 5336 5563 | 
             
                  include Aws::Structure
         | 
| @@ -5371,6 +5598,8 @@ module Aws::Route53 | |
| 5371 5598 | 
             
                #   instance.
         | 
| 5372 5599 | 
             
                #   @return [Integer]
         | 
| 5373 5600 | 
             
                #
         | 
| 5601 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyInstanceRequest AWS API Documentation
         | 
| 5602 | 
            +
                #
         | 
| 5374 5603 | 
             
                class UpdateTrafficPolicyInstanceRequest < Struct.new(
         | 
| 5375 5604 | 
             
                  :id,
         | 
| 5376 5605 | 
             
                  :ttl,
         | 
| @@ -5387,6 +5616,8 @@ module Aws::Route53 | |
| 5387 5616 | 
             
                #   instance.
         | 
| 5388 5617 | 
             
                #   @return [Types::TrafficPolicyInstance]
         | 
| 5389 5618 | 
             
                #
         | 
| 5619 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyInstanceResponse AWS API Documentation
         | 
| 5620 | 
            +
                #
         | 
| 5390 5621 | 
             
                class UpdateTrafficPolicyInstanceResponse < Struct.new(
         | 
| 5391 5622 | 
             
                  :traffic_policy_instance)
         | 
| 5392 5623 | 
             
                  include Aws::Structure
         | 
| @@ -5412,6 +5643,8 @@ module Aws::Route53 | |
| 5412 5643 | 
             
                #   The ID of an Amazon VPC.
         | 
| 5413 5644 | 
             
                #   @return [String]
         | 
| 5414 5645 | 
             
                #
         | 
| 5646 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/VPC AWS API Documentation
         | 
| 5647 | 
            +
                #
         | 
| 5415 5648 | 
             
                class VPC < Struct.new(
         | 
| 5416 5649 | 
             
                  :vpc_region,
         | 
| 5417 5650 | 
             
                  :vpc_id)
         |