aws-sdk-route53 1.34.0 → 1.39.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c568852a419c6d549d227dbaeed7e76ce5212d2203435a42294e85c8b8a34fa1
4
- data.tar.gz: cd05ed0f791543b3525dc269becf7b839942210fd000c4c17dbf7f943aefc01f
3
+ metadata.gz: 195d273ed353c13ebff20f02d15595768c327835df4bac4c4673bd8f96773585
4
+ data.tar.gz: ad344a28d23c84d9398d04539b55f715d281c896b5260002a02ab7521a07fc89
5
5
  SHA512:
6
- metadata.gz: d6d1f59bc97758bacddbff6abe6196d4ee8256fc139b04205aeec62ca9c6715cd7699db3479bcad393ba65bd9c659c74dcaec43c5d2b9158e91f0504db42ed9e
7
- data.tar.gz: 181ccd7911d6f68136ced64862a36d7f79d22ffb7bf4e83348d4cdfedaeb46302f76a83f2d19681f8c6f0c917a8692537d81b16b74152773b2b93467f121059e
6
+ metadata.gz: ce64576f720d8352572b752d866c7cfb93cf61f2b386da31376b3200f6ad9943aa20fcd573433ea025115433e57b6a7f34c6cc12e17ce27cb943bd68792cc154
7
+ data.tar.gz: 75a19531c0f37b03c8eca25ba513221797bb36bb23441fdd7825d63e1f8bd6a783bb09ce9e7b53a064642feea6a884aebfcb8ca28e36d19b95174d7e1ffe2094
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-route53/customizations'
46
48
  # @service
47
49
  module Aws::Route53
48
50
 
49
- GEM_VERSION = '1.34.0'
51
+ GEM_VERSION = '1.39.0'
50
52
 
51
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
29
32
  require 'aws-sdk-route53/plugins/id_fix.rb'
@@ -70,6 +73,7 @@ module Aws::Route53
70
73
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
71
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
72
75
  add_plugin(Aws::Plugins::TransferEncoding)
76
+ add_plugin(Aws::Plugins::HttpChecksum)
73
77
  add_plugin(Aws::Plugins::SignatureV4)
74
78
  add_plugin(Aws::Plugins::Protocols::RestXml)
75
79
  add_plugin(Aws::Route53::Plugins::IdFix)
@@ -163,7 +167,7 @@ module Aws::Route53
163
167
  # @option options [String] :endpoint
164
168
  # The client endpoint is normally constructed from the `:region`
165
169
  # option. You should only configure an `:endpoint` when connecting
166
- # to test endpoints. This should be a valid HTTP(S) URI.
170
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
167
171
  #
168
172
  # @option options [Integer] :endpoint_cache_max_entries (1000)
169
173
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -178,7 +182,7 @@ module Aws::Route53
178
182
  # requests fetching endpoints information. Defaults to 60 sec.
179
183
  #
180
184
  # @option options [Boolean] :endpoint_discovery (false)
181
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
185
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
182
186
  #
183
187
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
184
188
  # The log formatter.
@@ -2342,16 +2346,33 @@ module Aws::Route53
2342
2346
  req.send_request(options)
2343
2347
  end
2344
2348
 
2345
- # Disassociates a VPC from a Amazon Route 53 private hosted zone. Note
2346
- # the following:
2349
+ # Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an
2350
+ # Amazon Route 53 private hosted zone. Note the following:
2347
2351
  #
2348
- # * You can't disassociate the last VPC from a private hosted zone.
2352
+ # * You can't disassociate the last Amazon VPC from a private hosted
2353
+ # zone.
2349
2354
  #
2350
2355
  # * You can't convert a private hosted zone into a public hosted zone.
2351
2356
  #
2352
2357
  # * You can submit a `DisassociateVPCFromHostedZone` request using
2353
2358
  # either the account that created the hosted zone or the account that
2354
- # created the VPC.
2359
+ # created the Amazon VPC.
2360
+ #
2361
+ # * Some services, such as AWS Cloud Map and Amazon Elastic File System
2362
+ # (Amazon EFS) automatically create hosted zones and associate VPCs
2363
+ # with the hosted zones. A service can create a hosted zone using your
2364
+ # account or using its own account. You can disassociate a VPC from a
2365
+ # hosted zone only if the service created the hosted zone using your
2366
+ # account.
2367
+ #
2368
+ # When you run [DisassociateVPCFromHostedZone][1], if the hosted zone
2369
+ # has a value for `OwningAccount`, you can use
2370
+ # `DisassociateVPCFromHostedZone`. If the hosted zone has a value for
2371
+ # `OwningService`, you can't use `DisassociateVPCFromHostedZone`.
2372
+ #
2373
+ #
2374
+ #
2375
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZonesByVPC.html
2355
2376
  #
2356
2377
  # @option params [required, String] :hosted_zone_id
2357
2378
  # The ID of the private hosted zone that you want to disassociate a VPC
@@ -3555,6 +3576,80 @@ module Aws::Route53
3555
3576
  req.send_request(options)
3556
3577
  end
3557
3578
 
3579
+ # Lists all the private hosted zones that a specified VPC is associated
3580
+ # with, regardless of which AWS account or AWS service owns the hosted
3581
+ # zones. The `HostedZoneOwner` structure in the response contains one of
3582
+ # the following values:
3583
+ #
3584
+ # * An `OwningAccount` element, which contains the account number of
3585
+ # either the current AWS account or another AWS account. Some
3586
+ # services, such as AWS Cloud Map, create hosted zones using the
3587
+ # current account.
3588
+ #
3589
+ # * An `OwningService` element, which identifies the AWS service that
3590
+ # created and owns the hosted zone. For example, if a hosted zone was
3591
+ # created by Amazon Elastic File System (Amazon EFS), the value of
3592
+ # `Owner` is `efs.amazonaws.com`.
3593
+ #
3594
+ # @option params [required, String] :vpc_id
3595
+ # The ID of the Amazon VPC that you want to list hosted zones for.
3596
+ #
3597
+ # @option params [required, String] :vpc_region
3598
+ # For the Amazon VPC that you specified for `VPCId`, the AWS Region that
3599
+ # you created the VPC in.
3600
+ #
3601
+ # @option params [Integer] :max_items
3602
+ # (Optional) The maximum number of hosted zones that you want Amazon
3603
+ # Route 53 to return. If the specified VPC is associated with more than
3604
+ # `MaxItems` hosted zones, the response includes a `NextToken` element.
3605
+ # `NextToken` contains the hosted zone ID of the first hosted zone that
3606
+ # Route 53 will return if you submit another request.
3607
+ #
3608
+ # @option params [String] :next_token
3609
+ # If the previous response included a `NextToken` element, the specified
3610
+ # VPC is associated with more hosted zones. To get more hosted zones,
3611
+ # submit another `ListHostedZonesByVPC` request.
3612
+ #
3613
+ # For the value of `NextToken`, specify the value of `NextToken` from
3614
+ # the previous response.
3615
+ #
3616
+ # If the previous response didn't include a `NextToken` element, there
3617
+ # are no more hosted zones to get.
3618
+ #
3619
+ # @return [Types::ListHostedZonesByVPCResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3620
+ #
3621
+ # * {Types::ListHostedZonesByVPCResponse#hosted_zone_summaries #hosted_zone_summaries} => Array<Types::HostedZoneSummary>
3622
+ # * {Types::ListHostedZonesByVPCResponse#max_items #max_items} => Integer
3623
+ # * {Types::ListHostedZonesByVPCResponse#next_token #next_token} => String
3624
+ #
3625
+ # @example Request syntax with placeholder values
3626
+ #
3627
+ # resp = client.list_hosted_zones_by_vpc({
3628
+ # vpc_id: "VPCId", # required
3629
+ # 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
3630
+ # max_items: 1,
3631
+ # next_token: "PaginationToken",
3632
+ # })
3633
+ #
3634
+ # @example Response structure
3635
+ #
3636
+ # resp.hosted_zone_summaries #=> Array
3637
+ # resp.hosted_zone_summaries[0].hosted_zone_id #=> String
3638
+ # resp.hosted_zone_summaries[0].name #=> String
3639
+ # resp.hosted_zone_summaries[0].owner.owning_account #=> String
3640
+ # resp.hosted_zone_summaries[0].owner.owning_service #=> String
3641
+ # resp.max_items #=> Integer
3642
+ # resp.next_token #=> String
3643
+ #
3644
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPC AWS API Documentation
3645
+ #
3646
+ # @overload list_hosted_zones_by_vpc(params = {})
3647
+ # @param [Hash] params ({})
3648
+ def list_hosted_zones_by_vpc(params = {}, options = {})
3649
+ req = build_request(:list_hosted_zones_by_vpc, params)
3650
+ req.send_request(options)
3651
+ end
3652
+
3558
3653
  # Lists the configurations for DNS query logging that are associated
3559
3654
  # with the current AWS account or the configuration that is associated
3560
3655
  # with a specified hosted zone.
@@ -5134,7 +5229,7 @@ module Aws::Route53
5134
5229
  params: params,
5135
5230
  config: config)
5136
5231
  context[:gem_name] = 'aws-sdk-route53'
5137
- context[:gem_version] = '1.34.0'
5232
+ context[:gem_version] = '1.39.0'
5138
5233
  Seahorse::Client::Request.new(handlers, context)
5139
5234
  end
5140
5235
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -11,6 +13,7 @@ module Aws::Route53
11
13
 
12
14
  include Seahorse::Model
13
15
 
16
+ AWSAccountID = Shapes::StringShape.new(name: 'AWSAccountID')
14
17
  AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
15
18
  AccountLimitType = Shapes::StringShape.new(name: 'AccountLimitType')
16
19
  AlarmIdentifier = Shapes::StructureShape.new(name: 'AlarmIdentifier')
@@ -160,7 +163,11 @@ module Aws::Route53
160
163
  HostedZoneNotEmpty = Shapes::StructureShape.new(name: 'HostedZoneNotEmpty')
161
164
  HostedZoneNotFound = Shapes::StructureShape.new(name: 'HostedZoneNotFound')
162
165
  HostedZoneNotPrivate = Shapes::StructureShape.new(name: 'HostedZoneNotPrivate')
166
+ HostedZoneOwner = Shapes::StructureShape.new(name: 'HostedZoneOwner')
167
+ HostedZoneOwningService = Shapes::StringShape.new(name: 'HostedZoneOwningService')
163
168
  HostedZoneRRSetCount = Shapes::IntegerShape.new(name: 'HostedZoneRRSetCount')
169
+ HostedZoneSummaries = Shapes::ListShape.new(name: 'HostedZoneSummaries')
170
+ HostedZoneSummary = Shapes::StructureShape.new(name: 'HostedZoneSummary')
164
171
  HostedZones = Shapes::ListShape.new(name: 'HostedZones')
165
172
  IPAddress = Shapes::StringShape.new(name: 'IPAddress')
166
173
  IPAddressCidr = Shapes::StringShape.new(name: 'IPAddressCidr')
@@ -186,6 +193,8 @@ module Aws::Route53
186
193
  ListHealthChecksResponse = Shapes::StructureShape.new(name: 'ListHealthChecksResponse')
187
194
  ListHostedZonesByNameRequest = Shapes::StructureShape.new(name: 'ListHostedZonesByNameRequest')
188
195
  ListHostedZonesByNameResponse = Shapes::StructureShape.new(name: 'ListHostedZonesByNameResponse')
196
+ ListHostedZonesByVPCRequest = Shapes::StructureShape.new(name: 'ListHostedZonesByVPCRequest')
197
+ ListHostedZonesByVPCResponse = Shapes::StructureShape.new(name: 'ListHostedZonesByVPCResponse')
189
198
  ListHostedZonesRequest = Shapes::StructureShape.new(name: 'ListHostedZonesRequest')
190
199
  ListHostedZonesResponse = Shapes::StructureShape.new(name: 'ListHostedZonesResponse')
191
200
  ListQueryLoggingConfigsRequest = Shapes::StructureShape.new(name: 'ListQueryLoggingConfigsRequest')
@@ -750,6 +759,17 @@ module Aws::Route53
750
759
  HostedZoneNotPrivate.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
751
760
  HostedZoneNotPrivate.struct_class = Types::HostedZoneNotPrivate
752
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
+
753
773
  HostedZones.member = Shapes::ShapeRef.new(shape: HostedZone, location_name: "HostedZone")
754
774
 
755
775
  IncompatibleVersion.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
@@ -829,6 +849,17 @@ module Aws::Route53
829
849
  ListHostedZonesByNameResponse.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, required: true, location_name: "MaxItems"))
830
850
  ListHostedZonesByNameResponse.struct_class = Types::ListHostedZonesByNameResponse
831
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
+
832
863
  ListHostedZonesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: PageMarker, location: "querystring", location_name: "marker"))
833
864
  ListHostedZonesRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location: "querystring", location_name: "maxitems"))
834
865
  ListHostedZonesRequest.add_member(:delegation_set_id, Shapes::ShapeRef.new(shape: ResourceId, location: "querystring", location_name: "delegationsetid"))
@@ -1233,6 +1264,7 @@ module Aws::Route53
1233
1264
  o.errors << Shapes::ShapeRef.new(shape: PublicZoneVPCAssociation)
1234
1265
  o.errors << Shapes::ShapeRef.new(shape: ConflictingDomainExists)
1235
1266
  o.errors << Shapes::ShapeRef.new(shape: LimitsExceeded)
1267
+ o.errors << Shapes::ShapeRef.new(shape: PriorRequestNotComplete)
1236
1268
  end)
1237
1269
 
1238
1270
  api.add_operation(:change_resource_record_sets, Seahorse::Model::Operation.new.tap do |o|
@@ -1744,6 +1776,16 @@ module Aws::Route53
1744
1776
  o.errors << Shapes::ShapeRef.new(shape: InvalidDomainName)
1745
1777
  end)
1746
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
+
1747
1789
  api.add_operation(:list_query_logging_configs, Seahorse::Model::Operation.new.tap do |o|
1748
1790
  o.name = "ListQueryLoggingConfigs"
1749
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
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module Route53
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -46,6 +48,7 @@ module Aws::Route53
46
48
  class AccountLimit < Struct.new(
47
49
  :type,
48
50
  :value)
51
+ SENSITIVE = []
49
52
  include Aws::Structure
50
53
  end
51
54
 
@@ -101,6 +104,7 @@ module Aws::Route53
101
104
  class AlarmIdentifier < Struct.new(
102
105
  :region,
103
106
  :name)
107
+ SENSITIVE = []
104
108
  include Aws::Structure
105
109
  end
106
110
 
@@ -509,6 +513,7 @@ module Aws::Route53
509
513
  :hosted_zone_id,
510
514
  :dns_name,
511
515
  :evaluate_target_health)
516
+ SENSITIVE = []
512
517
  include Aws::Structure
513
518
  end
514
519
 
@@ -550,6 +555,7 @@ module Aws::Route53
550
555
  :hosted_zone_id,
551
556
  :vpc,
552
557
  :comment)
558
+ SENSITIVE = []
553
559
  include Aws::Structure
554
560
  end
555
561
 
@@ -564,6 +570,7 @@ module Aws::Route53
564
570
  #
565
571
  class AssociateVPCWithHostedZoneResponse < Struct.new(
566
572
  :change_info)
573
+ SENSITIVE = []
567
574
  include Aws::Structure
568
575
  end
569
576
 
@@ -638,6 +645,7 @@ module Aws::Route53
638
645
  class Change < Struct.new(
639
646
  :action,
640
647
  :resource_record_set)
648
+ SENSITIVE = []
641
649
  include Aws::Structure
642
650
  end
643
651
 
@@ -696,6 +704,7 @@ module Aws::Route53
696
704
  class ChangeBatch < Struct.new(
697
705
  :comment,
698
706
  :changes)
707
+ SENSITIVE = []
699
708
  include Aws::Structure
700
709
  end
701
710
 
@@ -741,6 +750,7 @@ module Aws::Route53
741
750
  :status,
742
751
  :submitted_at,
743
752
  :comment)
753
+ SENSITIVE = []
744
754
  include Aws::Structure
745
755
  end
746
756
 
@@ -804,6 +814,7 @@ module Aws::Route53
804
814
  class ChangeResourceRecordSetsRequest < Struct.new(
805
815
  :hosted_zone_id,
806
816
  :change_batch)
817
+ SENSITIVE = []
807
818
  include Aws::Structure
808
819
  end
809
820
 
@@ -825,6 +836,7 @@ module Aws::Route53
825
836
  #
826
837
  class ChangeResourceRecordSetsResponse < Struct.new(
827
838
  :change_info)
839
+ SENSITIVE = []
828
840
  include Aws::Structure
829
841
  end
830
842
 
@@ -880,6 +892,7 @@ module Aws::Route53
880
892
  :resource_id,
881
893
  :add_tags,
882
894
  :remove_tag_keys)
895
+ SENSITIVE = []
883
896
  include Aws::Structure
884
897
  end
885
898
 
@@ -954,6 +967,7 @@ module Aws::Route53
954
967
  :namespace,
955
968
  :statistic,
956
969
  :dimensions)
970
+ SENSITIVE = []
957
971
  include Aws::Structure
958
972
  end
959
973
 
@@ -968,6 +982,7 @@ module Aws::Route53
968
982
  #
969
983
  class ConcurrentModification < Struct.new(
970
984
  :message)
985
+ SENSITIVE = []
971
986
  include Aws::Structure
972
987
  end
973
988
 
@@ -1002,6 +1017,7 @@ module Aws::Route53
1002
1017
  #
1003
1018
  class ConflictingDomainExists < Struct.new(
1004
1019
  :message)
1020
+ SENSITIVE = []
1005
1021
  include Aws::Structure
1006
1022
  end
1007
1023
 
@@ -1018,6 +1034,7 @@ module Aws::Route53
1018
1034
  #
1019
1035
  class ConflictingTypes < Struct.new(
1020
1036
  :message)
1037
+ SENSITIVE = []
1021
1038
  include Aws::Structure
1022
1039
  end
1023
1040
 
@@ -1085,6 +1102,7 @@ module Aws::Route53
1085
1102
  class CreateHealthCheckRequest < Struct.new(
1086
1103
  :caller_reference,
1087
1104
  :health_check_config)
1105
+ SENSITIVE = []
1088
1106
  include Aws::Structure
1089
1107
  end
1090
1108
 
@@ -1105,6 +1123,7 @@ module Aws::Route53
1105
1123
  class CreateHealthCheckResponse < Struct.new(
1106
1124
  :health_check,
1107
1125
  :location)
1126
+ SENSITIVE = []
1108
1127
  include Aws::Structure
1109
1128
  end
1110
1129
 
@@ -1195,6 +1214,7 @@ module Aws::Route53
1195
1214
  :caller_reference,
1196
1215
  :hosted_zone_config,
1197
1216
  :delegation_set_id)
1217
+ SENSITIVE = []
1198
1218
  include Aws::Structure
1199
1219
  end
1200
1220
 
@@ -1232,6 +1252,7 @@ module Aws::Route53
1232
1252
  :delegation_set,
1233
1253
  :vpc,
1234
1254
  :location)
1255
+ SENSITIVE = []
1235
1256
  include Aws::Structure
1236
1257
  end
1237
1258
 
@@ -1270,6 +1291,7 @@ module Aws::Route53
1270
1291
  class CreateQueryLoggingConfigRequest < Struct.new(
1271
1292
  :hosted_zone_id,
1272
1293
  :cloud_watch_logs_log_group_arn)
1294
+ SENSITIVE = []
1273
1295
  include Aws::Structure
1274
1296
  end
1275
1297
 
@@ -1289,6 +1311,7 @@ module Aws::Route53
1289
1311
  class CreateQueryLoggingConfigResponse < Struct.new(
1290
1312
  :query_logging_config,
1291
1313
  :location)
1314
+ SENSITIVE = []
1292
1315
  include Aws::Structure
1293
1316
  end
1294
1317
 
@@ -1319,6 +1342,7 @@ module Aws::Route53
1319
1342
  class CreateReusableDelegationSetRequest < Struct.new(
1320
1343
  :caller_reference,
1321
1344
  :hosted_zone_id)
1345
+ SENSITIVE = []
1322
1346
  include Aws::Structure
1323
1347
  end
1324
1348
 
@@ -1335,6 +1359,7 @@ module Aws::Route53
1335
1359
  class CreateReusableDelegationSetResponse < Struct.new(
1336
1360
  :delegation_set,
1337
1361
  :location)
1362
+ SENSITIVE = []
1338
1363
  include Aws::Structure
1339
1364
  end
1340
1365
 
@@ -1389,6 +1414,7 @@ module Aws::Route53
1389
1414
  :ttl,
1390
1415
  :traffic_policy_id,
1391
1416
  :traffic_policy_version)
1417
+ SENSITIVE = []
1392
1418
  include Aws::Structure
1393
1419
  end
1394
1420
 
@@ -1409,6 +1435,7 @@ module Aws::Route53
1409
1435
  class CreateTrafficPolicyInstanceResponse < Struct.new(
1410
1436
  :traffic_policy_instance,
1411
1437
  :location)
1438
+ SENSITIVE = []
1412
1439
  include Aws::Structure
1413
1440
  end
1414
1441
 
@@ -1448,6 +1475,7 @@ module Aws::Route53
1448
1475
  :name,
1449
1476
  :document,
1450
1477
  :comment)
1478
+ SENSITIVE = []
1451
1479
  include Aws::Structure
1452
1480
  end
1453
1481
 
@@ -1467,6 +1495,7 @@ module Aws::Route53
1467
1495
  class CreateTrafficPolicyResponse < Struct.new(
1468
1496
  :traffic_policy,
1469
1497
  :location)
1498
+ SENSITIVE = []
1470
1499
  include Aws::Structure
1471
1500
  end
1472
1501
 
@@ -1509,6 +1538,7 @@ module Aws::Route53
1509
1538
  :id,
1510
1539
  :document,
1511
1540
  :comment)
1541
+ SENSITIVE = []
1512
1542
  include Aws::Structure
1513
1543
  end
1514
1544
 
@@ -1529,6 +1559,7 @@ module Aws::Route53
1529
1559
  class CreateTrafficPolicyVersionResponse < Struct.new(
1530
1560
  :traffic_policy,
1531
1561
  :location)
1562
+ SENSITIVE = []
1532
1563
  include Aws::Structure
1533
1564
  end
1534
1565
 
@@ -1563,6 +1594,7 @@ module Aws::Route53
1563
1594
  class CreateVPCAssociationAuthorizationRequest < Struct.new(
1564
1595
  :hosted_zone_id,
1565
1596
  :vpc)
1597
+ SENSITIVE = []
1566
1598
  include Aws::Structure
1567
1599
  end
1568
1600
 
@@ -1583,6 +1615,7 @@ module Aws::Route53
1583
1615
  class CreateVPCAssociationAuthorizationResponse < Struct.new(
1584
1616
  :hosted_zone_id,
1585
1617
  :vpc)
1618
+ SENSITIVE = []
1586
1619
  include Aws::Structure
1587
1620
  end
1588
1621
 
@@ -1609,6 +1642,7 @@ module Aws::Route53
1609
1642
  :id,
1610
1643
  :caller_reference,
1611
1644
  :name_servers)
1645
+ SENSITIVE = []
1612
1646
  include Aws::Structure
1613
1647
  end
1614
1648
 
@@ -1623,6 +1657,7 @@ module Aws::Route53
1623
1657
  #
1624
1658
  class DelegationSetAlreadyCreated < Struct.new(
1625
1659
  :message)
1660
+ SENSITIVE = []
1626
1661
  include Aws::Structure
1627
1662
  end
1628
1663
 
@@ -1636,6 +1671,7 @@ module Aws::Route53
1636
1671
  #
1637
1672
  class DelegationSetAlreadyReusable < Struct.new(
1638
1673
  :message)
1674
+ SENSITIVE = []
1639
1675
  include Aws::Structure
1640
1676
  end
1641
1677
 
@@ -1650,6 +1686,7 @@ module Aws::Route53
1650
1686
  #
1651
1687
  class DelegationSetInUse < Struct.new(
1652
1688
  :message)
1689
+ SENSITIVE = []
1653
1690
  include Aws::Structure
1654
1691
  end
1655
1692
 
@@ -1667,6 +1704,7 @@ module Aws::Route53
1667
1704
  #
1668
1705
  class DelegationSetNotAvailable < Struct.new(
1669
1706
  :message)
1707
+ SENSITIVE = []
1670
1708
  include Aws::Structure
1671
1709
  end
1672
1710
 
@@ -1680,6 +1718,7 @@ module Aws::Route53
1680
1718
  #
1681
1719
  class DelegationSetNotReusable < Struct.new(
1682
1720
  :message)
1721
+ SENSITIVE = []
1683
1722
  include Aws::Structure
1684
1723
  end
1685
1724
 
@@ -1700,6 +1739,7 @@ module Aws::Route53
1700
1739
  #
1701
1740
  class DeleteHealthCheckRequest < Struct.new(
1702
1741
  :health_check_id)
1742
+ SENSITIVE = []
1703
1743
  include Aws::Structure
1704
1744
  end
1705
1745
 
@@ -1726,6 +1766,7 @@ module Aws::Route53
1726
1766
  #
1727
1767
  class DeleteHostedZoneRequest < Struct.new(
1728
1768
  :id)
1769
+ SENSITIVE = []
1729
1770
  include Aws::Structure
1730
1771
  end
1731
1772
 
@@ -1741,6 +1782,7 @@ module Aws::Route53
1741
1782
  #
1742
1783
  class DeleteHostedZoneResponse < Struct.new(
1743
1784
  :change_info)
1785
+ SENSITIVE = []
1744
1786
  include Aws::Structure
1745
1787
  end
1746
1788
 
@@ -1759,6 +1801,7 @@ module Aws::Route53
1759
1801
  #
1760
1802
  class DeleteQueryLoggingConfigRequest < Struct.new(
1761
1803
  :id)
1804
+ SENSITIVE = []
1762
1805
  include Aws::Structure
1763
1806
  end
1764
1807
 
@@ -1783,6 +1826,7 @@ module Aws::Route53
1783
1826
  #
1784
1827
  class DeleteReusableDelegationSetRequest < Struct.new(
1785
1828
  :id)
1829
+ SENSITIVE = []
1786
1830
  include Aws::Structure
1787
1831
  end
1788
1832
 
@@ -1813,6 +1857,7 @@ module Aws::Route53
1813
1857
  #
1814
1858
  class DeleteTrafficPolicyInstanceRequest < Struct.new(
1815
1859
  :id)
1860
+ SENSITIVE = []
1816
1861
  include Aws::Structure
1817
1862
  end
1818
1863
 
@@ -1845,6 +1890,7 @@ module Aws::Route53
1845
1890
  class DeleteTrafficPolicyRequest < Struct.new(
1846
1891
  :id,
1847
1892
  :version)
1893
+ SENSITIVE = []
1848
1894
  include Aws::Structure
1849
1895
  end
1850
1896
 
@@ -1887,6 +1933,7 @@ module Aws::Route53
1887
1933
  class DeleteVPCAssociationAuthorizationRequest < Struct.new(
1888
1934
  :hosted_zone_id,
1889
1935
  :vpc)
1936
+ SENSITIVE = []
1890
1937
  include Aws::Structure
1891
1938
  end
1892
1939
 
@@ -1914,6 +1961,7 @@ module Aws::Route53
1914
1961
  class Dimension < Struct.new(
1915
1962
  :name,
1916
1963
  :value)
1964
+ SENSITIVE = []
1917
1965
  include Aws::Structure
1918
1966
  end
1919
1967
 
@@ -1952,6 +2000,7 @@ module Aws::Route53
1952
2000
  :hosted_zone_id,
1953
2001
  :vpc,
1954
2002
  :comment)
2003
+ SENSITIVE = []
1955
2004
  include Aws::Structure
1956
2005
  end
1957
2006
 
@@ -1967,6 +2016,7 @@ module Aws::Route53
1967
2016
  #
1968
2017
  class DisassociateVPCFromHostedZoneResponse < Struct.new(
1969
2018
  :change_info)
2019
+ SENSITIVE = []
1970
2020
  include Aws::Structure
1971
2021
  end
1972
2022
 
@@ -2037,6 +2087,7 @@ module Aws::Route53
2037
2087
  :continent_code,
2038
2088
  :country_code,
2039
2089
  :subdivision_code)
2090
+ SENSITIVE = []
2040
2091
  include Aws::Structure
2041
2092
  end
2042
2093
 
@@ -2078,6 +2129,7 @@ module Aws::Route53
2078
2129
  :country_name,
2079
2130
  :subdivision_code,
2080
2131
  :subdivision_name)
2132
+ SENSITIVE = []
2081
2133
  include Aws::Structure
2082
2134
  end
2083
2135
 
@@ -2117,6 +2169,7 @@ module Aws::Route53
2117
2169
  #
2118
2170
  class GetAccountLimitRequest < Struct.new(
2119
2171
  :type)
2172
+ SENSITIVE = []
2120
2173
  include Aws::Structure
2121
2174
  end
2122
2175
 
@@ -2142,6 +2195,7 @@ module Aws::Route53
2142
2195
  class GetAccountLimitResponse < Struct.new(
2143
2196
  :limit,
2144
2197
  :count)
2198
+ SENSITIVE = []
2145
2199
  include Aws::Structure
2146
2200
  end
2147
2201
 
@@ -2164,6 +2218,7 @@ module Aws::Route53
2164
2218
  #
2165
2219
  class GetChangeRequest < Struct.new(
2166
2220
  :id)
2221
+ SENSITIVE = []
2167
2222
  include Aws::Structure
2168
2223
  end
2169
2224
 
@@ -2178,6 +2233,7 @@ module Aws::Route53
2178
2233
  #
2179
2234
  class GetChangeResponse < Struct.new(
2180
2235
  :change_info)
2236
+ SENSITIVE = []
2181
2237
  include Aws::Structure
2182
2238
  end
2183
2239
 
@@ -2200,6 +2256,7 @@ module Aws::Route53
2200
2256
  #
2201
2257
  class GetCheckerIpRangesResponse < Struct.new(
2202
2258
  :checker_ip_ranges)
2259
+ SENSITIVE = []
2203
2260
  include Aws::Structure
2204
2261
  end
2205
2262
 
@@ -2265,6 +2322,7 @@ module Aws::Route53
2265
2322
  :continent_code,
2266
2323
  :country_code,
2267
2324
  :subdivision_code)
2325
+ SENSITIVE = []
2268
2326
  include Aws::Structure
2269
2327
  end
2270
2328
 
@@ -2280,6 +2338,7 @@ module Aws::Route53
2280
2338
  #
2281
2339
  class GetGeoLocationResponse < Struct.new(
2282
2340
  :geo_location_details)
2341
+ SENSITIVE = []
2283
2342
  include Aws::Structure
2284
2343
  end
2285
2344
 
@@ -2303,6 +2362,7 @@ module Aws::Route53
2303
2362
  #
2304
2363
  class GetHealthCheckCountResponse < Struct.new(
2305
2364
  :health_check_count)
2365
+ SENSITIVE = []
2306
2366
  include Aws::Structure
2307
2367
  end
2308
2368
 
@@ -2332,6 +2392,7 @@ module Aws::Route53
2332
2392
  #
2333
2393
  class GetHealthCheckLastFailureReasonRequest < Struct.new(
2334
2394
  :health_check_id)
2395
+ SENSITIVE = []
2335
2396
  include Aws::Structure
2336
2397
  end
2337
2398
 
@@ -2347,6 +2408,7 @@ module Aws::Route53
2347
2408
  #
2348
2409
  class GetHealthCheckLastFailureReasonResponse < Struct.new(
2349
2410
  :health_check_observations)
2411
+ SENSITIVE = []
2350
2412
  include Aws::Structure
2351
2413
  end
2352
2414
 
@@ -2370,6 +2432,7 @@ module Aws::Route53
2370
2432
  #
2371
2433
  class GetHealthCheckRequest < Struct.new(
2372
2434
  :health_check_id)
2435
+ SENSITIVE = []
2373
2436
  include Aws::Structure
2374
2437
  end
2375
2438
 
@@ -2385,6 +2448,7 @@ module Aws::Route53
2385
2448
  #
2386
2449
  class GetHealthCheckResponse < Struct.new(
2387
2450
  :health_check)
2451
+ SENSITIVE = []
2388
2452
  include Aws::Structure
2389
2453
  end
2390
2454
 
@@ -2414,6 +2478,7 @@ module Aws::Route53
2414
2478
  #
2415
2479
  class GetHealthCheckStatusRequest < Struct.new(
2416
2480
  :health_check_id)
2481
+ SENSITIVE = []
2417
2482
  include Aws::Structure
2418
2483
  end
2419
2484
 
@@ -2430,6 +2495,7 @@ module Aws::Route53
2430
2495
  #
2431
2496
  class GetHealthCheckStatusResponse < Struct.new(
2432
2497
  :health_check_observations)
2498
+ SENSITIVE = []
2433
2499
  include Aws::Structure
2434
2500
  end
2435
2501
 
@@ -2454,6 +2520,7 @@ module Aws::Route53
2454
2520
  #
2455
2521
  class GetHostedZoneCountResponse < Struct.new(
2456
2522
  :hosted_zone_count)
2523
+ SENSITIVE = []
2457
2524
  include Aws::Structure
2458
2525
  end
2459
2526
 
@@ -2488,6 +2555,7 @@ module Aws::Route53
2488
2555
  class GetHostedZoneLimitRequest < Struct.new(
2489
2556
  :type,
2490
2557
  :hosted_zone_id)
2558
+ SENSITIVE = []
2491
2559
  include Aws::Structure
2492
2560
  end
2493
2561
 
@@ -2513,6 +2581,7 @@ module Aws::Route53
2513
2581
  class GetHostedZoneLimitResponse < Struct.new(
2514
2582
  :limit,
2515
2583
  :count)
2584
+ SENSITIVE = []
2516
2585
  include Aws::Structure
2517
2586
  end
2518
2587
 
@@ -2533,6 +2602,7 @@ module Aws::Route53
2533
2602
  #
2534
2603
  class GetHostedZoneRequest < Struct.new(
2535
2604
  :id)
2605
+ SENSITIVE = []
2536
2606
  include Aws::Structure
2537
2607
  end
2538
2608
 
@@ -2559,6 +2629,7 @@ module Aws::Route53
2559
2629
  :hosted_zone,
2560
2630
  :delegation_set,
2561
2631
  :vp_cs)
2632
+ SENSITIVE = []
2562
2633
  include Aws::Structure
2563
2634
  end
2564
2635
 
@@ -2578,6 +2649,7 @@ module Aws::Route53
2578
2649
  #
2579
2650
  class GetQueryLoggingConfigRequest < Struct.new(
2580
2651
  :id)
2652
+ SENSITIVE = []
2581
2653
  include Aws::Structure
2582
2654
  end
2583
2655
 
@@ -2595,6 +2667,7 @@ module Aws::Route53
2595
2667
  #
2596
2668
  class GetQueryLoggingConfigResponse < Struct.new(
2597
2669
  :query_logging_config)
2670
+ SENSITIVE = []
2598
2671
  include Aws::Structure
2599
2672
  end
2600
2673
 
@@ -2624,6 +2697,7 @@ module Aws::Route53
2624
2697
  class GetReusableDelegationSetLimitRequest < Struct.new(
2625
2698
  :type,
2626
2699
  :delegation_set_id)
2700
+ SENSITIVE = []
2627
2701
  include Aws::Structure
2628
2702
  end
2629
2703
 
@@ -2644,6 +2718,7 @@ module Aws::Route53
2644
2718
  class GetReusableDelegationSetLimitResponse < Struct.new(
2645
2719
  :limit,
2646
2720
  :count)
2721
+ SENSITIVE = []
2647
2722
  include Aws::Structure
2648
2723
  end
2649
2724
 
@@ -2666,6 +2741,7 @@ module Aws::Route53
2666
2741
  #
2667
2742
  class GetReusableDelegationSetRequest < Struct.new(
2668
2743
  :id)
2744
+ SENSITIVE = []
2669
2745
  include Aws::Structure
2670
2746
  end
2671
2747
 
@@ -2681,6 +2757,7 @@ module Aws::Route53
2681
2757
  #
2682
2758
  class GetReusableDelegationSetResponse < Struct.new(
2683
2759
  :delegation_set)
2760
+ SENSITIVE = []
2684
2761
  include Aws::Structure
2685
2762
  end
2686
2763
 
@@ -2705,6 +2782,7 @@ module Aws::Route53
2705
2782
  #
2706
2783
  class GetTrafficPolicyInstanceCountResponse < Struct.new(
2707
2784
  :traffic_policy_instance_count)
2785
+ SENSITIVE = []
2708
2786
  include Aws::Structure
2709
2787
  end
2710
2788
 
@@ -2726,6 +2804,7 @@ module Aws::Route53
2726
2804
  #
2727
2805
  class GetTrafficPolicyInstanceRequest < Struct.new(
2728
2806
  :id)
2807
+ SENSITIVE = []
2729
2808
  include Aws::Structure
2730
2809
  end
2731
2810
 
@@ -2741,6 +2820,7 @@ module Aws::Route53
2741
2820
  #
2742
2821
  class GetTrafficPolicyInstanceResponse < Struct.new(
2743
2822
  :traffic_policy_instance)
2823
+ SENSITIVE = []
2744
2824
  include Aws::Structure
2745
2825
  end
2746
2826
 
@@ -2768,6 +2848,7 @@ module Aws::Route53
2768
2848
  class GetTrafficPolicyRequest < Struct.new(
2769
2849
  :id,
2770
2850
  :version)
2851
+ SENSITIVE = []
2771
2852
  include Aws::Structure
2772
2853
  end
2773
2854
 
@@ -2782,6 +2863,7 @@ module Aws::Route53
2782
2863
  #
2783
2864
  class GetTrafficPolicyResponse < Struct.new(
2784
2865
  :traffic_policy)
2866
+ SENSITIVE = []
2785
2867
  include Aws::Structure
2786
2868
  end
2787
2869
 
@@ -2831,6 +2913,7 @@ module Aws::Route53
2831
2913
  :health_check_config,
2832
2914
  :health_check_version,
2833
2915
  :cloud_watch_alarm_configuration)
2916
+ SENSITIVE = []
2834
2917
  include Aws::Structure
2835
2918
  end
2836
2919
 
@@ -2854,6 +2937,7 @@ module Aws::Route53
2854
2937
  #
2855
2938
  class HealthCheckAlreadyExists < Struct.new(
2856
2939
  :message)
2940
+ SENSITIVE = []
2857
2941
  include Aws::Structure
2858
2942
  end
2859
2943
 
@@ -3266,6 +3350,7 @@ module Aws::Route53
3266
3350
  :regions,
3267
3351
  :alarm_identifier,
3268
3352
  :insufficient_data_health_status)
3353
+ SENSITIVE = []
3269
3354
  include Aws::Structure
3270
3355
  end
3271
3356
 
@@ -3279,6 +3364,7 @@ module Aws::Route53
3279
3364
  #
3280
3365
  class HealthCheckInUse < Struct.new(
3281
3366
  :message)
3367
+ SENSITIVE = []
3282
3368
  include Aws::Structure
3283
3369
  end
3284
3370
 
@@ -3307,6 +3393,7 @@ module Aws::Route53
3307
3393
  :region,
3308
3394
  :ip_address,
3309
3395
  :status_report)
3396
+ SENSITIVE = []
3310
3397
  include Aws::Structure
3311
3398
  end
3312
3399
 
@@ -3320,6 +3407,7 @@ module Aws::Route53
3320
3407
  #
3321
3408
  class HealthCheckVersionMismatch < Struct.new(
3322
3409
  :message)
3410
+ SENSITIVE = []
3323
3411
  include Aws::Structure
3324
3412
  end
3325
3413
 
@@ -3375,6 +3463,7 @@ module Aws::Route53
3375
3463
  :config,
3376
3464
  :resource_record_set_count,
3377
3465
  :linked_service)
3466
+ SENSITIVE = []
3378
3467
  include Aws::Structure
3379
3468
  end
3380
3469
 
@@ -3390,6 +3479,7 @@ module Aws::Route53
3390
3479
  #
3391
3480
  class HostedZoneAlreadyExists < Struct.new(
3392
3481
  :message)
3482
+ SENSITIVE = []
3393
3483
  include Aws::Structure
3394
3484
  end
3395
3485
 
@@ -3418,6 +3508,7 @@ module Aws::Route53
3418
3508
  class HostedZoneConfig < Struct.new(
3419
3509
  :comment,
3420
3510
  :private_zone)
3511
+ SENSITIVE = []
3421
3512
  include Aws::Structure
3422
3513
  end
3423
3514
 
@@ -3444,6 +3535,7 @@ module Aws::Route53
3444
3535
  class HostedZoneLimit < Struct.new(
3445
3536
  :type,
3446
3537
  :value)
3538
+ SENSITIVE = []
3447
3539
  include Aws::Structure
3448
3540
  end
3449
3541
 
@@ -3458,6 +3550,7 @@ module Aws::Route53
3458
3550
  #
3459
3551
  class HostedZoneNotEmpty < Struct.new(
3460
3552
  :message)
3553
+ SENSITIVE = []
3461
3554
  include Aws::Structure
3462
3555
  end
3463
3556
 
@@ -3471,6 +3564,7 @@ module Aws::Route53
3471
3564
  #
3472
3565
  class HostedZoneNotFound < Struct.new(
3473
3566
  :message)
3567
+ SENSITIVE = []
3474
3568
  include Aws::Structure
3475
3569
  end
3476
3570
 
@@ -3485,6 +3579,69 @@ module Aws::Route53
3485
3579
  #
3486
3580
  class HostedZoneNotPrivate < Struct.new(
3487
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 = []
3488
3645
  include Aws::Structure
3489
3646
  end
3490
3647
 
@@ -3498,6 +3655,7 @@ module Aws::Route53
3498
3655
  #
3499
3656
  class IncompatibleVersion < Struct.new(
3500
3657
  :message)
3658
+ SENSITIVE = []
3501
3659
  include Aws::Structure
3502
3660
  end
3503
3661
 
@@ -3520,6 +3678,7 @@ module Aws::Route53
3520
3678
  #
3521
3679
  class InsufficientCloudWatchLogsResourcePolicy < Struct.new(
3522
3680
  :message)
3681
+ SENSITIVE = []
3523
3682
  include Aws::Structure
3524
3683
  end
3525
3684
 
@@ -3533,6 +3692,7 @@ module Aws::Route53
3533
3692
  #
3534
3693
  class InvalidArgument < Struct.new(
3535
3694
  :message)
3695
+ SENSITIVE = []
3536
3696
  include Aws::Structure
3537
3697
  end
3538
3698
 
@@ -3552,6 +3712,7 @@ module Aws::Route53
3552
3712
  class InvalidChangeBatch < Struct.new(
3553
3713
  :messages,
3554
3714
  :message)
3715
+ SENSITIVE = []
3555
3716
  include Aws::Structure
3556
3717
  end
3557
3718
 
@@ -3565,6 +3726,7 @@ module Aws::Route53
3565
3726
  #
3566
3727
  class InvalidDomainName < Struct.new(
3567
3728
  :message)
3729
+ SENSITIVE = []
3568
3730
  include Aws::Structure
3569
3731
  end
3570
3732
 
@@ -3578,6 +3740,7 @@ module Aws::Route53
3578
3740
  #
3579
3741
  class InvalidInput < Struct.new(
3580
3742
  :message)
3743
+ SENSITIVE = []
3581
3744
  include Aws::Structure
3582
3745
  end
3583
3746
 
@@ -3591,6 +3754,7 @@ module Aws::Route53
3591
3754
  #
3592
3755
  class InvalidPaginationToken < Struct.new(
3593
3756
  :message)
3757
+ SENSITIVE = []
3594
3758
  include Aws::Structure
3595
3759
  end
3596
3760
 
@@ -3605,6 +3769,7 @@ module Aws::Route53
3605
3769
  #
3606
3770
  class InvalidTrafficPolicyDocument < Struct.new(
3607
3771
  :message)
3772
+ SENSITIVE = []
3608
3773
  include Aws::Structure
3609
3774
  end
3610
3775
 
@@ -3619,6 +3784,7 @@ module Aws::Route53
3619
3784
  #
3620
3785
  class InvalidVPCId < Struct.new(
3621
3786
  :message)
3787
+ SENSITIVE = []
3622
3788
  include Aws::Structure
3623
3789
  end
3624
3790
 
@@ -3635,6 +3801,7 @@ module Aws::Route53
3635
3801
  #
3636
3802
  class LastVPCAssociation < Struct.new(
3637
3803
  :message)
3804
+ SENSITIVE = []
3638
3805
  include Aws::Structure
3639
3806
  end
3640
3807
 
@@ -3662,6 +3829,7 @@ module Aws::Route53
3662
3829
  #
3663
3830
  class LimitsExceeded < Struct.new(
3664
3831
  :message)
3832
+ SENSITIVE = []
3665
3833
  include Aws::Structure
3666
3834
  end
3667
3835
 
@@ -3688,6 +3856,7 @@ module Aws::Route53
3688
3856
  class LinkedService < Struct.new(
3689
3857
  :service_principal,
3690
3858
  :description)
3859
+ SENSITIVE = []
3691
3860
  include Aws::Structure
3692
3861
  end
3693
3862
 
@@ -3752,6 +3921,7 @@ module Aws::Route53
3752
3921
  :start_country_code,
3753
3922
  :start_subdivision_code,
3754
3923
  :max_items)
3924
+ SENSITIVE = []
3755
3925
  include Aws::Structure
3756
3926
  end
3757
3927
 
@@ -3804,6 +3974,7 @@ module Aws::Route53
3804
3974
  :next_country_code,
3805
3975
  :next_subdivision_code,
3806
3976
  :max_items)
3977
+ SENSITIVE = []
3807
3978
  include Aws::Structure
3808
3979
  end
3809
3980
 
@@ -3843,6 +4014,7 @@ module Aws::Route53
3843
4014
  class ListHealthChecksRequest < Struct.new(
3844
4015
  :marker,
3845
4016
  :max_items)
4017
+ SENSITIVE = []
3846
4018
  include Aws::Structure
3847
4019
  end
3848
4020
 
@@ -3887,6 +4059,7 @@ module Aws::Route53
3887
4059
  :is_truncated,
3888
4060
  :next_marker,
3889
4061
  :max_items)
4062
+ SENSITIVE = []
3890
4063
  include Aws::Structure
3891
4064
  end
3892
4065
 
@@ -3941,6 +4114,7 @@ module Aws::Route53
3941
4114
  :dns_name,
3942
4115
  :hosted_zone_id,
3943
4116
  :max_items)
4117
+ SENSITIVE = []
3944
4118
  include Aws::Structure
3945
4119
  end
3946
4120
 
@@ -4005,6 +4179,87 @@ module Aws::Route53
4005
4179
  :next_dns_name,
4006
4180
  :next_hosted_zone_id,
4007
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 the hosted zone ID of the first hosted
4213
+ # zone that Route 53 will return if you submit another request.
4214
+ # @return [Integer]
4215
+ #
4216
+ # @!attribute [rw] next_token
4217
+ # If the previous response included a `NextToken` element, the
4218
+ # specified VPC is associated with more hosted zones. To get more
4219
+ # hosted zones, submit another `ListHostedZonesByVPC` request.
4220
+ #
4221
+ # For the value of `NextToken`, specify the value of `NextToken` from
4222
+ # the previous response.
4223
+ #
4224
+ # If the previous response didn't include a `NextToken` element,
4225
+ # there are no more hosted zones to get.
4226
+ # @return [String]
4227
+ #
4228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPCRequest AWS API Documentation
4229
+ #
4230
+ class ListHostedZonesByVPCRequest < Struct.new(
4231
+ :vpc_id,
4232
+ :vpc_region,
4233
+ :max_items,
4234
+ :next_token)
4235
+ SENSITIVE = []
4236
+ include Aws::Structure
4237
+ end
4238
+
4239
+ # @!attribute [rw] hosted_zone_summaries
4240
+ # A list that contains one `HostedZoneSummary` element for each hosted
4241
+ # zone that the specified Amazon VPC is associated with. Each
4242
+ # `HostedZoneSummary` element contains the hosted zone name and ID,
4243
+ # and information about who owns the hosted zone.
4244
+ # @return [Array<Types::HostedZoneSummary>]
4245
+ #
4246
+ # @!attribute [rw] max_items
4247
+ # The value that you specified for `MaxItems` in the most recent
4248
+ # `ListHostedZonesByVPC` request.
4249
+ # @return [Integer]
4250
+ #
4251
+ # @!attribute [rw] next_token
4252
+ # The value that you specified for `NextToken` in the most recent
4253
+ # `ListHostedZonesByVPC` request.
4254
+ # @return [String]
4255
+ #
4256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesByVPCResponse AWS API Documentation
4257
+ #
4258
+ class ListHostedZonesByVPCResponse < Struct.new(
4259
+ :hosted_zone_summaries,
4260
+ :max_items,
4261
+ :next_token)
4262
+ SENSITIVE = []
4008
4263
  include Aws::Structure
4009
4264
  end
4010
4265
 
@@ -4053,6 +4308,7 @@ module Aws::Route53
4053
4308
  :marker,
4054
4309
  :max_items,
4055
4310
  :delegation_set_id)
4311
+ SENSITIVE = []
4056
4312
  include Aws::Structure
4057
4313
  end
4058
4314
 
@@ -4096,6 +4352,7 @@ module Aws::Route53
4096
4352
  :is_truncated,
4097
4353
  :next_marker,
4098
4354
  :max_items)
4355
+ SENSITIVE = []
4099
4356
  include Aws::Structure
4100
4357
  end
4101
4358
 
@@ -4150,6 +4407,7 @@ module Aws::Route53
4150
4407
  :hosted_zone_id,
4151
4408
  :next_token,
4152
4409
  :max_results)
4410
+ SENSITIVE = []
4153
4411
  include Aws::Structure
4154
4412
  end
4155
4413
 
@@ -4184,6 +4442,7 @@ module Aws::Route53
4184
4442
  class ListQueryLoggingConfigsResponse < Struct.new(
4185
4443
  :query_logging_configs,
4186
4444
  :next_token)
4445
+ SENSITIVE = []
4187
4446
  include Aws::Structure
4188
4447
  end
4189
4448
 
@@ -4271,6 +4530,7 @@ module Aws::Route53
4271
4530
  :start_record_type,
4272
4531
  :start_record_identifier,
4273
4532
  :max_items)
4533
+ SENSITIVE = []
4274
4534
  include Aws::Structure
4275
4535
  end
4276
4536
 
@@ -4328,6 +4588,7 @@ module Aws::Route53
4328
4588
  :next_record_type,
4329
4589
  :next_record_identifier,
4330
4590
  :max_items)
4591
+ SENSITIVE = []
4331
4592
  include Aws::Structure
4332
4593
  end
4333
4594
 
@@ -4368,6 +4629,7 @@ module Aws::Route53
4368
4629
  class ListReusableDelegationSetsRequest < Struct.new(
4369
4630
  :marker,
4370
4631
  :max_items)
4632
+ SENSITIVE = []
4371
4633
  include Aws::Structure
4372
4634
  end
4373
4635
 
@@ -4411,6 +4673,7 @@ module Aws::Route53
4411
4673
  :is_truncated,
4412
4674
  :next_marker,
4413
4675
  :max_items)
4676
+ SENSITIVE = []
4414
4677
  include Aws::Structure
4415
4678
  end
4416
4679
 
@@ -4442,6 +4705,7 @@ module Aws::Route53
4442
4705
  class ListTagsForResourceRequest < Struct.new(
4443
4706
  :resource_type,
4444
4707
  :resource_id)
4708
+ SENSITIVE = []
4445
4709
  include Aws::Structure
4446
4710
  end
4447
4711
 
@@ -4457,6 +4721,7 @@ module Aws::Route53
4457
4721
  #
4458
4722
  class ListTagsForResourceResponse < Struct.new(
4459
4723
  :resource_tag_set)
4724
+ SENSITIVE = []
4460
4725
  include Aws::Structure
4461
4726
  end
4462
4727
 
@@ -4489,6 +4754,7 @@ module Aws::Route53
4489
4754
  class ListTagsForResourcesRequest < Struct.new(
4490
4755
  :resource_type,
4491
4756
  :resource_ids)
4757
+ SENSITIVE = []
4492
4758
  include Aws::Structure
4493
4759
  end
4494
4760
 
@@ -4503,6 +4769,7 @@ module Aws::Route53
4503
4769
  #
4504
4770
  class ListTagsForResourcesResponse < Struct.new(
4505
4771
  :resource_tag_sets)
4772
+ SENSITIVE = []
4506
4773
  include Aws::Structure
4507
4774
  end
4508
4775
 
@@ -4543,6 +4810,7 @@ module Aws::Route53
4543
4810
  class ListTrafficPoliciesRequest < Struct.new(
4544
4811
  :traffic_policy_id_marker,
4545
4812
  :max_items)
4813
+ SENSITIVE = []
4546
4814
  include Aws::Structure
4547
4815
  end
4548
4816
 
@@ -4579,6 +4847,7 @@ module Aws::Route53
4579
4847
  :is_truncated,
4580
4848
  :traffic_policy_id_marker,
4581
4849
  :max_items)
4850
+ SENSITIVE = []
4582
4851
  include Aws::Structure
4583
4852
  end
4584
4853
 
@@ -4644,6 +4913,7 @@ module Aws::Route53
4644
4913
  :traffic_policy_instance_name_marker,
4645
4914
  :traffic_policy_instance_type_marker,
4646
4915
  :max_items)
4916
+ SENSITIVE = []
4647
4917
  include Aws::Structure
4648
4918
  end
4649
4919
 
@@ -4691,6 +4961,7 @@ module Aws::Route53
4691
4961
  :traffic_policy_instance_type_marker,
4692
4962
  :is_truncated,
4693
4963
  :max_items)
4964
+ SENSITIVE = []
4694
4965
  include Aws::Structure
4695
4966
  end
4696
4967
 
@@ -4785,6 +5056,7 @@ module Aws::Route53
4785
5056
  :traffic_policy_instance_name_marker,
4786
5057
  :traffic_policy_instance_type_marker,
4787
5058
  :max_items)
5059
+ SENSITIVE = []
4788
5060
  include Aws::Structure
4789
5061
  end
4790
5062
 
@@ -4839,6 +5111,7 @@ module Aws::Route53
4839
5111
  :traffic_policy_instance_type_marker,
4840
5112
  :is_truncated,
4841
5113
  :max_items)
5114
+ SENSITIVE = []
4842
5115
  include Aws::Structure
4843
5116
  end
4844
5117
 
@@ -4912,6 +5185,7 @@ module Aws::Route53
4912
5185
  :traffic_policy_instance_name_marker,
4913
5186
  :traffic_policy_instance_type_marker,
4914
5187
  :max_items)
5188
+ SENSITIVE = []
4915
5189
  include Aws::Structure
4916
5190
  end
4917
5191
 
@@ -4966,6 +5240,7 @@ module Aws::Route53
4966
5240
  :traffic_policy_instance_type_marker,
4967
5241
  :is_truncated,
4968
5242
  :max_items)
5243
+ SENSITIVE = []
4969
5244
  include Aws::Structure
4970
5245
  end
4971
5246
 
@@ -5013,6 +5288,7 @@ module Aws::Route53
5013
5288
  :id,
5014
5289
  :traffic_policy_version_marker,
5015
5290
  :max_items)
5291
+ SENSITIVE = []
5016
5292
  include Aws::Structure
5017
5293
  end
5018
5294
 
@@ -5055,6 +5331,7 @@ module Aws::Route53
5055
5331
  :is_truncated,
5056
5332
  :traffic_policy_version_marker,
5057
5333
  :max_items)
5334
+ SENSITIVE = []
5058
5335
  include Aws::Structure
5059
5336
  end
5060
5337
 
@@ -5095,6 +5372,7 @@ module Aws::Route53
5095
5372
  :hosted_zone_id,
5096
5373
  :next_token,
5097
5374
  :max_results)
5375
+ SENSITIVE = []
5098
5376
  include Aws::Structure
5099
5377
  end
5100
5378
 
@@ -5125,6 +5403,7 @@ module Aws::Route53
5125
5403
  :hosted_zone_id,
5126
5404
  :next_token,
5127
5405
  :vp_cs)
5406
+ SENSITIVE = []
5128
5407
  include Aws::Structure
5129
5408
  end
5130
5409
 
@@ -5137,6 +5416,7 @@ module Aws::Route53
5137
5416
  #
5138
5417
  class NoSuchChange < Struct.new(
5139
5418
  :message)
5419
+ SENSITIVE = []
5140
5420
  include Aws::Structure
5141
5421
  end
5142
5422
 
@@ -5149,6 +5429,7 @@ module Aws::Route53
5149
5429
  #
5150
5430
  class NoSuchCloudWatchLogsLogGroup < Struct.new(
5151
5431
  :message)
5432
+ SENSITIVE = []
5152
5433
  include Aws::Structure
5153
5434
  end
5154
5435
 
@@ -5162,6 +5443,7 @@ module Aws::Route53
5162
5443
  #
5163
5444
  class NoSuchDelegationSet < Struct.new(
5164
5445
  :message)
5446
+ SENSITIVE = []
5165
5447
  include Aws::Structure
5166
5448
  end
5167
5449
 
@@ -5181,6 +5463,7 @@ module Aws::Route53
5181
5463
  #
5182
5464
  class NoSuchGeoLocation < Struct.new(
5183
5465
  :message)
5466
+ SENSITIVE = []
5184
5467
  include Aws::Structure
5185
5468
  end
5186
5469
 
@@ -5194,6 +5477,7 @@ module Aws::Route53
5194
5477
  #
5195
5478
  class NoSuchHealthCheck < Struct.new(
5196
5479
  :message)
5480
+ SENSITIVE = []
5197
5481
  include Aws::Structure
5198
5482
  end
5199
5483
 
@@ -5207,6 +5491,7 @@ module Aws::Route53
5207
5491
  #
5208
5492
  class NoSuchHostedZone < Struct.new(
5209
5493
  :message)
5494
+ SENSITIVE = []
5210
5495
  include Aws::Structure
5211
5496
  end
5212
5497
 
@@ -5219,6 +5504,7 @@ module Aws::Route53
5219
5504
  #
5220
5505
  class NoSuchQueryLoggingConfig < Struct.new(
5221
5506
  :message)
5507
+ SENSITIVE = []
5222
5508
  include Aws::Structure
5223
5509
  end
5224
5510
 
@@ -5232,6 +5518,7 @@ module Aws::Route53
5232
5518
  #
5233
5519
  class NoSuchTrafficPolicy < Struct.new(
5234
5520
  :message)
5521
+ SENSITIVE = []
5235
5522
  include Aws::Structure
5236
5523
  end
5237
5524
 
@@ -5245,6 +5532,7 @@ module Aws::Route53
5245
5532
  #
5246
5533
  class NoSuchTrafficPolicyInstance < Struct.new(
5247
5534
  :message)
5535
+ SENSITIVE = []
5248
5536
  include Aws::Structure
5249
5537
  end
5250
5538
 
@@ -5259,6 +5547,7 @@ module Aws::Route53
5259
5547
  #
5260
5548
  class NotAuthorizedException < Struct.new(
5261
5549
  :message)
5550
+ SENSITIVE = []
5262
5551
  include Aws::Structure
5263
5552
  end
5264
5553
 
@@ -5276,6 +5565,7 @@ module Aws::Route53
5276
5565
  #
5277
5566
  class PriorRequestNotComplete < Struct.new(
5278
5567
  :message)
5568
+ SENSITIVE = []
5279
5569
  include Aws::Structure
5280
5570
  end
5281
5571
 
@@ -5290,6 +5580,7 @@ module Aws::Route53
5290
5580
  #
5291
5581
  class PublicZoneVPCAssociation < Struct.new(
5292
5582
  :message)
5583
+ SENSITIVE = []
5293
5584
  include Aws::Structure
5294
5585
  end
5295
5586
 
@@ -5316,6 +5607,7 @@ module Aws::Route53
5316
5607
  :id,
5317
5608
  :hosted_zone_id,
5318
5609
  :cloud_watch_logs_log_group_arn)
5610
+ SENSITIVE = []
5319
5611
  include Aws::Structure
5320
5612
  end
5321
5613
 
@@ -5329,6 +5621,7 @@ module Aws::Route53
5329
5621
  #
5330
5622
  class QueryLoggingConfigAlreadyExists < Struct.new(
5331
5623
  :message)
5624
+ SENSITIVE = []
5332
5625
  include Aws::Structure
5333
5626
  end
5334
5627
 
@@ -5369,6 +5662,7 @@ module Aws::Route53
5369
5662
  #
5370
5663
  class ResourceRecord < Struct.new(
5371
5664
  :value)
5665
+ SENSITIVE = []
5372
5666
  include Aws::Structure
5373
5667
  end
5374
5668
 
@@ -5964,6 +6258,7 @@ module Aws::Route53
5964
6258
  :alias_target,
5965
6259
  :health_check_id,
5966
6260
  :traffic_policy_instance_id)
6261
+ SENSITIVE = []
5967
6262
  include Aws::Structure
5968
6263
  end
5969
6264
 
@@ -5991,6 +6286,7 @@ module Aws::Route53
5991
6286
  :resource_type,
5992
6287
  :resource_id,
5993
6288
  :tags)
6289
+ SENSITIVE = []
5994
6290
  include Aws::Structure
5995
6291
  end
5996
6292
 
@@ -6014,6 +6310,7 @@ module Aws::Route53
6014
6310
  class ReusableDelegationSetLimit < Struct.new(
6015
6311
  :type,
6016
6312
  :value)
6313
+ SENSITIVE = []
6017
6314
  include Aws::Structure
6018
6315
  end
6019
6316
 
@@ -6041,6 +6338,7 @@ module Aws::Route53
6041
6338
  class StatusReport < Struct.new(
6042
6339
  :status,
6043
6340
  :checked_time)
6341
+ SENSITIVE = []
6044
6342
  include Aws::Structure
6045
6343
  end
6046
6344
 
@@ -6090,6 +6388,7 @@ module Aws::Route53
6090
6388
  class Tag < Struct.new(
6091
6389
  :key,
6092
6390
  :value)
6391
+ SENSITIVE = []
6093
6392
  include Aws::Structure
6094
6393
  end
6095
6394
 
@@ -6164,6 +6463,7 @@ module Aws::Route53
6164
6463
  :resolver_ip,
6165
6464
  :edns0_client_subnet_ip,
6166
6465
  :edns0_client_subnet_mask)
6466
+ SENSITIVE = []
6167
6467
  include Aws::Structure
6168
6468
  end
6169
6469
 
@@ -6215,6 +6515,7 @@ module Aws::Route53
6215
6515
  :record_data,
6216
6516
  :response_code,
6217
6517
  :protocol)
6518
+ SENSITIVE = []
6218
6519
  include Aws::Structure
6219
6520
  end
6220
6521
 
@@ -6227,6 +6528,7 @@ module Aws::Route53
6227
6528
  #
6228
6529
  class ThrottlingException < Struct.new(
6229
6530
  :message)
6531
+ SENSITIVE = []
6230
6532
  include Aws::Structure
6231
6533
  end
6232
6534
 
@@ -6257,6 +6559,7 @@ module Aws::Route53
6257
6559
  #
6258
6560
  class TooManyHealthChecks < Struct.new(
6259
6561
  :message)
6562
+ SENSITIVE = []
6260
6563
  include Aws::Structure
6261
6564
  end
6262
6565
 
@@ -6292,6 +6595,7 @@ module Aws::Route53
6292
6595
  #
6293
6596
  class TooManyHostedZones < Struct.new(
6294
6597
  :message)
6598
+ SENSITIVE = []
6295
6599
  include Aws::Structure
6296
6600
  end
6297
6601
 
@@ -6320,6 +6624,7 @@ module Aws::Route53
6320
6624
  #
6321
6625
  class TooManyTrafficPolicies < Struct.new(
6322
6626
  :message)
6627
+ SENSITIVE = []
6323
6628
  include Aws::Structure
6324
6629
  end
6325
6630
 
@@ -6350,6 +6655,7 @@ module Aws::Route53
6350
6655
  #
6351
6656
  class TooManyTrafficPolicyInstances < Struct.new(
6352
6657
  :message)
6658
+ SENSITIVE = []
6353
6659
  include Aws::Structure
6354
6660
  end
6355
6661
 
@@ -6376,6 +6682,7 @@ module Aws::Route53
6376
6682
  #
6377
6683
  class TooManyTrafficPolicyVersionsForCurrentPolicy < Struct.new(
6378
6684
  :message)
6685
+ SENSITIVE = []
6379
6686
  include Aws::Structure
6380
6687
  end
6381
6688
 
@@ -6394,6 +6701,7 @@ module Aws::Route53
6394
6701
  #
6395
6702
  class TooManyVPCAssociationAuthorizations < Struct.new(
6396
6703
  :message)
6704
+ SENSITIVE = []
6397
6705
  include Aws::Structure
6398
6706
  end
6399
6707
 
@@ -6444,6 +6752,7 @@ module Aws::Route53
6444
6752
  :type,
6445
6753
  :document,
6446
6754
  :comment)
6755
+ SENSITIVE = []
6447
6756
  include Aws::Structure
6448
6757
  end
6449
6758
 
@@ -6457,6 +6766,7 @@ module Aws::Route53
6457
6766
  #
6458
6767
  class TrafficPolicyAlreadyExists < Struct.new(
6459
6768
  :message)
6769
+ SENSITIVE = []
6460
6770
  include Aws::Structure
6461
6771
  end
6462
6772
 
@@ -6471,6 +6781,7 @@ module Aws::Route53
6471
6781
  #
6472
6782
  class TrafficPolicyInUse < Struct.new(
6473
6783
  :message)
6784
+ SENSITIVE = []
6474
6785
  include Aws::Structure
6475
6786
  end
6476
6787
 
@@ -6551,6 +6862,7 @@ module Aws::Route53
6551
6862
  :traffic_policy_id,
6552
6863
  :traffic_policy_version,
6553
6864
  :traffic_policy_type)
6865
+ SENSITIVE = []
6554
6866
  include Aws::Structure
6555
6867
  end
6556
6868
 
@@ -6564,6 +6876,7 @@ module Aws::Route53
6564
6876
  #
6565
6877
  class TrafficPolicyInstanceAlreadyExists < Struct.new(
6566
6878
  :message)
6879
+ SENSITIVE = []
6567
6880
  include Aws::Structure
6568
6881
  end
6569
6882
 
@@ -6603,6 +6916,7 @@ module Aws::Route53
6603
6916
  :type,
6604
6917
  :latest_version,
6605
6918
  :traffic_policy_count)
6919
+ SENSITIVE = []
6606
6920
  include Aws::Structure
6607
6921
  end
6608
6922
 
@@ -6997,6 +7311,7 @@ module Aws::Route53
6997
7311
  :alarm_identifier,
6998
7312
  :insufficient_data_health_status,
6999
7313
  :reset_elements)
7314
+ SENSITIVE = []
7000
7315
  include Aws::Structure
7001
7316
  end
7002
7317
 
@@ -7012,6 +7327,7 @@ module Aws::Route53
7012
7327
  #
7013
7328
  class UpdateHealthCheckResponse < Struct.new(
7014
7329
  :health_check)
7330
+ SENSITIVE = []
7015
7331
  include Aws::Structure
7016
7332
  end
7017
7333
 
@@ -7040,6 +7356,7 @@ module Aws::Route53
7040
7356
  class UpdateHostedZoneCommentRequest < Struct.new(
7041
7357
  :id,
7042
7358
  :comment)
7359
+ SENSITIVE = []
7043
7360
  include Aws::Structure
7044
7361
  end
7045
7362
 
@@ -7055,6 +7372,7 @@ module Aws::Route53
7055
7372
  #
7056
7373
  class UpdateHostedZoneCommentResponse < Struct.new(
7057
7374
  :hosted_zone)
7375
+ SENSITIVE = []
7058
7376
  include Aws::Structure
7059
7377
  end
7060
7378
 
@@ -7090,6 +7408,7 @@ module Aws::Route53
7090
7408
  :id,
7091
7409
  :version,
7092
7410
  :comment)
7411
+ SENSITIVE = []
7093
7412
  include Aws::Structure
7094
7413
  end
7095
7414
 
@@ -7105,6 +7424,7 @@ module Aws::Route53
7105
7424
  #
7106
7425
  class UpdateTrafficPolicyCommentResponse < Struct.new(
7107
7426
  :traffic_policy)
7427
+ SENSITIVE = []
7108
7428
  include Aws::Structure
7109
7429
  end
7110
7430
 
@@ -7150,6 +7470,7 @@ module Aws::Route53
7150
7470
  :ttl,
7151
7471
  :traffic_policy_id,
7152
7472
  :traffic_policy_version)
7473
+ SENSITIVE = []
7153
7474
  include Aws::Structure
7154
7475
  end
7155
7476
 
@@ -7165,6 +7486,7 @@ module Aws::Route53
7165
7486
  #
7166
7487
  class UpdateTrafficPolicyInstanceResponse < Struct.new(
7167
7488
  :traffic_policy_instance)
7489
+ SENSITIVE = []
7168
7490
  include Aws::Structure
7169
7491
  end
7170
7492
 
@@ -7193,6 +7515,7 @@ module Aws::Route53
7193
7515
  class VPC < Struct.new(
7194
7516
  :vpc_region,
7195
7517
  :vpc_id)
7518
+ SENSITIVE = []
7196
7519
  include Aws::Structure
7197
7520
  end
7198
7521
 
@@ -7207,6 +7530,7 @@ module Aws::Route53
7207
7530
  #
7208
7531
  class VPCAssociationAuthorizationNotFound < Struct.new(
7209
7532
  :message)
7533
+ SENSITIVE = []
7210
7534
  include Aws::Structure
7211
7535
  end
7212
7536
 
@@ -7220,6 +7544,7 @@ module Aws::Route53
7220
7544
  #
7221
7545
  class VPCAssociationNotFound < Struct.new(
7222
7546
  :message)
7547
+ SENSITIVE = []
7223
7548
  include Aws::Structure
7224
7549
  end
7225
7550