aws-sdk-route53 1.37.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28cbda6b035c7f7aa1230439bc0896bc66bfaed94de3a4409f627f00a96c539a
4
- data.tar.gz: 04273371c6a292adcd5206501154b091e2f8adfa07b02c7ea7a795471c5ac9be
3
+ metadata.gz: 22ea9043d386e38fcf44c3e820e67fe772ad18f6fbb903168a053ae0deed5957
4
+ data.tar.gz: cb70e9e00a8ac713f1d941505ab7e9a20b29545b328d69cbc0d99161aa0037e7
5
5
  SHA512:
6
- metadata.gz: 835a4eb1f2e7c745fcb169d87f472fbcdc90e3a3189ea5d2b34b991da89c6fa1cd01b3bd20ad9928056ccc08c6ae21e6f994b124a4c68ffecad3a62c3d9cfdd4
7
- data.tar.gz: 9c8c855b9f097a5dd4097a35c2e4250557e88f2307961c426f17f436747f86e252c274804f095709107ce718772e7c939b683f6233d3bf46cbed6b3785cb36dd
6
+ metadata.gz: 8310ff7fea885169d527aa934c06edb0977b0cb06bba075be490060e3fe4abaebc9c09763cbe0c1f90cd8a62f43a05d45d6877e8ef0ecef35ebfe04292fcceff
7
+ data.tar.gz: 25c77fb3ad9aa490ee614d0f3def28fc27f4e5280d5805c8b42c482da76cc466d8df90db63f7e35651137ee30e5af3672339cdc311eaa940d0a2d2ae9f37d93f
@@ -45,9 +45,9 @@ require_relative 'aws-sdk-route53/customizations'
45
45
  #
46
46
  # See {Errors} for more information.
47
47
  #
48
- # @service
48
+ # @!group service
49
49
  module Aws::Route53
50
50
 
51
- GEM_VERSION = '1.37.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
@@ -87,13 +87,28 @@ module Aws::Route53
87
87
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
88
88
  # credentials.
89
89
  #
90
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
91
+ # shared file, such as `~/.aws/config`.
92
+ #
93
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
94
+ #
95
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
96
+ # assume a role after providing credentials via the web.
97
+ #
98
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
99
+ # access token generated from `aws login`.
100
+ #
101
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
102
+ # process that outputs to stdout.
103
+ #
90
104
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
91
105
  # from an EC2 IMDS on an EC2 instance.
92
106
  #
93
- # * `Aws::SharedCredentials` - Used for loading credentials from a
94
- # shared file, such as `~/.aws/config`.
107
+ # * `Aws::ECSCredentials` - Used for loading credentials from
108
+ # instances running in ECS.
95
109
  #
96
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
110
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
111
+ # from the Cognito Identity service.
97
112
  #
98
113
  # When `:credentials` are not configured directly, the following
99
114
  # locations will be searched for credentials:
@@ -103,10 +118,10 @@ module Aws::Route53
103
118
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
104
119
  # * `~/.aws/credentials`
105
120
  # * `~/.aws/config`
106
- # * EC2 IMDS instance profile - When used by default, the timeouts are
107
- # very aggressive. Construct and pass an instance of
108
- # `Aws::InstanceProfileCredentails` to enable retries and extended
109
- # timeouts.
121
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
+ # are very aggressive. Construct and pass an instance of
123
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
+ # enable retries and extended timeouts.
110
125
  #
111
126
  # @option options [required, String] :region
112
127
  # The AWS region to connect to. The configured `:region` is
@@ -316,30 +331,18 @@ module Aws::Route53
316
331
 
317
332
  # Associates an Amazon VPC with a private hosted zone.
318
333
  #
319
- # <note markdown="1"> To perform the association, the VPC and the private hosted zone must
320
- # already exist. Also, you can't convert a public hosted zone into a
321
- # private hosted zone.
322
- #
323
- # </note>
324
- #
325
- # If you want to associate a VPC that was created by one AWS account
326
- # with a private hosted zone that was created by a different account, do
327
- # one of the following:
328
- #
329
- # * Use the AWS account that created the private hosted zone to submit a
330
- # [CreateVPCAssociationAuthorization][1] request. Then use the account
331
- # that created the VPC to submit an `AssociateVPCWithHostedZone`
332
- # request.
333
- #
334
- # * If a subnet in the VPC was shared with another account, you can use
335
- # the account that the subnet was shared with to submit an
336
- # `AssociateVPCWithHostedZone` request. For more information about
337
- # sharing subnets, see [Working with Shared VPCs][2].
338
- #
334
+ # To perform the association, the VPC and the private hosted zone must
335
+ # already exist. You can't convert a public hosted zone into a private
336
+ # hosted zone.
339
337
  #
338
+ # <note markdown="1"> If you want to associate a VPC that was created by using one AWS
339
+ # account with a private hosted zone that was created by using a
340
+ # different account, the AWS account that created the private hosted
341
+ # zone must first submit a `CreateVPCAssociationAuthorization` request.
342
+ # Then the account that created the VPC must submit an
343
+ # `AssociateVPCWithHostedZone` request.
340
344
  #
341
- # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateVPCAssociationAuthorization.html
342
- # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html
345
+ # </note>
343
346
  #
344
347
  # @option params [required, String] :hosted_zone_id
345
348
  # The ID of the private hosted zone that you want to associate an Amazon
@@ -2246,6 +2249,24 @@ module Aws::Route53
2246
2249
 
2247
2250
  # Deletes a traffic policy.
2248
2251
  #
2252
+ # When you delete a traffic policy, Route 53 sets a flag on the policy
2253
+ # to indicate that it has been deleted. However, Route 53 never fully
2254
+ # deletes the traffic policy. Note the following:
2255
+ #
2256
+ # * Deleted traffic policies aren't listed if you run
2257
+ # [ListTrafficPolicies][1].
2258
+ #
2259
+ # * There's no way to get a list of deleted policies.
2260
+ #
2261
+ # * If you retain the ID of the policy, you can get information about
2262
+ # the policy, including the traffic policy document, by running
2263
+ # [GetTrafficPolicy][2].
2264
+ #
2265
+ #
2266
+ #
2267
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListTrafficPolicies.html
2268
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html
2269
+ #
2249
2270
  # @option params [required, String] :id
2250
2271
  # The ID of the traffic policy that you want to delete.
2251
2272
  #
@@ -2346,16 +2367,33 @@ module Aws::Route53
2346
2367
  req.send_request(options)
2347
2368
  end
2348
2369
 
2349
- # Disassociates a VPC from a Amazon Route 53 private hosted zone. Note
2350
- # the following:
2370
+ # Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an
2371
+ # Amazon Route 53 private hosted zone. Note the following:
2351
2372
  #
2352
- # * You can't disassociate the last VPC from a private hosted zone.
2373
+ # * You can't disassociate the last Amazon VPC from a private hosted
2374
+ # zone.
2353
2375
  #
2354
2376
  # * You can't convert a private hosted zone into a public hosted zone.
2355
2377
  #
2356
2378
  # * You can submit a `DisassociateVPCFromHostedZone` request using
2357
2379
  # either the account that created the hosted zone or the account that
2358
- # created the VPC.
2380
+ # created the Amazon VPC.
2381
+ #
2382
+ # * Some services, such as AWS Cloud Map and Amazon Elastic File System
2383
+ # (Amazon EFS) automatically create hosted zones and associate VPCs
2384
+ # with the hosted zones. A service can create a hosted zone using your
2385
+ # account or using its own account. You can disassociate a VPC from a
2386
+ # hosted zone only if the service created the hosted zone using your
2387
+ # account.
2388
+ #
2389
+ # When you run [DisassociateVPCFromHostedZone][1], if the hosted zone
2390
+ # has a value for `OwningAccount`, you can use
2391
+ # `DisassociateVPCFromHostedZone`. If the hosted zone has a value for
2392
+ # `OwningService`, you can't use `DisassociateVPCFromHostedZone`.
2393
+ #
2394
+ #
2395
+ #
2396
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZonesByVPC.html
2359
2397
  #
2360
2398
  # @option params [required, String] :hosted_zone_id
2361
2399
  # The ID of the private hosted zone that you want to disassociate a VPC
@@ -3062,6 +3100,13 @@ module Aws::Route53
3062
3100
 
3063
3101
  # Gets information about a specific traffic policy version.
3064
3102
  #
3103
+ # For information about how of deleting a traffic policy affects the
3104
+ # response from `GetTrafficPolicy`, see [DeleteTrafficPolicy][1].
3105
+ #
3106
+ #
3107
+ #
3108
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html
3109
+ #
3065
3110
  # @option params [required, String] :id
3066
3111
  # The ID of the traffic policy that you want to get information about.
3067
3112
  #
@@ -3559,6 +3604,80 @@ module Aws::Route53
3559
3604
  req.send_request(options)
3560
3605
  end
3561
3606
 
3607
+ # Lists all the private hosted zones that a specified VPC is associated
3608
+ # with, regardless of which AWS account or AWS service owns the hosted
3609
+ # zones. The `HostedZoneOwner` structure in the response contains one of
3610
+ # the following values:
3611
+ #
3612
+ # * An `OwningAccount` element, which contains the account number of
3613
+ # either the current AWS account or another AWS account. Some
3614
+ # services, such as AWS Cloud Map, create hosted zones using the
3615
+ # current account.
3616
+ #
3617
+ # * An `OwningService` element, which identifies the AWS service that
3618
+ # created and owns the hosted zone. For example, if a hosted zone was
3619
+ # created by Amazon Elastic File System (Amazon EFS), the value of
3620
+ # `Owner` is `efs.amazonaws.com`.
3621
+ #
3622
+ # @option params [required, String] :vpc_id
3623
+ # The ID of the Amazon VPC that you want to list hosted zones for.
3624
+ #
3625
+ # @option params [required, String] :vpc_region
3626
+ # For the Amazon VPC that you specified for `VPCId`, the AWS Region that
3627
+ # you created the VPC in.
3628
+ #
3629
+ # @option params [Integer] :max_items
3630
+ # (Optional) The maximum number of hosted zones that you want Amazon
3631
+ # Route 53 to return. If the specified VPC is associated with more than
3632
+ # `MaxItems` hosted zones, the response includes a `NextToken` element.
3633
+ # `NextToken` contains an encrypted token that identifies the first
3634
+ # hosted zone that Route 53 will return if you submit another request.
3635
+ #
3636
+ # @option params [String] :next_token
3637
+ # If the previous response included a `NextToken` element, the specified
3638
+ # VPC is associated with more hosted zones. To get more hosted zones,
3639
+ # submit another `ListHostedZonesByVPC` request.
3640
+ #
3641
+ # For the value of `NextToken`, specify the value of `NextToken` from
3642
+ # the previous response.
3643
+ #
3644
+ # If the previous response didn't include a `NextToken` element, there
3645
+ # are no more hosted zones to get.
3646
+ #
3647
+ # @return [Types::ListHostedZonesByVPCResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3648
+ #
3649
+ # * {Types::ListHostedZonesByVPCResponse#hosted_zone_summaries #hosted_zone_summaries} => Array&lt;Types::HostedZoneSummary&gt;
3650
+ # * {Types::ListHostedZonesByVPCResponse#max_items #max_items} => Integer
3651
+ # * {Types::ListHostedZonesByVPCResponse#next_token #next_token} => String
3652
+ #
3653
+ # @example Request syntax with placeholder values
3654
+ #
3655
+ # resp = client.list_hosted_zones_by_vpc({
3656
+ # vpc_id: "VPCId", # required
3657
+ # vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
3658
+ # max_items: 1,
3659
+ # next_token: "PaginationToken",
3660
+ # })
3661
+ #
3662
+ # @example Response structure
3663
+ #
3664
+ # resp.hosted_zone_summaries #=> Array
3665
+ # resp.hosted_zone_summaries[0].hosted_zone_id #=> String
3666
+ # resp.hosted_zone_summaries[0].name #=> String
3667
+ # resp.hosted_zone_summaries[0].owner.owning_account #=> String
3668
+ # resp.hosted_zone_summaries[0].owner.owning_service #=> String
3669
+ # resp.max_items #=> Integer
3670
+ # resp.next_token #=> String
3671
+ #
3672
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPC AWS API Documentation
3673
+ #
3674
+ # @overload list_hosted_zones_by_vpc(params = {})
3675
+ # @param [Hash] params ({})
3676
+ def list_hosted_zones_by_vpc(params = {}, options = {})
3677
+ req = build_request(:list_hosted_zones_by_vpc, params)
3678
+ req.send_request(options)
3679
+ end
3680
+
3562
3681
  # Lists the configurations for DNS query logging that are associated
3563
3682
  # with the current AWS account or the configuration that is associated
3564
3683
  # with a specified hosted zone.
@@ -3981,6 +4100,13 @@ module Aws::Route53
3981
4100
  # that is associated with the current AWS account. Policies are listed
3982
4101
  # in the order that they were created in.
3983
4102
  #
4103
+ # For information about how of deleting a traffic policy affects the
4104
+ # response from `ListTrafficPolicies`, see [DeleteTrafficPolicy][1].
4105
+ #
4106
+ #
4107
+ #
4108
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html
4109
+ #
3984
4110
  # @option params [String] :traffic_policy_id_marker
3985
4111
  # (Conditional) For your first request to `ListTrafficPolicies`, don't
3986
4112
  # include the `TrafficPolicyIdMarker` parameter.
@@ -5138,7 +5264,7 @@ module Aws::Route53
5138
5264
  params: params,
5139
5265
  config: config)
5140
5266
  context[:gem_name] = 'aws-sdk-route53'
5141
- context[:gem_version] = '1.37.0'
5267
+ context[:gem_version] = '1.42.0'
5142
5268
  Seahorse::Client::Request.new(handlers, context)
5143
5269
  end
5144
5270
 
@@ -13,6 +13,7 @@ module Aws::Route53
13
13
 
14
14
  include Seahorse::Model
15
15
 
16
+ AWSAccountID = Shapes::StringShape.new(name: 'AWSAccountID')
16
17
  AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
17
18
  AccountLimitType = Shapes::StringShape.new(name: 'AccountLimitType')
18
19
  AlarmIdentifier = Shapes::StructureShape.new(name: 'AlarmIdentifier')
@@ -162,7 +163,11 @@ module Aws::Route53
162
163
  HostedZoneNotEmpty = Shapes::StructureShape.new(name: 'HostedZoneNotEmpty')
163
164
  HostedZoneNotFound = Shapes::StructureShape.new(name: 'HostedZoneNotFound')
164
165
  HostedZoneNotPrivate = Shapes::StructureShape.new(name: 'HostedZoneNotPrivate')
166
+ HostedZoneOwner = Shapes::StructureShape.new(name: 'HostedZoneOwner')
167
+ HostedZoneOwningService = Shapes::StringShape.new(name: 'HostedZoneOwningService')
165
168
  HostedZoneRRSetCount = Shapes::IntegerShape.new(name: 'HostedZoneRRSetCount')
169
+ HostedZoneSummaries = Shapes::ListShape.new(name: 'HostedZoneSummaries')
170
+ HostedZoneSummary = Shapes::StructureShape.new(name: 'HostedZoneSummary')
166
171
  HostedZones = Shapes::ListShape.new(name: 'HostedZones')
167
172
  IPAddress = Shapes::StringShape.new(name: 'IPAddress')
168
173
  IPAddressCidr = Shapes::StringShape.new(name: 'IPAddressCidr')
@@ -188,6 +193,8 @@ module Aws::Route53
188
193
  ListHealthChecksResponse = Shapes::StructureShape.new(name: 'ListHealthChecksResponse')
189
194
  ListHostedZonesByNameRequest = Shapes::StructureShape.new(name: 'ListHostedZonesByNameRequest')
190
195
  ListHostedZonesByNameResponse = Shapes::StructureShape.new(name: 'ListHostedZonesByNameResponse')
196
+ ListHostedZonesByVPCRequest = Shapes::StructureShape.new(name: 'ListHostedZonesByVPCRequest')
197
+ ListHostedZonesByVPCResponse = Shapes::StructureShape.new(name: 'ListHostedZonesByVPCResponse')
191
198
  ListHostedZonesRequest = Shapes::StructureShape.new(name: 'ListHostedZonesRequest')
192
199
  ListHostedZonesResponse = Shapes::StructureShape.new(name: 'ListHostedZonesResponse')
193
200
  ListQueryLoggingConfigsRequest = Shapes::StructureShape.new(name: 'ListQueryLoggingConfigsRequest')
@@ -752,6 +759,17 @@ module Aws::Route53
752
759
  HostedZoneNotPrivate.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
753
760
  HostedZoneNotPrivate.struct_class = Types::HostedZoneNotPrivate
754
761
 
762
+ HostedZoneOwner.add_member(:owning_account, Shapes::ShapeRef.new(shape: AWSAccountID, location_name: "OwningAccount"))
763
+ HostedZoneOwner.add_member(:owning_service, Shapes::ShapeRef.new(shape: HostedZoneOwningService, location_name: "OwningService"))
764
+ HostedZoneOwner.struct_class = Types::HostedZoneOwner
765
+
766
+ HostedZoneSummaries.member = Shapes::ShapeRef.new(shape: HostedZoneSummary, location_name: "HostedZoneSummary")
767
+
768
+ HostedZoneSummary.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "HostedZoneId"))
769
+ HostedZoneSummary.add_member(:name, Shapes::ShapeRef.new(shape: DNSName, required: true, location_name: "Name"))
770
+ HostedZoneSummary.add_member(:owner, Shapes::ShapeRef.new(shape: HostedZoneOwner, required: true, location_name: "Owner"))
771
+ HostedZoneSummary.struct_class = Types::HostedZoneSummary
772
+
755
773
  HostedZones.member = Shapes::ShapeRef.new(shape: HostedZone, location_name: "HostedZone")
756
774
 
757
775
  IncompatibleVersion.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
@@ -831,6 +849,17 @@ module Aws::Route53
831
849
  ListHostedZonesByNameResponse.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, required: true, location_name: "MaxItems"))
832
850
  ListHostedZonesByNameResponse.struct_class = Types::ListHostedZonesByNameResponse
833
851
 
852
+ ListHostedZonesByVPCRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VPCId, required: true, location: "querystring", location_name: "vpcid"))
853
+ ListHostedZonesByVPCRequest.add_member(:vpc_region, Shapes::ShapeRef.new(shape: VPCRegion, required: true, location: "querystring", location_name: "vpcregion"))
854
+ ListHostedZonesByVPCRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location: "querystring", location_name: "maxitems"))
855
+ ListHostedZonesByVPCRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nexttoken"))
856
+ ListHostedZonesByVPCRequest.struct_class = Types::ListHostedZonesByVPCRequest
857
+
858
+ ListHostedZonesByVPCResponse.add_member(:hosted_zone_summaries, Shapes::ShapeRef.new(shape: HostedZoneSummaries, required: true, location_name: "HostedZoneSummaries"))
859
+ ListHostedZonesByVPCResponse.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, required: true, location_name: "MaxItems"))
860
+ ListHostedZonesByVPCResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
861
+ ListHostedZonesByVPCResponse.struct_class = Types::ListHostedZonesByVPCResponse
862
+
834
863
  ListHostedZonesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: PageMarker, location: "querystring", location_name: "marker"))
835
864
  ListHostedZonesRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location: "querystring", location_name: "maxitems"))
836
865
  ListHostedZonesRequest.add_member(:delegation_set_id, Shapes::ShapeRef.new(shape: ResourceId, location: "querystring", location_name: "delegationsetid"))
@@ -1747,6 +1776,16 @@ module Aws::Route53
1747
1776
  o.errors << Shapes::ShapeRef.new(shape: InvalidDomainName)
1748
1777
  end)
1749
1778
 
1779
+ api.add_operation(:list_hosted_zones_by_vpc, Seahorse::Model::Operation.new.tap do |o|
1780
+ o.name = "ListHostedZonesByVPC"
1781
+ o.http_method = "GET"
1782
+ o.http_request_uri = "/2013-04-01/hostedzonesbyvpc"
1783
+ o.input = Shapes::ShapeRef.new(shape: ListHostedZonesByVPCRequest)
1784
+ o.output = Shapes::ShapeRef.new(shape: ListHostedZonesByVPCResponse)
1785
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
1786
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationToken)
1787
+ end)
1788
+
1750
1789
  api.add_operation(:list_query_logging_configs, Seahorse::Model::Operation.new.tap do |o|
1751
1790
  o.name = "ListQueryLoggingConfigs"
1752
1791
  o.http_method = "GET"
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module Route53
3
5
  module Plugins
@@ -48,6 +48,7 @@ module Aws::Route53
48
48
  class AccountLimit < Struct.new(
49
49
  :type,
50
50
  :value)
51
+ SENSITIVE = []
51
52
  include Aws::Structure
52
53
  end
53
54
 
@@ -103,6 +104,7 @@ module Aws::Route53
103
104
  class AlarmIdentifier < Struct.new(
104
105
  :region,
105
106
  :name)
107
+ SENSITIVE = []
106
108
  include Aws::Structure
107
109
  end
108
110
 
@@ -511,6 +513,7 @@ module Aws::Route53
511
513
  :hosted_zone_id,
512
514
  :dns_name,
513
515
  :evaluate_target_health)
516
+ SENSITIVE = []
514
517
  include Aws::Structure
515
518
  end
516
519
 
@@ -552,6 +555,7 @@ module Aws::Route53
552
555
  :hosted_zone_id,
553
556
  :vpc,
554
557
  :comment)
558
+ SENSITIVE = []
555
559
  include Aws::Structure
556
560
  end
557
561
 
@@ -566,6 +570,7 @@ module Aws::Route53
566
570
  #
567
571
  class AssociateVPCWithHostedZoneResponse < Struct.new(
568
572
  :change_info)
573
+ SENSITIVE = []
569
574
  include Aws::Structure
570
575
  end
571
576
 
@@ -640,6 +645,7 @@ module Aws::Route53
640
645
  class Change < Struct.new(
641
646
  :action,
642
647
  :resource_record_set)
648
+ SENSITIVE = []
643
649
  include Aws::Structure
644
650
  end
645
651
 
@@ -698,6 +704,7 @@ module Aws::Route53
698
704
  class ChangeBatch < Struct.new(
699
705
  :comment,
700
706
  :changes)
707
+ SENSITIVE = []
701
708
  include Aws::Structure
702
709
  end
703
710
 
@@ -743,6 +750,7 @@ module Aws::Route53
743
750
  :status,
744
751
  :submitted_at,
745
752
  :comment)
753
+ SENSITIVE = []
746
754
  include Aws::Structure
747
755
  end
748
756
 
@@ -806,6 +814,7 @@ module Aws::Route53
806
814
  class ChangeResourceRecordSetsRequest < Struct.new(
807
815
  :hosted_zone_id,
808
816
  :change_batch)
817
+ SENSITIVE = []
809
818
  include Aws::Structure
810
819
  end
811
820
 
@@ -827,6 +836,7 @@ module Aws::Route53
827
836
  #
828
837
  class ChangeResourceRecordSetsResponse < Struct.new(
829
838
  :change_info)
839
+ SENSITIVE = []
830
840
  include Aws::Structure
831
841
  end
832
842
 
@@ -882,6 +892,7 @@ module Aws::Route53
882
892
  :resource_id,
883
893
  :add_tags,
884
894
  :remove_tag_keys)
895
+ SENSITIVE = []
885
896
  include Aws::Structure
886
897
  end
887
898
 
@@ -956,6 +967,7 @@ module Aws::Route53
956
967
  :namespace,
957
968
  :statistic,
958
969
  :dimensions)
970
+ SENSITIVE = []
959
971
  include Aws::Structure
960
972
  end
961
973
 
@@ -970,6 +982,7 @@ module Aws::Route53
970
982
  #
971
983
  class ConcurrentModification < Struct.new(
972
984
  :message)
985
+ SENSITIVE = []
973
986
  include Aws::Structure
974
987
  end
975
988
 
@@ -1004,6 +1017,7 @@ module Aws::Route53
1004
1017
  #
1005
1018
  class ConflictingDomainExists < Struct.new(
1006
1019
  :message)
1020
+ SENSITIVE = []
1007
1021
  include Aws::Structure
1008
1022
  end
1009
1023
 
@@ -1020,6 +1034,7 @@ module Aws::Route53
1020
1034
  #
1021
1035
  class ConflictingTypes < Struct.new(
1022
1036
  :message)
1037
+ SENSITIVE = []
1023
1038
  include Aws::Structure
1024
1039
  end
1025
1040
 
@@ -1087,6 +1102,7 @@ module Aws::Route53
1087
1102
  class CreateHealthCheckRequest < Struct.new(
1088
1103
  :caller_reference,
1089
1104
  :health_check_config)
1105
+ SENSITIVE = []
1090
1106
  include Aws::Structure
1091
1107
  end
1092
1108
 
@@ -1107,6 +1123,7 @@ module Aws::Route53
1107
1123
  class CreateHealthCheckResponse < Struct.new(
1108
1124
  :health_check,
1109
1125
  :location)
1126
+ SENSITIVE = []
1110
1127
  include Aws::Structure
1111
1128
  end
1112
1129
 
@@ -1197,6 +1214,7 @@ module Aws::Route53
1197
1214
  :caller_reference,
1198
1215
  :hosted_zone_config,
1199
1216
  :delegation_set_id)
1217
+ SENSITIVE = []
1200
1218
  include Aws::Structure
1201
1219
  end
1202
1220
 
@@ -1234,6 +1252,7 @@ module Aws::Route53
1234
1252
  :delegation_set,
1235
1253
  :vpc,
1236
1254
  :location)
1255
+ SENSITIVE = []
1237
1256
  include Aws::Structure
1238
1257
  end
1239
1258
 
@@ -1272,6 +1291,7 @@ module Aws::Route53
1272
1291
  class CreateQueryLoggingConfigRequest < Struct.new(
1273
1292
  :hosted_zone_id,
1274
1293
  :cloud_watch_logs_log_group_arn)
1294
+ SENSITIVE = []
1275
1295
  include Aws::Structure
1276
1296
  end
1277
1297
 
@@ -1291,6 +1311,7 @@ module Aws::Route53
1291
1311
  class CreateQueryLoggingConfigResponse < Struct.new(
1292
1312
  :query_logging_config,
1293
1313
  :location)
1314
+ SENSITIVE = []
1294
1315
  include Aws::Structure
1295
1316
  end
1296
1317
 
@@ -1321,6 +1342,7 @@ module Aws::Route53
1321
1342
  class CreateReusableDelegationSetRequest < Struct.new(
1322
1343
  :caller_reference,
1323
1344
  :hosted_zone_id)
1345
+ SENSITIVE = []
1324
1346
  include Aws::Structure
1325
1347
  end
1326
1348
 
@@ -1337,6 +1359,7 @@ module Aws::Route53
1337
1359
  class CreateReusableDelegationSetResponse < Struct.new(
1338
1360
  :delegation_set,
1339
1361
  :location)
1362
+ SENSITIVE = []
1340
1363
  include Aws::Structure
1341
1364
  end
1342
1365
 
@@ -1391,6 +1414,7 @@ module Aws::Route53
1391
1414
  :ttl,
1392
1415
  :traffic_policy_id,
1393
1416
  :traffic_policy_version)
1417
+ SENSITIVE = []
1394
1418
  include Aws::Structure
1395
1419
  end
1396
1420
 
@@ -1411,6 +1435,7 @@ module Aws::Route53
1411
1435
  class CreateTrafficPolicyInstanceResponse < Struct.new(
1412
1436
  :traffic_policy_instance,
1413
1437
  :location)
1438
+ SENSITIVE = []
1414
1439
  include Aws::Structure
1415
1440
  end
1416
1441
 
@@ -1450,6 +1475,7 @@ module Aws::Route53
1450
1475
  :name,
1451
1476
  :document,
1452
1477
  :comment)
1478
+ SENSITIVE = []
1453
1479
  include Aws::Structure
1454
1480
  end
1455
1481
 
@@ -1469,6 +1495,7 @@ module Aws::Route53
1469
1495
  class CreateTrafficPolicyResponse < Struct.new(
1470
1496
  :traffic_policy,
1471
1497
  :location)
1498
+ SENSITIVE = []
1472
1499
  include Aws::Structure
1473
1500
  end
1474
1501
 
@@ -1511,6 +1538,7 @@ module Aws::Route53
1511
1538
  :id,
1512
1539
  :document,
1513
1540
  :comment)
1541
+ SENSITIVE = []
1514
1542
  include Aws::Structure
1515
1543
  end
1516
1544
 
@@ -1531,6 +1559,7 @@ module Aws::Route53
1531
1559
  class CreateTrafficPolicyVersionResponse < Struct.new(
1532
1560
  :traffic_policy,
1533
1561
  :location)
1562
+ SENSITIVE = []
1534
1563
  include Aws::Structure
1535
1564
  end
1536
1565
 
@@ -1565,6 +1594,7 @@ module Aws::Route53
1565
1594
  class CreateVPCAssociationAuthorizationRequest < Struct.new(
1566
1595
  :hosted_zone_id,
1567
1596
  :vpc)
1597
+ SENSITIVE = []
1568
1598
  include Aws::Structure
1569
1599
  end
1570
1600
 
@@ -1585,6 +1615,7 @@ module Aws::Route53
1585
1615
  class CreateVPCAssociationAuthorizationResponse < Struct.new(
1586
1616
  :hosted_zone_id,
1587
1617
  :vpc)
1618
+ SENSITIVE = []
1588
1619
  include Aws::Structure
1589
1620
  end
1590
1621
 
@@ -1611,6 +1642,7 @@ module Aws::Route53
1611
1642
  :id,
1612
1643
  :caller_reference,
1613
1644
  :name_servers)
1645
+ SENSITIVE = []
1614
1646
  include Aws::Structure
1615
1647
  end
1616
1648
 
@@ -1625,6 +1657,7 @@ module Aws::Route53
1625
1657
  #
1626
1658
  class DelegationSetAlreadyCreated < Struct.new(
1627
1659
  :message)
1660
+ SENSITIVE = []
1628
1661
  include Aws::Structure
1629
1662
  end
1630
1663
 
@@ -1638,6 +1671,7 @@ module Aws::Route53
1638
1671
  #
1639
1672
  class DelegationSetAlreadyReusable < Struct.new(
1640
1673
  :message)
1674
+ SENSITIVE = []
1641
1675
  include Aws::Structure
1642
1676
  end
1643
1677
 
@@ -1652,6 +1686,7 @@ module Aws::Route53
1652
1686
  #
1653
1687
  class DelegationSetInUse < Struct.new(
1654
1688
  :message)
1689
+ SENSITIVE = []
1655
1690
  include Aws::Structure
1656
1691
  end
1657
1692
 
@@ -1669,6 +1704,7 @@ module Aws::Route53
1669
1704
  #
1670
1705
  class DelegationSetNotAvailable < Struct.new(
1671
1706
  :message)
1707
+ SENSITIVE = []
1672
1708
  include Aws::Structure
1673
1709
  end
1674
1710
 
@@ -1682,6 +1718,7 @@ module Aws::Route53
1682
1718
  #
1683
1719
  class DelegationSetNotReusable < Struct.new(
1684
1720
  :message)
1721
+ SENSITIVE = []
1685
1722
  include Aws::Structure
1686
1723
  end
1687
1724
 
@@ -1702,6 +1739,7 @@ module Aws::Route53
1702
1739
  #
1703
1740
  class DeleteHealthCheckRequest < Struct.new(
1704
1741
  :health_check_id)
1742
+ SENSITIVE = []
1705
1743
  include Aws::Structure
1706
1744
  end
1707
1745
 
@@ -1728,6 +1766,7 @@ module Aws::Route53
1728
1766
  #
1729
1767
  class DeleteHostedZoneRequest < Struct.new(
1730
1768
  :id)
1769
+ SENSITIVE = []
1731
1770
  include Aws::Structure
1732
1771
  end
1733
1772
 
@@ -1743,6 +1782,7 @@ module Aws::Route53
1743
1782
  #
1744
1783
  class DeleteHostedZoneResponse < Struct.new(
1745
1784
  :change_info)
1785
+ SENSITIVE = []
1746
1786
  include Aws::Structure
1747
1787
  end
1748
1788
 
@@ -1761,6 +1801,7 @@ module Aws::Route53
1761
1801
  #
1762
1802
  class DeleteQueryLoggingConfigRequest < Struct.new(
1763
1803
  :id)
1804
+ SENSITIVE = []
1764
1805
  include Aws::Structure
1765
1806
  end
1766
1807
 
@@ -1785,6 +1826,7 @@ module Aws::Route53
1785
1826
  #
1786
1827
  class DeleteReusableDelegationSetRequest < Struct.new(
1787
1828
  :id)
1829
+ SENSITIVE = []
1788
1830
  include Aws::Structure
1789
1831
  end
1790
1832
 
@@ -1815,6 +1857,7 @@ module Aws::Route53
1815
1857
  #
1816
1858
  class DeleteTrafficPolicyInstanceRequest < Struct.new(
1817
1859
  :id)
1860
+ SENSITIVE = []
1818
1861
  include Aws::Structure
1819
1862
  end
1820
1863
 
@@ -1847,6 +1890,7 @@ module Aws::Route53
1847
1890
  class DeleteTrafficPolicyRequest < Struct.new(
1848
1891
  :id,
1849
1892
  :version)
1893
+ SENSITIVE = []
1850
1894
  include Aws::Structure
1851
1895
  end
1852
1896
 
@@ -1889,6 +1933,7 @@ module Aws::Route53
1889
1933
  class DeleteVPCAssociationAuthorizationRequest < Struct.new(
1890
1934
  :hosted_zone_id,
1891
1935
  :vpc)
1936
+ SENSITIVE = []
1892
1937
  include Aws::Structure
1893
1938
  end
1894
1939
 
@@ -1916,6 +1961,7 @@ module Aws::Route53
1916
1961
  class Dimension < Struct.new(
1917
1962
  :name,
1918
1963
  :value)
1964
+ SENSITIVE = []
1919
1965
  include Aws::Structure
1920
1966
  end
1921
1967
 
@@ -1954,6 +2000,7 @@ module Aws::Route53
1954
2000
  :hosted_zone_id,
1955
2001
  :vpc,
1956
2002
  :comment)
2003
+ SENSITIVE = []
1957
2004
  include Aws::Structure
1958
2005
  end
1959
2006
 
@@ -1969,6 +2016,7 @@ module Aws::Route53
1969
2016
  #
1970
2017
  class DisassociateVPCFromHostedZoneResponse < Struct.new(
1971
2018
  :change_info)
2019
+ SENSITIVE = []
1972
2020
  include Aws::Structure
1973
2021
  end
1974
2022
 
@@ -2039,6 +2087,7 @@ module Aws::Route53
2039
2087
  :continent_code,
2040
2088
  :country_code,
2041
2089
  :subdivision_code)
2090
+ SENSITIVE = []
2042
2091
  include Aws::Structure
2043
2092
  end
2044
2093
 
@@ -2080,6 +2129,7 @@ module Aws::Route53
2080
2129
  :country_name,
2081
2130
  :subdivision_code,
2082
2131
  :subdivision_name)
2132
+ SENSITIVE = []
2083
2133
  include Aws::Structure
2084
2134
  end
2085
2135
 
@@ -2119,6 +2169,7 @@ module Aws::Route53
2119
2169
  #
2120
2170
  class GetAccountLimitRequest < Struct.new(
2121
2171
  :type)
2172
+ SENSITIVE = []
2122
2173
  include Aws::Structure
2123
2174
  end
2124
2175
 
@@ -2144,6 +2195,7 @@ module Aws::Route53
2144
2195
  class GetAccountLimitResponse < Struct.new(
2145
2196
  :limit,
2146
2197
  :count)
2198
+ SENSITIVE = []
2147
2199
  include Aws::Structure
2148
2200
  end
2149
2201
 
@@ -2166,6 +2218,7 @@ module Aws::Route53
2166
2218
  #
2167
2219
  class GetChangeRequest < Struct.new(
2168
2220
  :id)
2221
+ SENSITIVE = []
2169
2222
  include Aws::Structure
2170
2223
  end
2171
2224
 
@@ -2180,6 +2233,7 @@ module Aws::Route53
2180
2233
  #
2181
2234
  class GetChangeResponse < Struct.new(
2182
2235
  :change_info)
2236
+ SENSITIVE = []
2183
2237
  include Aws::Structure
2184
2238
  end
2185
2239
 
@@ -2202,6 +2256,7 @@ module Aws::Route53
2202
2256
  #
2203
2257
  class GetCheckerIpRangesResponse < Struct.new(
2204
2258
  :checker_ip_ranges)
2259
+ SENSITIVE = []
2205
2260
  include Aws::Structure
2206
2261
  end
2207
2262
 
@@ -2267,6 +2322,7 @@ module Aws::Route53
2267
2322
  :continent_code,
2268
2323
  :country_code,
2269
2324
  :subdivision_code)
2325
+ SENSITIVE = []
2270
2326
  include Aws::Structure
2271
2327
  end
2272
2328
 
@@ -2282,6 +2338,7 @@ module Aws::Route53
2282
2338
  #
2283
2339
  class GetGeoLocationResponse < Struct.new(
2284
2340
  :geo_location_details)
2341
+ SENSITIVE = []
2285
2342
  include Aws::Structure
2286
2343
  end
2287
2344
 
@@ -2305,6 +2362,7 @@ module Aws::Route53
2305
2362
  #
2306
2363
  class GetHealthCheckCountResponse < Struct.new(
2307
2364
  :health_check_count)
2365
+ SENSITIVE = []
2308
2366
  include Aws::Structure
2309
2367
  end
2310
2368
 
@@ -2334,6 +2392,7 @@ module Aws::Route53
2334
2392
  #
2335
2393
  class GetHealthCheckLastFailureReasonRequest < Struct.new(
2336
2394
  :health_check_id)
2395
+ SENSITIVE = []
2337
2396
  include Aws::Structure
2338
2397
  end
2339
2398
 
@@ -2349,6 +2408,7 @@ module Aws::Route53
2349
2408
  #
2350
2409
  class GetHealthCheckLastFailureReasonResponse < Struct.new(
2351
2410
  :health_check_observations)
2411
+ SENSITIVE = []
2352
2412
  include Aws::Structure
2353
2413
  end
2354
2414
 
@@ -2372,6 +2432,7 @@ module Aws::Route53
2372
2432
  #
2373
2433
  class GetHealthCheckRequest < Struct.new(
2374
2434
  :health_check_id)
2435
+ SENSITIVE = []
2375
2436
  include Aws::Structure
2376
2437
  end
2377
2438
 
@@ -2387,6 +2448,7 @@ module Aws::Route53
2387
2448
  #
2388
2449
  class GetHealthCheckResponse < Struct.new(
2389
2450
  :health_check)
2451
+ SENSITIVE = []
2390
2452
  include Aws::Structure
2391
2453
  end
2392
2454
 
@@ -2416,6 +2478,7 @@ module Aws::Route53
2416
2478
  #
2417
2479
  class GetHealthCheckStatusRequest < Struct.new(
2418
2480
  :health_check_id)
2481
+ SENSITIVE = []
2419
2482
  include Aws::Structure
2420
2483
  end
2421
2484
 
@@ -2432,6 +2495,7 @@ module Aws::Route53
2432
2495
  #
2433
2496
  class GetHealthCheckStatusResponse < Struct.new(
2434
2497
  :health_check_observations)
2498
+ SENSITIVE = []
2435
2499
  include Aws::Structure
2436
2500
  end
2437
2501
 
@@ -2456,6 +2520,7 @@ module Aws::Route53
2456
2520
  #
2457
2521
  class GetHostedZoneCountResponse < Struct.new(
2458
2522
  :hosted_zone_count)
2523
+ SENSITIVE = []
2459
2524
  include Aws::Structure
2460
2525
  end
2461
2526
 
@@ -2490,6 +2555,7 @@ module Aws::Route53
2490
2555
  class GetHostedZoneLimitRequest < Struct.new(
2491
2556
  :type,
2492
2557
  :hosted_zone_id)
2558
+ SENSITIVE = []
2493
2559
  include Aws::Structure
2494
2560
  end
2495
2561
 
@@ -2515,6 +2581,7 @@ module Aws::Route53
2515
2581
  class GetHostedZoneLimitResponse < Struct.new(
2516
2582
  :limit,
2517
2583
  :count)
2584
+ SENSITIVE = []
2518
2585
  include Aws::Structure
2519
2586
  end
2520
2587
 
@@ -2535,6 +2602,7 @@ module Aws::Route53
2535
2602
  #
2536
2603
  class GetHostedZoneRequest < Struct.new(
2537
2604
  :id)
2605
+ SENSITIVE = []
2538
2606
  include Aws::Structure
2539
2607
  end
2540
2608
 
@@ -2561,6 +2629,7 @@ module Aws::Route53
2561
2629
  :hosted_zone,
2562
2630
  :delegation_set,
2563
2631
  :vp_cs)
2632
+ SENSITIVE = []
2564
2633
  include Aws::Structure
2565
2634
  end
2566
2635
 
@@ -2580,6 +2649,7 @@ module Aws::Route53
2580
2649
  #
2581
2650
  class GetQueryLoggingConfigRequest < Struct.new(
2582
2651
  :id)
2652
+ SENSITIVE = []
2583
2653
  include Aws::Structure
2584
2654
  end
2585
2655
 
@@ -2597,6 +2667,7 @@ module Aws::Route53
2597
2667
  #
2598
2668
  class GetQueryLoggingConfigResponse < Struct.new(
2599
2669
  :query_logging_config)
2670
+ SENSITIVE = []
2600
2671
  include Aws::Structure
2601
2672
  end
2602
2673
 
@@ -2626,6 +2697,7 @@ module Aws::Route53
2626
2697
  class GetReusableDelegationSetLimitRequest < Struct.new(
2627
2698
  :type,
2628
2699
  :delegation_set_id)
2700
+ SENSITIVE = []
2629
2701
  include Aws::Structure
2630
2702
  end
2631
2703
 
@@ -2646,6 +2718,7 @@ module Aws::Route53
2646
2718
  class GetReusableDelegationSetLimitResponse < Struct.new(
2647
2719
  :limit,
2648
2720
  :count)
2721
+ SENSITIVE = []
2649
2722
  include Aws::Structure
2650
2723
  end
2651
2724
 
@@ -2668,6 +2741,7 @@ module Aws::Route53
2668
2741
  #
2669
2742
  class GetReusableDelegationSetRequest < Struct.new(
2670
2743
  :id)
2744
+ SENSITIVE = []
2671
2745
  include Aws::Structure
2672
2746
  end
2673
2747
 
@@ -2683,6 +2757,7 @@ module Aws::Route53
2683
2757
  #
2684
2758
  class GetReusableDelegationSetResponse < Struct.new(
2685
2759
  :delegation_set)
2760
+ SENSITIVE = []
2686
2761
  include Aws::Structure
2687
2762
  end
2688
2763
 
@@ -2707,6 +2782,7 @@ module Aws::Route53
2707
2782
  #
2708
2783
  class GetTrafficPolicyInstanceCountResponse < Struct.new(
2709
2784
  :traffic_policy_instance_count)
2785
+ SENSITIVE = []
2710
2786
  include Aws::Structure
2711
2787
  end
2712
2788
 
@@ -2728,6 +2804,7 @@ module Aws::Route53
2728
2804
  #
2729
2805
  class GetTrafficPolicyInstanceRequest < Struct.new(
2730
2806
  :id)
2807
+ SENSITIVE = []
2731
2808
  include Aws::Structure
2732
2809
  end
2733
2810
 
@@ -2743,6 +2820,7 @@ module Aws::Route53
2743
2820
  #
2744
2821
  class GetTrafficPolicyInstanceResponse < Struct.new(
2745
2822
  :traffic_policy_instance)
2823
+ SENSITIVE = []
2746
2824
  include Aws::Structure
2747
2825
  end
2748
2826
 
@@ -2770,6 +2848,7 @@ module Aws::Route53
2770
2848
  class GetTrafficPolicyRequest < Struct.new(
2771
2849
  :id,
2772
2850
  :version)
2851
+ SENSITIVE = []
2773
2852
  include Aws::Structure
2774
2853
  end
2775
2854
 
@@ -2784,6 +2863,7 @@ module Aws::Route53
2784
2863
  #
2785
2864
  class GetTrafficPolicyResponse < Struct.new(
2786
2865
  :traffic_policy)
2866
+ SENSITIVE = []
2787
2867
  include Aws::Structure
2788
2868
  end
2789
2869
 
@@ -2833,6 +2913,7 @@ module Aws::Route53
2833
2913
  :health_check_config,
2834
2914
  :health_check_version,
2835
2915
  :cloud_watch_alarm_configuration)
2916
+ SENSITIVE = []
2836
2917
  include Aws::Structure
2837
2918
  end
2838
2919
 
@@ -2856,6 +2937,7 @@ module Aws::Route53
2856
2937
  #
2857
2938
  class HealthCheckAlreadyExists < Struct.new(
2858
2939
  :message)
2940
+ SENSITIVE = []
2859
2941
  include Aws::Structure
2860
2942
  end
2861
2943
 
@@ -3268,6 +3350,7 @@ module Aws::Route53
3268
3350
  :regions,
3269
3351
  :alarm_identifier,
3270
3352
  :insufficient_data_health_status)
3353
+ SENSITIVE = []
3271
3354
  include Aws::Structure
3272
3355
  end
3273
3356
 
@@ -3281,6 +3364,7 @@ module Aws::Route53
3281
3364
  #
3282
3365
  class HealthCheckInUse < Struct.new(
3283
3366
  :message)
3367
+ SENSITIVE = []
3284
3368
  include Aws::Structure
3285
3369
  end
3286
3370
 
@@ -3309,6 +3393,7 @@ module Aws::Route53
3309
3393
  :region,
3310
3394
  :ip_address,
3311
3395
  :status_report)
3396
+ SENSITIVE = []
3312
3397
  include Aws::Structure
3313
3398
  end
3314
3399
 
@@ -3322,6 +3407,7 @@ module Aws::Route53
3322
3407
  #
3323
3408
  class HealthCheckVersionMismatch < Struct.new(
3324
3409
  :message)
3410
+ SENSITIVE = []
3325
3411
  include Aws::Structure
3326
3412
  end
3327
3413
 
@@ -3377,6 +3463,7 @@ module Aws::Route53
3377
3463
  :config,
3378
3464
  :resource_record_set_count,
3379
3465
  :linked_service)
3466
+ SENSITIVE = []
3380
3467
  include Aws::Structure
3381
3468
  end
3382
3469
 
@@ -3392,6 +3479,7 @@ module Aws::Route53
3392
3479
  #
3393
3480
  class HostedZoneAlreadyExists < Struct.new(
3394
3481
  :message)
3482
+ SENSITIVE = []
3395
3483
  include Aws::Structure
3396
3484
  end
3397
3485
 
@@ -3420,6 +3508,7 @@ module Aws::Route53
3420
3508
  class HostedZoneConfig < Struct.new(
3421
3509
  :comment,
3422
3510
  :private_zone)
3511
+ SENSITIVE = []
3423
3512
  include Aws::Structure
3424
3513
  end
3425
3514
 
@@ -3446,6 +3535,7 @@ module Aws::Route53
3446
3535
  class HostedZoneLimit < Struct.new(
3447
3536
  :type,
3448
3537
  :value)
3538
+ SENSITIVE = []
3449
3539
  include Aws::Structure
3450
3540
  end
3451
3541
 
@@ -3460,6 +3550,7 @@ module Aws::Route53
3460
3550
  #
3461
3551
  class HostedZoneNotEmpty < Struct.new(
3462
3552
  :message)
3553
+ SENSITIVE = []
3463
3554
  include Aws::Structure
3464
3555
  end
3465
3556
 
@@ -3473,6 +3564,7 @@ module Aws::Route53
3473
3564
  #
3474
3565
  class HostedZoneNotFound < Struct.new(
3475
3566
  :message)
3567
+ SENSITIVE = []
3476
3568
  include Aws::Structure
3477
3569
  end
3478
3570
 
@@ -3487,6 +3579,69 @@ module Aws::Route53
3487
3579
  #
3488
3580
  class HostedZoneNotPrivate < Struct.new(
3489
3581
  :message)
3582
+ SENSITIVE = []
3583
+ include Aws::Structure
3584
+ end
3585
+
3586
+ # A complex type that identifies a hosted zone that a specified Amazon
3587
+ # VPC is associated with and the owner of the hosted zone. If there is a
3588
+ # value for `OwningAccount`, there is no value for `OwningService`, and
3589
+ # vice versa.
3590
+ #
3591
+ # @!attribute [rw] owning_account
3592
+ # If the hosted zone was created by an AWS account, or was created by
3593
+ # an AWS service that creates hosted zones using the current account,
3594
+ # `OwningAccount` contains the account ID of that account. For
3595
+ # example, when you use AWS Cloud Map to create a hosted zone, Cloud
3596
+ # Map creates the hosted zone using the current AWS account.
3597
+ # @return [String]
3598
+ #
3599
+ # @!attribute [rw] owning_service
3600
+ # If an AWS service uses its own account to create a hosted zone and
3601
+ # associate the specified VPC with that hosted zone, `OwningService`
3602
+ # contains an abbreviation that identifies the service. For example,
3603
+ # if Amazon Elastic File System (Amazon EFS) created a hosted zone and
3604
+ # associated a VPC with the hosted zone, the value of `OwningService`
3605
+ # is `efs.amazonaws.com`.
3606
+ # @return [String]
3607
+ #
3608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneOwner AWS API Documentation
3609
+ #
3610
+ class HostedZoneOwner < Struct.new(
3611
+ :owning_account,
3612
+ :owning_service)
3613
+ SENSITIVE = []
3614
+ include Aws::Structure
3615
+ end
3616
+
3617
+ # In the response to a `ListHostedZonesByVPC` request, the
3618
+ # `HostedZoneSummaries` element contains one `HostedZoneSummary` element
3619
+ # for each hosted zone that the specified Amazon VPC is associated with.
3620
+ # Each `HostedZoneSummary` element contains the hosted zone name and ID,
3621
+ # and information about who owns the hosted zone.
3622
+ #
3623
+ # @!attribute [rw] hosted_zone_id
3624
+ # The Route 53 hosted zone ID of a private hosted zone that the
3625
+ # specified VPC is associated with.
3626
+ # @return [String]
3627
+ #
3628
+ # @!attribute [rw] name
3629
+ # The name of the private hosted zone, such as `example.com`.
3630
+ # @return [String]
3631
+ #
3632
+ # @!attribute [rw] owner
3633
+ # The owner of a private hosted zone that the specified VPC is
3634
+ # associated with. The owner can be either an AWS account or an AWS
3635
+ # service.
3636
+ # @return [Types::HostedZoneOwner]
3637
+ #
3638
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneSummary AWS API Documentation
3639
+ #
3640
+ class HostedZoneSummary < Struct.new(
3641
+ :hosted_zone_id,
3642
+ :name,
3643
+ :owner)
3644
+ SENSITIVE = []
3490
3645
  include Aws::Structure
3491
3646
  end
3492
3647
 
@@ -3500,6 +3655,7 @@ module Aws::Route53
3500
3655
  #
3501
3656
  class IncompatibleVersion < Struct.new(
3502
3657
  :message)
3658
+ SENSITIVE = []
3503
3659
  include Aws::Structure
3504
3660
  end
3505
3661
 
@@ -3522,6 +3678,7 @@ module Aws::Route53
3522
3678
  #
3523
3679
  class InsufficientCloudWatchLogsResourcePolicy < Struct.new(
3524
3680
  :message)
3681
+ SENSITIVE = []
3525
3682
  include Aws::Structure
3526
3683
  end
3527
3684
 
@@ -3535,6 +3692,7 @@ module Aws::Route53
3535
3692
  #
3536
3693
  class InvalidArgument < Struct.new(
3537
3694
  :message)
3695
+ SENSITIVE = []
3538
3696
  include Aws::Structure
3539
3697
  end
3540
3698
 
@@ -3554,6 +3712,7 @@ module Aws::Route53
3554
3712
  class InvalidChangeBatch < Struct.new(
3555
3713
  :messages,
3556
3714
  :message)
3715
+ SENSITIVE = []
3557
3716
  include Aws::Structure
3558
3717
  end
3559
3718
 
@@ -3567,6 +3726,7 @@ module Aws::Route53
3567
3726
  #
3568
3727
  class InvalidDomainName < Struct.new(
3569
3728
  :message)
3729
+ SENSITIVE = []
3570
3730
  include Aws::Structure
3571
3731
  end
3572
3732
 
@@ -3580,6 +3740,7 @@ module Aws::Route53
3580
3740
  #
3581
3741
  class InvalidInput < Struct.new(
3582
3742
  :message)
3743
+ SENSITIVE = []
3583
3744
  include Aws::Structure
3584
3745
  end
3585
3746
 
@@ -3593,6 +3754,7 @@ module Aws::Route53
3593
3754
  #
3594
3755
  class InvalidPaginationToken < Struct.new(
3595
3756
  :message)
3757
+ SENSITIVE = []
3596
3758
  include Aws::Structure
3597
3759
  end
3598
3760
 
@@ -3607,6 +3769,7 @@ module Aws::Route53
3607
3769
  #
3608
3770
  class InvalidTrafficPolicyDocument < Struct.new(
3609
3771
  :message)
3772
+ SENSITIVE = []
3610
3773
  include Aws::Structure
3611
3774
  end
3612
3775
 
@@ -3621,6 +3784,7 @@ module Aws::Route53
3621
3784
  #
3622
3785
  class InvalidVPCId < Struct.new(
3623
3786
  :message)
3787
+ SENSITIVE = []
3624
3788
  include Aws::Structure
3625
3789
  end
3626
3790
 
@@ -3637,6 +3801,7 @@ module Aws::Route53
3637
3801
  #
3638
3802
  class LastVPCAssociation < Struct.new(
3639
3803
  :message)
3804
+ SENSITIVE = []
3640
3805
  include Aws::Structure
3641
3806
  end
3642
3807
 
@@ -3664,6 +3829,7 @@ module Aws::Route53
3664
3829
  #
3665
3830
  class LimitsExceeded < Struct.new(
3666
3831
  :message)
3832
+ SENSITIVE = []
3667
3833
  include Aws::Structure
3668
3834
  end
3669
3835
 
@@ -3690,6 +3856,7 @@ module Aws::Route53
3690
3856
  class LinkedService < Struct.new(
3691
3857
  :service_principal,
3692
3858
  :description)
3859
+ SENSITIVE = []
3693
3860
  include Aws::Structure
3694
3861
  end
3695
3862
 
@@ -3754,6 +3921,7 @@ module Aws::Route53
3754
3921
  :start_country_code,
3755
3922
  :start_subdivision_code,
3756
3923
  :max_items)
3924
+ SENSITIVE = []
3757
3925
  include Aws::Structure
3758
3926
  end
3759
3927
 
@@ -3806,6 +3974,7 @@ module Aws::Route53
3806
3974
  :next_country_code,
3807
3975
  :next_subdivision_code,
3808
3976
  :max_items)
3977
+ SENSITIVE = []
3809
3978
  include Aws::Structure
3810
3979
  end
3811
3980
 
@@ -3845,6 +4014,7 @@ module Aws::Route53
3845
4014
  class ListHealthChecksRequest < Struct.new(
3846
4015
  :marker,
3847
4016
  :max_items)
4017
+ SENSITIVE = []
3848
4018
  include Aws::Structure
3849
4019
  end
3850
4020
 
@@ -3889,6 +4059,7 @@ module Aws::Route53
3889
4059
  :is_truncated,
3890
4060
  :next_marker,
3891
4061
  :max_items)
4062
+ SENSITIVE = []
3892
4063
  include Aws::Structure
3893
4064
  end
3894
4065
 
@@ -3943,6 +4114,7 @@ module Aws::Route53
3943
4114
  :dns_name,
3944
4115
  :hosted_zone_id,
3945
4116
  :max_items)
4117
+ SENSITIVE = []
3946
4118
  include Aws::Structure
3947
4119
  end
3948
4120
 
@@ -4007,6 +4179,88 @@ module Aws::Route53
4007
4179
  :next_dns_name,
4008
4180
  :next_hosted_zone_id,
4009
4181
  :max_items)
4182
+ SENSITIVE = []
4183
+ include Aws::Structure
4184
+ end
4185
+
4186
+ # Lists all the private hosted zones that a specified VPC is associated
4187
+ # with, regardless of which AWS account created the hosted zones.
4188
+ #
4189
+ # @note When making an API call, you may pass ListHostedZonesByVPCRequest
4190
+ # data as a hash:
4191
+ #
4192
+ # {
4193
+ # vpc_id: "VPCId", # required
4194
+ # vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
4195
+ # max_items: 1,
4196
+ # next_token: "PaginationToken",
4197
+ # }
4198
+ #
4199
+ # @!attribute [rw] vpc_id
4200
+ # The ID of the Amazon VPC that you want to list hosted zones for.
4201
+ # @return [String]
4202
+ #
4203
+ # @!attribute [rw] vpc_region
4204
+ # For the Amazon VPC that you specified for `VPCId`, the AWS Region
4205
+ # that you created the VPC in.
4206
+ # @return [String]
4207
+ #
4208
+ # @!attribute [rw] max_items
4209
+ # (Optional) The maximum number of hosted zones that you want Amazon
4210
+ # Route 53 to return. If the specified VPC is associated with more
4211
+ # than `MaxItems` hosted zones, the response includes a `NextToken`
4212
+ # element. `NextToken` contains an encrypted token that identifies the
4213
+ # first hosted zone that Route 53 will return if you submit another
4214
+ # request.
4215
+ # @return [Integer]
4216
+ #
4217
+ # @!attribute [rw] next_token
4218
+ # If the previous response included a `NextToken` element, the
4219
+ # specified VPC is associated with more hosted zones. To get more
4220
+ # hosted zones, submit another `ListHostedZonesByVPC` request.
4221
+ #
4222
+ # For the value of `NextToken`, specify the value of `NextToken` from
4223
+ # the previous response.
4224
+ #
4225
+ # If the previous response didn't include a `NextToken` element,
4226
+ # there are no more hosted zones to get.
4227
+ # @return [String]
4228
+ #
4229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPCRequest AWS API Documentation
4230
+ #
4231
+ class ListHostedZonesByVPCRequest < Struct.new(
4232
+ :vpc_id,
4233
+ :vpc_region,
4234
+ :max_items,
4235
+ :next_token)
4236
+ SENSITIVE = []
4237
+ include Aws::Structure
4238
+ end
4239
+
4240
+ # @!attribute [rw] hosted_zone_summaries
4241
+ # A list that contains one `HostedZoneSummary` element for each hosted
4242
+ # zone that the specified Amazon VPC is associated with. Each
4243
+ # `HostedZoneSummary` element contains the hosted zone name and ID,
4244
+ # and information about who owns the hosted zone.
4245
+ # @return [Array<Types::HostedZoneSummary>]
4246
+ #
4247
+ # @!attribute [rw] max_items
4248
+ # The value that you specified for `MaxItems` in the most recent
4249
+ # `ListHostedZonesByVPC` request.
4250
+ # @return [Integer]
4251
+ #
4252
+ # @!attribute [rw] next_token
4253
+ # The value that you specified for `NextToken` in the most recent
4254
+ # `ListHostedZonesByVPC` request.
4255
+ # @return [String]
4256
+ #
4257
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPCResponse AWS API Documentation
4258
+ #
4259
+ class ListHostedZonesByVPCResponse < Struct.new(
4260
+ :hosted_zone_summaries,
4261
+ :max_items,
4262
+ :next_token)
4263
+ SENSITIVE = []
4010
4264
  include Aws::Structure
4011
4265
  end
4012
4266
 
@@ -4055,6 +4309,7 @@ module Aws::Route53
4055
4309
  :marker,
4056
4310
  :max_items,
4057
4311
  :delegation_set_id)
4312
+ SENSITIVE = []
4058
4313
  include Aws::Structure
4059
4314
  end
4060
4315
 
@@ -4098,6 +4353,7 @@ module Aws::Route53
4098
4353
  :is_truncated,
4099
4354
  :next_marker,
4100
4355
  :max_items)
4356
+ SENSITIVE = []
4101
4357
  include Aws::Structure
4102
4358
  end
4103
4359
 
@@ -4152,6 +4408,7 @@ module Aws::Route53
4152
4408
  :hosted_zone_id,
4153
4409
  :next_token,
4154
4410
  :max_results)
4411
+ SENSITIVE = []
4155
4412
  include Aws::Structure
4156
4413
  end
4157
4414
 
@@ -4186,6 +4443,7 @@ module Aws::Route53
4186
4443
  class ListQueryLoggingConfigsResponse < Struct.new(
4187
4444
  :query_logging_configs,
4188
4445
  :next_token)
4446
+ SENSITIVE = []
4189
4447
  include Aws::Structure
4190
4448
  end
4191
4449
 
@@ -4273,6 +4531,7 @@ module Aws::Route53
4273
4531
  :start_record_type,
4274
4532
  :start_record_identifier,
4275
4533
  :max_items)
4534
+ SENSITIVE = []
4276
4535
  include Aws::Structure
4277
4536
  end
4278
4537
 
@@ -4330,6 +4589,7 @@ module Aws::Route53
4330
4589
  :next_record_type,
4331
4590
  :next_record_identifier,
4332
4591
  :max_items)
4592
+ SENSITIVE = []
4333
4593
  include Aws::Structure
4334
4594
  end
4335
4595
 
@@ -4370,6 +4630,7 @@ module Aws::Route53
4370
4630
  class ListReusableDelegationSetsRequest < Struct.new(
4371
4631
  :marker,
4372
4632
  :max_items)
4633
+ SENSITIVE = []
4373
4634
  include Aws::Structure
4374
4635
  end
4375
4636
 
@@ -4413,6 +4674,7 @@ module Aws::Route53
4413
4674
  :is_truncated,
4414
4675
  :next_marker,
4415
4676
  :max_items)
4677
+ SENSITIVE = []
4416
4678
  include Aws::Structure
4417
4679
  end
4418
4680
 
@@ -4444,6 +4706,7 @@ module Aws::Route53
4444
4706
  class ListTagsForResourceRequest < Struct.new(
4445
4707
  :resource_type,
4446
4708
  :resource_id)
4709
+ SENSITIVE = []
4447
4710
  include Aws::Structure
4448
4711
  end
4449
4712
 
@@ -4459,6 +4722,7 @@ module Aws::Route53
4459
4722
  #
4460
4723
  class ListTagsForResourceResponse < Struct.new(
4461
4724
  :resource_tag_set)
4725
+ SENSITIVE = []
4462
4726
  include Aws::Structure
4463
4727
  end
4464
4728
 
@@ -4491,6 +4755,7 @@ module Aws::Route53
4491
4755
  class ListTagsForResourcesRequest < Struct.new(
4492
4756
  :resource_type,
4493
4757
  :resource_ids)
4758
+ SENSITIVE = []
4494
4759
  include Aws::Structure
4495
4760
  end
4496
4761
 
@@ -4505,6 +4770,7 @@ module Aws::Route53
4505
4770
  #
4506
4771
  class ListTagsForResourcesResponse < Struct.new(
4507
4772
  :resource_tag_sets)
4773
+ SENSITIVE = []
4508
4774
  include Aws::Structure
4509
4775
  end
4510
4776
 
@@ -4545,6 +4811,7 @@ module Aws::Route53
4545
4811
  class ListTrafficPoliciesRequest < Struct.new(
4546
4812
  :traffic_policy_id_marker,
4547
4813
  :max_items)
4814
+ SENSITIVE = []
4548
4815
  include Aws::Structure
4549
4816
  end
4550
4817
 
@@ -4581,6 +4848,7 @@ module Aws::Route53
4581
4848
  :is_truncated,
4582
4849
  :traffic_policy_id_marker,
4583
4850
  :max_items)
4851
+ SENSITIVE = []
4584
4852
  include Aws::Structure
4585
4853
  end
4586
4854
 
@@ -4646,6 +4914,7 @@ module Aws::Route53
4646
4914
  :traffic_policy_instance_name_marker,
4647
4915
  :traffic_policy_instance_type_marker,
4648
4916
  :max_items)
4917
+ SENSITIVE = []
4649
4918
  include Aws::Structure
4650
4919
  end
4651
4920
 
@@ -4693,6 +4962,7 @@ module Aws::Route53
4693
4962
  :traffic_policy_instance_type_marker,
4694
4963
  :is_truncated,
4695
4964
  :max_items)
4965
+ SENSITIVE = []
4696
4966
  include Aws::Structure
4697
4967
  end
4698
4968
 
@@ -4787,6 +5057,7 @@ module Aws::Route53
4787
5057
  :traffic_policy_instance_name_marker,
4788
5058
  :traffic_policy_instance_type_marker,
4789
5059
  :max_items)
5060
+ SENSITIVE = []
4790
5061
  include Aws::Structure
4791
5062
  end
4792
5063
 
@@ -4841,6 +5112,7 @@ module Aws::Route53
4841
5112
  :traffic_policy_instance_type_marker,
4842
5113
  :is_truncated,
4843
5114
  :max_items)
5115
+ SENSITIVE = []
4844
5116
  include Aws::Structure
4845
5117
  end
4846
5118
 
@@ -4914,6 +5186,7 @@ module Aws::Route53
4914
5186
  :traffic_policy_instance_name_marker,
4915
5187
  :traffic_policy_instance_type_marker,
4916
5188
  :max_items)
5189
+ SENSITIVE = []
4917
5190
  include Aws::Structure
4918
5191
  end
4919
5192
 
@@ -4968,6 +5241,7 @@ module Aws::Route53
4968
5241
  :traffic_policy_instance_type_marker,
4969
5242
  :is_truncated,
4970
5243
  :max_items)
5244
+ SENSITIVE = []
4971
5245
  include Aws::Structure
4972
5246
  end
4973
5247
 
@@ -5015,6 +5289,7 @@ module Aws::Route53
5015
5289
  :id,
5016
5290
  :traffic_policy_version_marker,
5017
5291
  :max_items)
5292
+ SENSITIVE = []
5018
5293
  include Aws::Structure
5019
5294
  end
5020
5295
 
@@ -5057,6 +5332,7 @@ module Aws::Route53
5057
5332
  :is_truncated,
5058
5333
  :traffic_policy_version_marker,
5059
5334
  :max_items)
5335
+ SENSITIVE = []
5060
5336
  include Aws::Structure
5061
5337
  end
5062
5338
 
@@ -5097,6 +5373,7 @@ module Aws::Route53
5097
5373
  :hosted_zone_id,
5098
5374
  :next_token,
5099
5375
  :max_results)
5376
+ SENSITIVE = []
5100
5377
  include Aws::Structure
5101
5378
  end
5102
5379
 
@@ -5127,6 +5404,7 @@ module Aws::Route53
5127
5404
  :hosted_zone_id,
5128
5405
  :next_token,
5129
5406
  :vp_cs)
5407
+ SENSITIVE = []
5130
5408
  include Aws::Structure
5131
5409
  end
5132
5410
 
@@ -5139,6 +5417,7 @@ module Aws::Route53
5139
5417
  #
5140
5418
  class NoSuchChange < Struct.new(
5141
5419
  :message)
5420
+ SENSITIVE = []
5142
5421
  include Aws::Structure
5143
5422
  end
5144
5423
 
@@ -5151,6 +5430,7 @@ module Aws::Route53
5151
5430
  #
5152
5431
  class NoSuchCloudWatchLogsLogGroup < Struct.new(
5153
5432
  :message)
5433
+ SENSITIVE = []
5154
5434
  include Aws::Structure
5155
5435
  end
5156
5436
 
@@ -5164,6 +5444,7 @@ module Aws::Route53
5164
5444
  #
5165
5445
  class NoSuchDelegationSet < Struct.new(
5166
5446
  :message)
5447
+ SENSITIVE = []
5167
5448
  include Aws::Structure
5168
5449
  end
5169
5450
 
@@ -5183,6 +5464,7 @@ module Aws::Route53
5183
5464
  #
5184
5465
  class NoSuchGeoLocation < Struct.new(
5185
5466
  :message)
5467
+ SENSITIVE = []
5186
5468
  include Aws::Structure
5187
5469
  end
5188
5470
 
@@ -5196,6 +5478,7 @@ module Aws::Route53
5196
5478
  #
5197
5479
  class NoSuchHealthCheck < Struct.new(
5198
5480
  :message)
5481
+ SENSITIVE = []
5199
5482
  include Aws::Structure
5200
5483
  end
5201
5484
 
@@ -5209,6 +5492,7 @@ module Aws::Route53
5209
5492
  #
5210
5493
  class NoSuchHostedZone < Struct.new(
5211
5494
  :message)
5495
+ SENSITIVE = []
5212
5496
  include Aws::Structure
5213
5497
  end
5214
5498
 
@@ -5221,6 +5505,7 @@ module Aws::Route53
5221
5505
  #
5222
5506
  class NoSuchQueryLoggingConfig < Struct.new(
5223
5507
  :message)
5508
+ SENSITIVE = []
5224
5509
  include Aws::Structure
5225
5510
  end
5226
5511
 
@@ -5234,6 +5519,7 @@ module Aws::Route53
5234
5519
  #
5235
5520
  class NoSuchTrafficPolicy < Struct.new(
5236
5521
  :message)
5522
+ SENSITIVE = []
5237
5523
  include Aws::Structure
5238
5524
  end
5239
5525
 
@@ -5247,6 +5533,7 @@ module Aws::Route53
5247
5533
  #
5248
5534
  class NoSuchTrafficPolicyInstance < Struct.new(
5249
5535
  :message)
5536
+ SENSITIVE = []
5250
5537
  include Aws::Structure
5251
5538
  end
5252
5539
 
@@ -5261,6 +5548,7 @@ module Aws::Route53
5261
5548
  #
5262
5549
  class NotAuthorizedException < Struct.new(
5263
5550
  :message)
5551
+ SENSITIVE = []
5264
5552
  include Aws::Structure
5265
5553
  end
5266
5554
 
@@ -5278,6 +5566,7 @@ module Aws::Route53
5278
5566
  #
5279
5567
  class PriorRequestNotComplete < Struct.new(
5280
5568
  :message)
5569
+ SENSITIVE = []
5281
5570
  include Aws::Structure
5282
5571
  end
5283
5572
 
@@ -5292,6 +5581,7 @@ module Aws::Route53
5292
5581
  #
5293
5582
  class PublicZoneVPCAssociation < Struct.new(
5294
5583
  :message)
5584
+ SENSITIVE = []
5295
5585
  include Aws::Structure
5296
5586
  end
5297
5587
 
@@ -5318,6 +5608,7 @@ module Aws::Route53
5318
5608
  :id,
5319
5609
  :hosted_zone_id,
5320
5610
  :cloud_watch_logs_log_group_arn)
5611
+ SENSITIVE = []
5321
5612
  include Aws::Structure
5322
5613
  end
5323
5614
 
@@ -5331,6 +5622,7 @@ module Aws::Route53
5331
5622
  #
5332
5623
  class QueryLoggingConfigAlreadyExists < Struct.new(
5333
5624
  :message)
5625
+ SENSITIVE = []
5334
5626
  include Aws::Structure
5335
5627
  end
5336
5628
 
@@ -5371,6 +5663,7 @@ module Aws::Route53
5371
5663
  #
5372
5664
  class ResourceRecord < Struct.new(
5373
5665
  :value)
5666
+ SENSITIVE = []
5374
5667
  include Aws::Structure
5375
5668
  end
5376
5669
 
@@ -5966,6 +6259,7 @@ module Aws::Route53
5966
6259
  :alias_target,
5967
6260
  :health_check_id,
5968
6261
  :traffic_policy_instance_id)
6262
+ SENSITIVE = []
5969
6263
  include Aws::Structure
5970
6264
  end
5971
6265
 
@@ -5993,6 +6287,7 @@ module Aws::Route53
5993
6287
  :resource_type,
5994
6288
  :resource_id,
5995
6289
  :tags)
6290
+ SENSITIVE = []
5996
6291
  include Aws::Structure
5997
6292
  end
5998
6293
 
@@ -6016,6 +6311,7 @@ module Aws::Route53
6016
6311
  class ReusableDelegationSetLimit < Struct.new(
6017
6312
  :type,
6018
6313
  :value)
6314
+ SENSITIVE = []
6019
6315
  include Aws::Structure
6020
6316
  end
6021
6317
 
@@ -6043,6 +6339,7 @@ module Aws::Route53
6043
6339
  class StatusReport < Struct.new(
6044
6340
  :status,
6045
6341
  :checked_time)
6342
+ SENSITIVE = []
6046
6343
  include Aws::Structure
6047
6344
  end
6048
6345
 
@@ -6092,6 +6389,7 @@ module Aws::Route53
6092
6389
  class Tag < Struct.new(
6093
6390
  :key,
6094
6391
  :value)
6392
+ SENSITIVE = []
6095
6393
  include Aws::Structure
6096
6394
  end
6097
6395
 
@@ -6166,6 +6464,7 @@ module Aws::Route53
6166
6464
  :resolver_ip,
6167
6465
  :edns0_client_subnet_ip,
6168
6466
  :edns0_client_subnet_mask)
6467
+ SENSITIVE = []
6169
6468
  include Aws::Structure
6170
6469
  end
6171
6470
 
@@ -6217,6 +6516,7 @@ module Aws::Route53
6217
6516
  :record_data,
6218
6517
  :response_code,
6219
6518
  :protocol)
6519
+ SENSITIVE = []
6220
6520
  include Aws::Structure
6221
6521
  end
6222
6522
 
@@ -6229,6 +6529,7 @@ module Aws::Route53
6229
6529
  #
6230
6530
  class ThrottlingException < Struct.new(
6231
6531
  :message)
6532
+ SENSITIVE = []
6232
6533
  include Aws::Structure
6233
6534
  end
6234
6535
 
@@ -6259,6 +6560,7 @@ module Aws::Route53
6259
6560
  #
6260
6561
  class TooManyHealthChecks < Struct.new(
6261
6562
  :message)
6563
+ SENSITIVE = []
6262
6564
  include Aws::Structure
6263
6565
  end
6264
6566
 
@@ -6294,6 +6596,7 @@ module Aws::Route53
6294
6596
  #
6295
6597
  class TooManyHostedZones < Struct.new(
6296
6598
  :message)
6599
+ SENSITIVE = []
6297
6600
  include Aws::Structure
6298
6601
  end
6299
6602
 
@@ -6322,6 +6625,7 @@ module Aws::Route53
6322
6625
  #
6323
6626
  class TooManyTrafficPolicies < Struct.new(
6324
6627
  :message)
6628
+ SENSITIVE = []
6325
6629
  include Aws::Structure
6326
6630
  end
6327
6631
 
@@ -6352,6 +6656,7 @@ module Aws::Route53
6352
6656
  #
6353
6657
  class TooManyTrafficPolicyInstances < Struct.new(
6354
6658
  :message)
6659
+ SENSITIVE = []
6355
6660
  include Aws::Structure
6356
6661
  end
6357
6662
 
@@ -6378,6 +6683,7 @@ module Aws::Route53
6378
6683
  #
6379
6684
  class TooManyTrafficPolicyVersionsForCurrentPolicy < Struct.new(
6380
6685
  :message)
6686
+ SENSITIVE = []
6381
6687
  include Aws::Structure
6382
6688
  end
6383
6689
 
@@ -6396,6 +6702,7 @@ module Aws::Route53
6396
6702
  #
6397
6703
  class TooManyVPCAssociationAuthorizations < Struct.new(
6398
6704
  :message)
6705
+ SENSITIVE = []
6399
6706
  include Aws::Structure
6400
6707
  end
6401
6708
 
@@ -6446,6 +6753,7 @@ module Aws::Route53
6446
6753
  :type,
6447
6754
  :document,
6448
6755
  :comment)
6756
+ SENSITIVE = []
6449
6757
  include Aws::Structure
6450
6758
  end
6451
6759
 
@@ -6459,6 +6767,7 @@ module Aws::Route53
6459
6767
  #
6460
6768
  class TrafficPolicyAlreadyExists < Struct.new(
6461
6769
  :message)
6770
+ SENSITIVE = []
6462
6771
  include Aws::Structure
6463
6772
  end
6464
6773
 
@@ -6473,6 +6782,7 @@ module Aws::Route53
6473
6782
  #
6474
6783
  class TrafficPolicyInUse < Struct.new(
6475
6784
  :message)
6785
+ SENSITIVE = []
6476
6786
  include Aws::Structure
6477
6787
  end
6478
6788
 
@@ -6553,6 +6863,7 @@ module Aws::Route53
6553
6863
  :traffic_policy_id,
6554
6864
  :traffic_policy_version,
6555
6865
  :traffic_policy_type)
6866
+ SENSITIVE = []
6556
6867
  include Aws::Structure
6557
6868
  end
6558
6869
 
@@ -6566,6 +6877,7 @@ module Aws::Route53
6566
6877
  #
6567
6878
  class TrafficPolicyInstanceAlreadyExists < Struct.new(
6568
6879
  :message)
6880
+ SENSITIVE = []
6569
6881
  include Aws::Structure
6570
6882
  end
6571
6883
 
@@ -6605,6 +6917,7 @@ module Aws::Route53
6605
6917
  :type,
6606
6918
  :latest_version,
6607
6919
  :traffic_policy_count)
6920
+ SENSITIVE = []
6608
6921
  include Aws::Structure
6609
6922
  end
6610
6923
 
@@ -6999,6 +7312,7 @@ module Aws::Route53
6999
7312
  :alarm_identifier,
7000
7313
  :insufficient_data_health_status,
7001
7314
  :reset_elements)
7315
+ SENSITIVE = []
7002
7316
  include Aws::Structure
7003
7317
  end
7004
7318
 
@@ -7014,6 +7328,7 @@ module Aws::Route53
7014
7328
  #
7015
7329
  class UpdateHealthCheckResponse < Struct.new(
7016
7330
  :health_check)
7331
+ SENSITIVE = []
7017
7332
  include Aws::Structure
7018
7333
  end
7019
7334
 
@@ -7042,6 +7357,7 @@ module Aws::Route53
7042
7357
  class UpdateHostedZoneCommentRequest < Struct.new(
7043
7358
  :id,
7044
7359
  :comment)
7360
+ SENSITIVE = []
7045
7361
  include Aws::Structure
7046
7362
  end
7047
7363
 
@@ -7057,6 +7373,7 @@ module Aws::Route53
7057
7373
  #
7058
7374
  class UpdateHostedZoneCommentResponse < Struct.new(
7059
7375
  :hosted_zone)
7376
+ SENSITIVE = []
7060
7377
  include Aws::Structure
7061
7378
  end
7062
7379
 
@@ -7092,6 +7409,7 @@ module Aws::Route53
7092
7409
  :id,
7093
7410
  :version,
7094
7411
  :comment)
7412
+ SENSITIVE = []
7095
7413
  include Aws::Structure
7096
7414
  end
7097
7415
 
@@ -7107,6 +7425,7 @@ module Aws::Route53
7107
7425
  #
7108
7426
  class UpdateTrafficPolicyCommentResponse < Struct.new(
7109
7427
  :traffic_policy)
7428
+ SENSITIVE = []
7110
7429
  include Aws::Structure
7111
7430
  end
7112
7431
 
@@ -7152,6 +7471,7 @@ module Aws::Route53
7152
7471
  :ttl,
7153
7472
  :traffic_policy_id,
7154
7473
  :traffic_policy_version)
7474
+ SENSITIVE = []
7155
7475
  include Aws::Structure
7156
7476
  end
7157
7477
 
@@ -7167,6 +7487,7 @@ module Aws::Route53
7167
7487
  #
7168
7488
  class UpdateTrafficPolicyInstanceResponse < Struct.new(
7169
7489
  :traffic_policy_instance)
7490
+ SENSITIVE = []
7170
7491
  include Aws::Structure
7171
7492
  end
7172
7493
 
@@ -7195,6 +7516,7 @@ module Aws::Route53
7195
7516
  class VPC < Struct.new(
7196
7517
  :vpc_region,
7197
7518
  :vpc_id)
7519
+ SENSITIVE = []
7198
7520
  include Aws::Structure
7199
7521
  end
7200
7522
 
@@ -7209,6 +7531,7 @@ module Aws::Route53
7209
7531
  #
7210
7532
  class VPCAssociationAuthorizationNotFound < Struct.new(
7211
7533
  :message)
7534
+ SENSITIVE = []
7212
7535
  include Aws::Structure
7213
7536
  end
7214
7537
 
@@ -7222,6 +7545,7 @@ module Aws::Route53
7222
7545
  #
7223
7546
  class VPCAssociationNotFound < Struct.new(
7224
7547
  :message)
7548
+ SENSITIVE = []
7225
7549
  include Aws::Structure
7226
7550
  end
7227
7551