aws-sdk-route53 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,6 +30,7 @@ module Aws::Route53
30
30
  # * {ConcurrentModification}
31
31
  # * {ConflictingDomainExists}
32
32
  # * {ConflictingTypes}
33
+ # * {DNSSECNotFound}
33
34
  # * {DelegationSetAlreadyCreated}
34
35
  # * {DelegationSetAlreadyReusable}
35
36
  # * {DelegationSetInUse}
@@ -42,15 +43,24 @@ module Aws::Route53
42
43
  # * {HostedZoneNotEmpty}
43
44
  # * {HostedZoneNotFound}
44
45
  # * {HostedZoneNotPrivate}
46
+ # * {HostedZonePartiallyDelegated}
45
47
  # * {IncompatibleVersion}
46
48
  # * {InsufficientCloudWatchLogsResourcePolicy}
47
49
  # * {InvalidArgument}
48
50
  # * {InvalidChangeBatch}
49
51
  # * {InvalidDomainName}
50
52
  # * {InvalidInput}
53
+ # * {InvalidKMSArn}
54
+ # * {InvalidKeySigningKeyName}
55
+ # * {InvalidKeySigningKeyStatus}
51
56
  # * {InvalidPaginationToken}
57
+ # * {InvalidSigningStatus}
52
58
  # * {InvalidTrafficPolicyDocument}
53
59
  # * {InvalidVPCId}
60
+ # * {KeySigningKeyAlreadyExists}
61
+ # * {KeySigningKeyInParentDSRecord}
62
+ # * {KeySigningKeyInUse}
63
+ # * {KeySigningKeyWithActiveStatusNotFound}
54
64
  # * {LastVPCAssociation}
55
65
  # * {LimitsExceeded}
56
66
  # * {NoSuchChange}
@@ -59,6 +69,7 @@ module Aws::Route53
59
69
  # * {NoSuchGeoLocation}
60
70
  # * {NoSuchHealthCheck}
61
71
  # * {NoSuchHostedZone}
72
+ # * {NoSuchKeySigningKey}
62
73
  # * {NoSuchQueryLoggingConfig}
63
74
  # * {NoSuchTrafficPolicy}
64
75
  # * {NoSuchTrafficPolicyInstance}
@@ -69,6 +80,7 @@ module Aws::Route53
69
80
  # * {ThrottlingException}
70
81
  # * {TooManyHealthChecks}
71
82
  # * {TooManyHostedZones}
83
+ # * {TooManyKeySigningKeys}
72
84
  # * {TooManyTrafficPolicies}
73
85
  # * {TooManyTrafficPolicyInstances}
74
86
  # * {TooManyTrafficPolicyVersionsForCurrentPolicy}
@@ -130,6 +142,21 @@ module Aws::Route53
130
142
  end
131
143
  end
132
144
 
145
+ class DNSSECNotFound < ServiceError
146
+
147
+ # @param [Seahorse::Client::RequestContext] context
148
+ # @param [String] message
149
+ # @param [Aws::Route53::Types::DNSSECNotFound] data
150
+ def initialize(context, message, data = Aws::EmptyStructure.new)
151
+ super(context, message, data)
152
+ end
153
+
154
+ # @return [String]
155
+ def message
156
+ @message || @data[:message]
157
+ end
158
+ end
159
+
133
160
  class DelegationSetAlreadyCreated < ServiceError
134
161
 
135
162
  # @param [Seahorse::Client::RequestContext] context
@@ -310,6 +337,21 @@ module Aws::Route53
310
337
  end
311
338
  end
312
339
 
340
+ class HostedZonePartiallyDelegated < ServiceError
341
+
342
+ # @param [Seahorse::Client::RequestContext] context
343
+ # @param [String] message
344
+ # @param [Aws::Route53::Types::HostedZonePartiallyDelegated] data
345
+ def initialize(context, message, data = Aws::EmptyStructure.new)
346
+ super(context, message, data)
347
+ end
348
+
349
+ # @return [String]
350
+ def message
351
+ @message || @data[:message]
352
+ end
353
+ end
354
+
313
355
  class IncompatibleVersion < ServiceError
314
356
 
315
357
  # @param [Seahorse::Client::RequestContext] context
@@ -405,6 +447,51 @@ module Aws::Route53
405
447
  end
406
448
  end
407
449
 
450
+ class InvalidKMSArn < ServiceError
451
+
452
+ # @param [Seahorse::Client::RequestContext] context
453
+ # @param [String] message
454
+ # @param [Aws::Route53::Types::InvalidKMSArn] data
455
+ def initialize(context, message, data = Aws::EmptyStructure.new)
456
+ super(context, message, data)
457
+ end
458
+
459
+ # @return [String]
460
+ def message
461
+ @message || @data[:message]
462
+ end
463
+ end
464
+
465
+ class InvalidKeySigningKeyName < ServiceError
466
+
467
+ # @param [Seahorse::Client::RequestContext] context
468
+ # @param [String] message
469
+ # @param [Aws::Route53::Types::InvalidKeySigningKeyName] data
470
+ def initialize(context, message, data = Aws::EmptyStructure.new)
471
+ super(context, message, data)
472
+ end
473
+
474
+ # @return [String]
475
+ def message
476
+ @message || @data[:message]
477
+ end
478
+ end
479
+
480
+ class InvalidKeySigningKeyStatus < ServiceError
481
+
482
+ # @param [Seahorse::Client::RequestContext] context
483
+ # @param [String] message
484
+ # @param [Aws::Route53::Types::InvalidKeySigningKeyStatus] data
485
+ def initialize(context, message, data = Aws::EmptyStructure.new)
486
+ super(context, message, data)
487
+ end
488
+
489
+ # @return [String]
490
+ def message
491
+ @message || @data[:message]
492
+ end
493
+ end
494
+
408
495
  class InvalidPaginationToken < ServiceError
409
496
 
410
497
  # @param [Seahorse::Client::RequestContext] context
@@ -420,6 +507,21 @@ module Aws::Route53
420
507
  end
421
508
  end
422
509
 
510
+ class InvalidSigningStatus < ServiceError
511
+
512
+ # @param [Seahorse::Client::RequestContext] context
513
+ # @param [String] message
514
+ # @param [Aws::Route53::Types::InvalidSigningStatus] data
515
+ def initialize(context, message, data = Aws::EmptyStructure.new)
516
+ super(context, message, data)
517
+ end
518
+
519
+ # @return [String]
520
+ def message
521
+ @message || @data[:message]
522
+ end
523
+ end
524
+
423
525
  class InvalidTrafficPolicyDocument < ServiceError
424
526
 
425
527
  # @param [Seahorse::Client::RequestContext] context
@@ -450,6 +552,66 @@ module Aws::Route53
450
552
  end
451
553
  end
452
554
 
555
+ class KeySigningKeyAlreadyExists < ServiceError
556
+
557
+ # @param [Seahorse::Client::RequestContext] context
558
+ # @param [String] message
559
+ # @param [Aws::Route53::Types::KeySigningKeyAlreadyExists] data
560
+ def initialize(context, message, data = Aws::EmptyStructure.new)
561
+ super(context, message, data)
562
+ end
563
+
564
+ # @return [String]
565
+ def message
566
+ @message || @data[:message]
567
+ end
568
+ end
569
+
570
+ class KeySigningKeyInParentDSRecord < ServiceError
571
+
572
+ # @param [Seahorse::Client::RequestContext] context
573
+ # @param [String] message
574
+ # @param [Aws::Route53::Types::KeySigningKeyInParentDSRecord] data
575
+ def initialize(context, message, data = Aws::EmptyStructure.new)
576
+ super(context, message, data)
577
+ end
578
+
579
+ # @return [String]
580
+ def message
581
+ @message || @data[:message]
582
+ end
583
+ end
584
+
585
+ class KeySigningKeyInUse < ServiceError
586
+
587
+ # @param [Seahorse::Client::RequestContext] context
588
+ # @param [String] message
589
+ # @param [Aws::Route53::Types::KeySigningKeyInUse] data
590
+ def initialize(context, message, data = Aws::EmptyStructure.new)
591
+ super(context, message, data)
592
+ end
593
+
594
+ # @return [String]
595
+ def message
596
+ @message || @data[:message]
597
+ end
598
+ end
599
+
600
+ class KeySigningKeyWithActiveStatusNotFound < ServiceError
601
+
602
+ # @param [Seahorse::Client::RequestContext] context
603
+ # @param [String] message
604
+ # @param [Aws::Route53::Types::KeySigningKeyWithActiveStatusNotFound] data
605
+ def initialize(context, message, data = Aws::EmptyStructure.new)
606
+ super(context, message, data)
607
+ end
608
+
609
+ # @return [String]
610
+ def message
611
+ @message || @data[:message]
612
+ end
613
+ end
614
+
453
615
  class LastVPCAssociation < ServiceError
454
616
 
455
617
  # @param [Seahorse::Client::RequestContext] context
@@ -570,6 +732,21 @@ module Aws::Route53
570
732
  end
571
733
  end
572
734
 
735
+ class NoSuchKeySigningKey < ServiceError
736
+
737
+ # @param [Seahorse::Client::RequestContext] context
738
+ # @param [String] message
739
+ # @param [Aws::Route53::Types::NoSuchKeySigningKey] data
740
+ def initialize(context, message, data = Aws::EmptyStructure.new)
741
+ super(context, message, data)
742
+ end
743
+
744
+ # @return [String]
745
+ def message
746
+ @message || @data[:message]
747
+ end
748
+ end
749
+
573
750
  class NoSuchQueryLoggingConfig < ServiceError
574
751
 
575
752
  # @param [Seahorse::Client::RequestContext] context
@@ -720,6 +897,21 @@ module Aws::Route53
720
897
  end
721
898
  end
722
899
 
900
+ class TooManyKeySigningKeys < ServiceError
901
+
902
+ # @param [Seahorse::Client::RequestContext] context
903
+ # @param [String] message
904
+ # @param [Aws::Route53::Types::TooManyKeySigningKeys] data
905
+ def initialize(context, message, data = Aws::EmptyStructure.new)
906
+ super(context, message, data)
907
+ end
908
+
909
+ # @return [String]
910
+ def message
911
+ @message || @data[:message]
912
+ end
913
+ end
914
+
723
915
  class TooManyTrafficPolicies < ServiceError
724
916
 
725
917
  # @param [Seahorse::Client::RequestContext] context
@@ -52,6 +52,44 @@ module Aws::Route53
52
52
  include Aws::Structure
53
53
  end
54
54
 
55
+ # @note When making an API call, you may pass ActivateKeySigningKeyRequest
56
+ # data as a hash:
57
+ #
58
+ # {
59
+ # hosted_zone_id: "ResourceId", # required
60
+ # name: "SigningKeyName", # required
61
+ # }
62
+ #
63
+ # @!attribute [rw] hosted_zone_id
64
+ # A unique string used to identify a hosted zone.
65
+ # @return [String]
66
+ #
67
+ # @!attribute [rw] name
68
+ # An alphanumeric string used to identify a key signing key (KSK).
69
+ # @return [String]
70
+ #
71
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ActivateKeySigningKeyRequest AWS API Documentation
72
+ #
73
+ class ActivateKeySigningKeyRequest < Struct.new(
74
+ :hosted_zone_id,
75
+ :name)
76
+ SENSITIVE = []
77
+ include Aws::Structure
78
+ end
79
+
80
+ # @!attribute [rw] change_info
81
+ # A complex type that describes change information about changes made
82
+ # to your hosted zone.
83
+ # @return [Types::ChangeInfo]
84
+ #
85
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ActivateKeySigningKeyResponse AWS API Documentation
86
+ #
87
+ class ActivateKeySigningKeyResponse < Struct.new(
88
+ :change_info)
89
+ SENSITIVE = []
90
+ include Aws::Structure
91
+ end
92
+
55
93
  # A complex type that identifies the CloudWatch alarm that you want
56
94
  # Amazon Route 53 health checkers to use to determine whether the
57
95
  # specified health check is healthy.
@@ -583,7 +621,7 @@ module Aws::Route53
583
621
  # action: "CREATE", # required, accepts CREATE, DELETE, UPSERT
584
622
  # resource_record_set: { # required
585
623
  # name: "DNSName", # required
586
- # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
624
+ # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
587
625
  # set_identifier: "ResourceRecordSetIdentifier",
588
626
  # weight: 1,
589
627
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
@@ -661,7 +699,7 @@ module Aws::Route53
661
699
  # action: "CREATE", # required, accepts CREATE, DELETE, UPSERT
662
700
  # resource_record_set: { # required
663
701
  # name: "DNSName", # required
664
- # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
702
+ # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
665
703
  # set_identifier: "ResourceRecordSetIdentifier",
666
704
  # weight: 1,
667
705
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
@@ -769,7 +807,7 @@ module Aws::Route53
769
807
  # action: "CREATE", # required, accepts CREATE, DELETE, UPSERT
770
808
  # resource_record_set: { # required
771
809
  # name: "DNSName", # required
772
- # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
810
+ # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
773
811
  # set_identifier: "ResourceRecordSetIdentifier",
774
812
  # weight: 1,
775
813
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
@@ -975,7 +1013,6 @@ module Aws::Route53
975
1013
  # object at the same time that you did. Retry the request.
976
1014
  #
977
1015
  # @!attribute [rw] message
978
- # Descriptive message for the error response.
979
1016
  # @return [String]
980
1017
  #
981
1018
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ConcurrentModification AWS API Documentation
@@ -1027,7 +1064,6 @@ module Aws::Route53
1027
1064
  # `CreateTrafficPolicy` or `CreateTrafficPolicyVersion`request.
1028
1065
  #
1029
1066
  # @!attribute [rw] message
1030
- # Descriptive message for the error response.
1031
1067
  # @return [String]
1032
1068
  #
1033
1069
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ConflictingTypes AWS API Documentation
@@ -1256,6 +1292,117 @@ module Aws::Route53
1256
1292
  include Aws::Structure
1257
1293
  end
1258
1294
 
1295
+ # @note When making an API call, you may pass CreateKeySigningKeyRequest
1296
+ # data as a hash:
1297
+ #
1298
+ # {
1299
+ # caller_reference: "Nonce", # required
1300
+ # hosted_zone_id: "ResourceId", # required
1301
+ # key_management_service_arn: "SigningKeyString", # required
1302
+ # name: "SigningKeyName", # required
1303
+ # status: "SigningKeyStatus", # required
1304
+ # }
1305
+ #
1306
+ # @!attribute [rw] caller_reference
1307
+ # A unique string that identifies the request.
1308
+ # @return [String]
1309
+ #
1310
+ # @!attribute [rw] hosted_zone_id
1311
+ # The unique string (ID) used to identify a hosted zone.
1312
+ # @return [String]
1313
+ #
1314
+ # @!attribute [rw] key_management_service_arn
1315
+ # The Amazon resource name (ARN) for a customer managed key (CMK) in
1316
+ # AWS Key Management Service (KMS). The `KeyManagementServiceArn` must
1317
+ # be unique for each key signing key (KSK) in a single hosted zone. To
1318
+ # see an example of `KeyManagementServiceArn` that grants the correct
1319
+ # permissions for DNSSEC, scroll down to **Example**.
1320
+ #
1321
+ # You must configure the CMK as follows:
1322
+ #
1323
+ # Status
1324
+ #
1325
+ # : Enabled
1326
+ #
1327
+ # Key spec
1328
+ #
1329
+ # : ECC\_NIST\_P256
1330
+ #
1331
+ # Key usage
1332
+ #
1333
+ # : Sign and verify
1334
+ #
1335
+ # Key policy
1336
+ #
1337
+ # : The key policy must give permission for the following actions:
1338
+ #
1339
+ # * DescribeKey
1340
+ #
1341
+ # * GetPublicKey
1342
+ #
1343
+ # * Sign
1344
+ #
1345
+ # The key policy must also include the Amazon Route 53 service in
1346
+ # the principal for your account. Specify the following:
1347
+ #
1348
+ # * `"Service": "api-service.dnssec.route53.aws.internal"`
1349
+ #
1350
+ # ^
1351
+ #
1352
+ # For more information about working with CMK in KMS, see [AWS Key
1353
+ # Management Service concepts][1].
1354
+ #
1355
+ #
1356
+ #
1357
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
1358
+ # @return [String]
1359
+ #
1360
+ # @!attribute [rw] name
1361
+ # An alphanumeric string used to identify a key signing key (KSK).
1362
+ # `Name` must be unique for each key signing key in the same hosted
1363
+ # zone.
1364
+ # @return [String]
1365
+ #
1366
+ # @!attribute [rw] status
1367
+ # A string specifying the initial status of the key signing key (KSK).
1368
+ # You can set the value to `ACTIVE` or `INACTIVE`.
1369
+ # @return [String]
1370
+ #
1371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateKeySigningKeyRequest AWS API Documentation
1372
+ #
1373
+ class CreateKeySigningKeyRequest < Struct.new(
1374
+ :caller_reference,
1375
+ :hosted_zone_id,
1376
+ :key_management_service_arn,
1377
+ :name,
1378
+ :status)
1379
+ SENSITIVE = []
1380
+ include Aws::Structure
1381
+ end
1382
+
1383
+ # @!attribute [rw] change_info
1384
+ # A complex type that describes change information about changes made
1385
+ # to your hosted zone.
1386
+ # @return [Types::ChangeInfo]
1387
+ #
1388
+ # @!attribute [rw] key_signing_key
1389
+ # The key signing key (KSK) that the request creates.
1390
+ # @return [Types::KeySigningKey]
1391
+ #
1392
+ # @!attribute [rw] location
1393
+ # The unique URL representing the new key signing key (KSK).
1394
+ # @return [String]
1395
+ #
1396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateKeySigningKeyResponse AWS API Documentation
1397
+ #
1398
+ class CreateKeySigningKeyResponse < Struct.new(
1399
+ :change_info,
1400
+ :key_signing_key,
1401
+ :location)
1402
+ SENSITIVE = []
1403
+ include Aws::Structure
1404
+ end
1405
+
1259
1406
  # @note When making an API call, you may pass CreateQueryLoggingConfigRequest
1260
1407
  # data as a hash:
1261
1408
  #
@@ -1619,6 +1766,87 @@ module Aws::Route53
1619
1766
  include Aws::Structure
1620
1767
  end
1621
1768
 
1769
+ # The hosted zone doesn't have any DNSSEC resources.
1770
+ #
1771
+ # @!attribute [rw] message
1772
+ # @return [String]
1773
+ #
1774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DNSSECNotFound AWS API Documentation
1775
+ #
1776
+ class DNSSECNotFound < Struct.new(
1777
+ :message)
1778
+ SENSITIVE = []
1779
+ include Aws::Structure
1780
+ end
1781
+
1782
+ # A string repesenting the status of DNSSEC signing.
1783
+ #
1784
+ # @!attribute [rw] serve_signature
1785
+ # Indicates your hosted zone signging status: `SIGNING`,
1786
+ # `NOT_SIGNING`, or `INTERNAL_FAILURE`. If the status is
1787
+ # `INTERNAL_FAILURE`, see `StatusMessage` for information about steps
1788
+ # that you can take to correct the problem.
1789
+ #
1790
+ # A status `INTERNAL_FAILURE` means there was an error during a
1791
+ # request. Before you can continue to work with DNSSEC signing,
1792
+ # including working with key signing keys (KSKs), you must correct the
1793
+ # problem by enabling or disabling DNSSEC signing for the hosted zone.
1794
+ # @return [String]
1795
+ #
1796
+ # @!attribute [rw] status_message
1797
+ # The status message provided for the following DNSSEC signing status:
1798
+ # `INTERNAL_FAILURE`. The status message includes information about
1799
+ # what the problem might be and steps that you can take to correct the
1800
+ # issue.
1801
+ # @return [String]
1802
+ #
1803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DNSSECStatus AWS API Documentation
1804
+ #
1805
+ class DNSSECStatus < Struct.new(
1806
+ :serve_signature,
1807
+ :status_message)
1808
+ SENSITIVE = []
1809
+ include Aws::Structure
1810
+ end
1811
+
1812
+ # @note When making an API call, you may pass DeactivateKeySigningKeyRequest
1813
+ # data as a hash:
1814
+ #
1815
+ # {
1816
+ # hosted_zone_id: "ResourceId", # required
1817
+ # name: "SigningKeyName", # required
1818
+ # }
1819
+ #
1820
+ # @!attribute [rw] hosted_zone_id
1821
+ # A unique string used to identify a hosted zone.
1822
+ # @return [String]
1823
+ #
1824
+ # @!attribute [rw] name
1825
+ # An alphanumeric string used to identify a key signing key (KSK).
1826
+ # @return [String]
1827
+ #
1828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeactivateKeySigningKeyRequest AWS API Documentation
1829
+ #
1830
+ class DeactivateKeySigningKeyRequest < Struct.new(
1831
+ :hosted_zone_id,
1832
+ :name)
1833
+ SENSITIVE = []
1834
+ include Aws::Structure
1835
+ end
1836
+
1837
+ # @!attribute [rw] change_info
1838
+ # A complex type that describes change information about changes made
1839
+ # to your hosted zone.
1840
+ # @return [Types::ChangeInfo]
1841
+ #
1842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeactivateKeySigningKeyResponse AWS API Documentation
1843
+ #
1844
+ class DeactivateKeySigningKeyResponse < Struct.new(
1845
+ :change_info)
1846
+ SENSITIVE = []
1847
+ include Aws::Structure
1848
+ end
1849
+
1622
1850
  # A complex type that lists the name servers in a delegation set, as
1623
1851
  # well as the `CallerReference` and the `ID` for the delegation set.
1624
1852
  #
@@ -1650,7 +1878,6 @@ module Aws::Route53
1650
1878
  # has already been created.
1651
1879
  #
1652
1880
  # @!attribute [rw] message
1653
- # Descriptive message for the error response.
1654
1881
  # @return [String]
1655
1882
  #
1656
1883
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetAlreadyCreated AWS API Documentation
@@ -1664,7 +1891,6 @@ module Aws::Route53
1664
1891
  # The specified delegation set has already been marked as reusable.
1665
1892
  #
1666
1893
  # @!attribute [rw] message
1667
- # Descriptive message for the error response.
1668
1894
  # @return [String]
1669
1895
  #
1670
1896
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetAlreadyReusable AWS API Documentation
@@ -1679,7 +1905,6 @@ module Aws::Route53
1679
1905
  # be deleted before the reusable delegation set can be deleted.
1680
1906
  #
1681
1907
  # @!attribute [rw] message
1682
- # Descriptive message for the error response.
1683
1908
  # @return [String]
1684
1909
  #
1685
1910
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetInUse AWS API Documentation
@@ -1697,7 +1922,6 @@ module Aws::Route53
1697
1922
  # Route 53 generates this error, contact Customer Support.
1698
1923
  #
1699
1924
  # @!attribute [rw] message
1700
- # Descriptive message for the error response.
1701
1925
  # @return [String]
1702
1926
  #
1703
1927
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetNotAvailable AWS API Documentation
@@ -1711,7 +1935,6 @@ module Aws::Route53
1711
1935
  # A reusable delegation set with the specified ID does not exist.
1712
1936
  #
1713
1937
  # @!attribute [rw] message
1714
- # Descriptive message for the error response.
1715
1938
  # @return [String]
1716
1939
  #
1717
1940
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DelegationSetNotReusable AWS API Documentation
@@ -1786,6 +2009,44 @@ module Aws::Route53
1786
2009
  include Aws::Structure
1787
2010
  end
1788
2011
 
2012
+ # @note When making an API call, you may pass DeleteKeySigningKeyRequest
2013
+ # data as a hash:
2014
+ #
2015
+ # {
2016
+ # hosted_zone_id: "ResourceId", # required
2017
+ # name: "SigningKeyName", # required
2018
+ # }
2019
+ #
2020
+ # @!attribute [rw] hosted_zone_id
2021
+ # A unique string used to identify a hosted zone.
2022
+ # @return [String]
2023
+ #
2024
+ # @!attribute [rw] name
2025
+ # An alphanumeric string used to identify a key signing key (KSK).
2026
+ # @return [String]
2027
+ #
2028
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteKeySigningKeyRequest AWS API Documentation
2029
+ #
2030
+ class DeleteKeySigningKeyRequest < Struct.new(
2031
+ :hosted_zone_id,
2032
+ :name)
2033
+ SENSITIVE = []
2034
+ include Aws::Structure
2035
+ end
2036
+
2037
+ # @!attribute [rw] change_info
2038
+ # A complex type that describes change information about changes made
2039
+ # to your hosted zone.
2040
+ # @return [Types::ChangeInfo]
2041
+ #
2042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteKeySigningKeyResponse AWS API Documentation
2043
+ #
2044
+ class DeleteKeySigningKeyResponse < Struct.new(
2045
+ :change_info)
2046
+ SENSITIVE = []
2047
+ include Aws::Structure
2048
+ end
2049
+
1789
2050
  # @note When making an API call, you may pass DeleteQueryLoggingConfigRequest
1790
2051
  # data as a hash:
1791
2052
  #
@@ -1965,6 +2226,38 @@ module Aws::Route53
1965
2226
  include Aws::Structure
1966
2227
  end
1967
2228
 
2229
+ # @note When making an API call, you may pass DisableHostedZoneDNSSECRequest
2230
+ # data as a hash:
2231
+ #
2232
+ # {
2233
+ # hosted_zone_id: "ResourceId", # required
2234
+ # }
2235
+ #
2236
+ # @!attribute [rw] hosted_zone_id
2237
+ # A unique string used to identify a hosted zone.
2238
+ # @return [String]
2239
+ #
2240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisableHostedZoneDNSSECRequest AWS API Documentation
2241
+ #
2242
+ class DisableHostedZoneDNSSECRequest < Struct.new(
2243
+ :hosted_zone_id)
2244
+ SENSITIVE = []
2245
+ include Aws::Structure
2246
+ end
2247
+
2248
+ # @!attribute [rw] change_info
2249
+ # A complex type that describes change information about changes made
2250
+ # to your hosted zone.
2251
+ # @return [Types::ChangeInfo]
2252
+ #
2253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisableHostedZoneDNSSECResponse AWS API Documentation
2254
+ #
2255
+ class DisableHostedZoneDNSSECResponse < Struct.new(
2256
+ :change_info)
2257
+ SENSITIVE = []
2258
+ include Aws::Structure
2259
+ end
2260
+
1968
2261
  # A complex type that contains information about the VPC that you want
1969
2262
  # to disassociate from a specified private hosted zone.
1970
2263
  #
@@ -2020,6 +2313,38 @@ module Aws::Route53
2020
2313
  include Aws::Structure
2021
2314
  end
2022
2315
 
2316
+ # @note When making an API call, you may pass EnableHostedZoneDNSSECRequest
2317
+ # data as a hash:
2318
+ #
2319
+ # {
2320
+ # hosted_zone_id: "ResourceId", # required
2321
+ # }
2322
+ #
2323
+ # @!attribute [rw] hosted_zone_id
2324
+ # A unique string used to identify a hosted zone.
2325
+ # @return [String]
2326
+ #
2327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/EnableHostedZoneDNSSECRequest AWS API Documentation
2328
+ #
2329
+ class EnableHostedZoneDNSSECRequest < Struct.new(
2330
+ :hosted_zone_id)
2331
+ SENSITIVE = []
2332
+ include Aws::Structure
2333
+ end
2334
+
2335
+ # @!attribute [rw] change_info
2336
+ # A complex type that describes change information about changes made
2337
+ # to your hosted zone.
2338
+ # @return [Types::ChangeInfo]
2339
+ #
2340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/EnableHostedZoneDNSSECResponse AWS API Documentation
2341
+ #
2342
+ class EnableHostedZoneDNSSECResponse < Struct.new(
2343
+ :change_info)
2344
+ SENSITIVE = []
2345
+ include Aws::Structure
2346
+ end
2347
+
2023
2348
  # A complex type that contains information about a geographic location.
2024
2349
  #
2025
2350
  # @note When making an API call, you may pass GeoLocation
@@ -2260,6 +2585,42 @@ module Aws::Route53
2260
2585
  include Aws::Structure
2261
2586
  end
2262
2587
 
2588
+ # @note When making an API call, you may pass GetDNSSECRequest
2589
+ # data as a hash:
2590
+ #
2591
+ # {
2592
+ # hosted_zone_id: "ResourceId", # required
2593
+ # }
2594
+ #
2595
+ # @!attribute [rw] hosted_zone_id
2596
+ # A unique string used to identify a hosted zone.
2597
+ # @return [String]
2598
+ #
2599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetDNSSECRequest AWS API Documentation
2600
+ #
2601
+ class GetDNSSECRequest < Struct.new(
2602
+ :hosted_zone_id)
2603
+ SENSITIVE = []
2604
+ include Aws::Structure
2605
+ end
2606
+
2607
+ # @!attribute [rw] status
2608
+ # A string repesenting the status of DNSSEC.
2609
+ # @return [Types::DNSSECStatus]
2610
+ #
2611
+ # @!attribute [rw] key_signing_keys
2612
+ # The key signing keys (KSKs) in your account.
2613
+ # @return [Array<Types::KeySigningKey>]
2614
+ #
2615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetDNSSECResponse AWS API Documentation
2616
+ #
2617
+ class GetDNSSECResponse < Struct.new(
2618
+ :status,
2619
+ :key_signing_keys)
2620
+ SENSITIVE = []
2621
+ include Aws::Structure
2622
+ end
2623
+
2263
2624
  # A request for information about whether a specified geographic
2264
2625
  # location is supported for Amazon Route 53 geolocation resource record
2265
2626
  # sets.
@@ -2930,7 +3291,6 @@ module Aws::Route53
2930
3291
  # request.
2931
3292
  #
2932
3293
  # @!attribute [rw] message
2933
- # Descriptive message for the error response.
2934
3294
  # @return [String]
2935
3295
  #
2936
3296
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckAlreadyExists AWS API Documentation
@@ -3357,7 +3717,6 @@ module Aws::Route53
3357
3717
  # This error code is not in use.
3358
3718
  #
3359
3719
  # @!attribute [rw] message
3360
- # Descriptive message for the error response.
3361
3720
  # @return [String]
3362
3721
  #
3363
3722
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckInUse AWS API Documentation
@@ -3472,7 +3831,6 @@ module Aws::Route53
3472
3831
  # the specified `CallerReference`.
3473
3832
  #
3474
3833
  # @!attribute [rw] message
3475
- # Descriptive message for the error response.
3476
3834
  # @return [String]
3477
3835
  #
3478
3836
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneAlreadyExists AWS API Documentation
@@ -3543,7 +3901,6 @@ module Aws::Route53
3543
3901
  # records.
3544
3902
  #
3545
3903
  # @!attribute [rw] message
3546
- # Descriptive message for the error response.
3547
3904
  # @return [String]
3548
3905
  #
3549
3906
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneNotEmpty AWS API Documentation
@@ -3557,7 +3914,6 @@ module Aws::Route53
3557
3914
  # The specified HostedZone can't be found.
3558
3915
  #
3559
3916
  # @!attribute [rw] message
3560
- # Descriptive message for the error response.
3561
3917
  # @return [String]
3562
3918
  #
3563
3919
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneNotFound AWS API Documentation
@@ -3572,7 +3928,6 @@ module Aws::Route53
3572
3928
  # hosted zone.
3573
3929
  #
3574
3930
  # @!attribute [rw] message
3575
- # Descriptive message for the error response.
3576
3931
  # @return [String]
3577
3932
  #
3578
3933
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneNotPrivate AWS API Documentation
@@ -3614,6 +3969,20 @@ module Aws::Route53
3614
3969
  include Aws::Structure
3615
3970
  end
3616
3971
 
3972
+ # The hosted zone nameservers don't match the parent nameservers. The
3973
+ # hosted zone and parent must have the same nameservers.
3974
+ #
3975
+ # @!attribute [rw] message
3976
+ # @return [String]
3977
+ #
3978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZonePartiallyDelegated AWS API Documentation
3979
+ #
3980
+ class HostedZonePartiallyDelegated < Struct.new(
3981
+ :message)
3982
+ SENSITIVE = []
3983
+ include Aws::Structure
3984
+ end
3985
+
3617
3986
  # In the response to a `ListHostedZonesByVPC` request, the
3618
3987
  # `HostedZoneSummaries` element contains one `HostedZoneSummary` element
3619
3988
  # for each hosted zone that the specified Amazon VPC is associated with.
@@ -3682,10 +4051,9 @@ module Aws::Route53
3682
4051
  include Aws::Structure
3683
4052
  end
3684
4053
 
3685
- # Parameter name is invalid.
4054
+ # Parameter name is not valid.
3686
4055
  #
3687
4056
  # @!attribute [rw] message
3688
- # Descriptive message for the error response.
3689
4057
  # @return [String]
3690
4058
  #
3691
4059
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidArgument AWS API Documentation
@@ -3701,7 +4069,6 @@ module Aws::Route53
3701
4069
  # change batch.
3702
4070
  #
3703
4071
  # @!attribute [rw] messages
3704
- # Descriptive message for the error response.
3705
4072
  # @return [Array<String>]
3706
4073
  #
3707
4074
  # @!attribute [rw] message
@@ -3719,7 +4086,6 @@ module Aws::Route53
3719
4086
  # The specified domain name is not valid.
3720
4087
  #
3721
4088
  # @!attribute [rw] message
3722
- # Descriptive message for the error response.
3723
4089
  # @return [String]
3724
4090
  #
3725
4091
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidDomainName AWS API Documentation
@@ -3733,7 +4099,6 @@ module Aws::Route53
3733
4099
  # The input is not valid.
3734
4100
  #
3735
4101
  # @!attribute [rw] message
3736
- # Descriptive message for the error response.
3737
4102
  # @return [String]
3738
4103
  #
3739
4104
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidInput AWS API Documentation
@@ -3744,6 +4109,47 @@ module Aws::Route53
3744
4109
  include Aws::Structure
3745
4110
  end
3746
4111
 
4112
+ # The KeyManagementServiceArn that you specified isn't valid to use
4113
+ # with DNSSEC signing.
4114
+ #
4115
+ # @!attribute [rw] message
4116
+ # @return [String]
4117
+ #
4118
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidKMSArn AWS API Documentation
4119
+ #
4120
+ class InvalidKMSArn < Struct.new(
4121
+ :message)
4122
+ SENSITIVE = []
4123
+ include Aws::Structure
4124
+ end
4125
+
4126
+ # The key signing key (KSK) name that you specified isn't a valid name.
4127
+ #
4128
+ # @!attribute [rw] message
4129
+ # @return [String]
4130
+ #
4131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidKeySigningKeyName AWS API Documentation
4132
+ #
4133
+ class InvalidKeySigningKeyName < Struct.new(
4134
+ :message)
4135
+ SENSITIVE = []
4136
+ include Aws::Structure
4137
+ end
4138
+
4139
+ # The key signing key (KSK) status isn't valid or another KSK has the
4140
+ # status `INTERNAL_FAILURE`.
4141
+ #
4142
+ # @!attribute [rw] message
4143
+ # @return [String]
4144
+ #
4145
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidKeySigningKeyStatus AWS API Documentation
4146
+ #
4147
+ class InvalidKeySigningKeyStatus < Struct.new(
4148
+ :message)
4149
+ SENSITIVE = []
4150
+ include Aws::Structure
4151
+ end
4152
+
3747
4153
  # The value that you specified to get the second or subsequent page of
3748
4154
  # results is invalid.
3749
4155
  #
@@ -3758,11 +4164,24 @@ module Aws::Route53
3758
4164
  include Aws::Structure
3759
4165
  end
3760
4166
 
4167
+ # Your hosted zone status isn't valid for this operation. In the hosted
4168
+ # zone, change the status to enable `DNSSEC` or disable `DNSSEC`.
4169
+ #
4170
+ # @!attribute [rw] message
4171
+ # @return [String]
4172
+ #
4173
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidSigningStatus AWS API Documentation
4174
+ #
4175
+ class InvalidSigningStatus < Struct.new(
4176
+ :message)
4177
+ SENSITIVE = []
4178
+ include Aws::Structure
4179
+ end
4180
+
3761
4181
  # The format of the traffic policy document that you specified in the
3762
- # `Document` element is invalid.
4182
+ # `Document` element is not valid.
3763
4183
  #
3764
4184
  # @!attribute [rw] message
3765
- # Descriptive message for the error response.
3766
4185
  # @return [String]
3767
4186
  #
3768
4187
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidTrafficPolicyDocument AWS API Documentation
@@ -3777,7 +4196,6 @@ module Aws::Route53
3777
4196
  # account is not authorized to access this VPC.
3778
4197
  #
3779
4198
  # @!attribute [rw] message
3780
- # Descriptive message for the error response.
3781
4199
  # @return [String]
3782
4200
  #
3783
4201
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/InvalidVPCId AWS API Documentation
@@ -3788,13 +4206,264 @@ module Aws::Route53
3788
4206
  include Aws::Structure
3789
4207
  end
3790
4208
 
4209
+ # A key signing key (KSK) is a complex type that represents a
4210
+ # public/private key pair. The private key is used to generate a digital
4211
+ # signature for the zone signing key (ZSK). The public key is stored in
4212
+ # the DNS and is used to authenticate the ZSK. A KSK is always
4213
+ # associated with a hosted zone; it cannot exist by itself.
4214
+ #
4215
+ # @!attribute [rw] name
4216
+ # An alphanumeric string used to identify a key signing key (KSK).
4217
+ # `Name` must be unique for each key signing key in the same hosted
4218
+ # zone.
4219
+ # @return [String]
4220
+ #
4221
+ # @!attribute [rw] kms_arn
4222
+ # The Amazon resource name (ARN) used to identify the customer managed
4223
+ # key (CMK) in AWS Key Management Service (KMS). The `KmsArn` must be
4224
+ # unique for each key signing key (KSK) in a single hosted zone.
4225
+ #
4226
+ # You must configure the CMK as follows:
4227
+ #
4228
+ # Status
4229
+ #
4230
+ # : Enabled
4231
+ #
4232
+ # Key spec
4233
+ #
4234
+ # : ECC\_NIST\_P256
4235
+ #
4236
+ # Key usage
4237
+ #
4238
+ # : Sign and verify
4239
+ #
4240
+ # Key policy
4241
+ #
4242
+ # : The key policy must give permission for the following actions:
4243
+ #
4244
+ # * DescribeKey
4245
+ #
4246
+ # * GetPublicKey
4247
+ #
4248
+ # * Sign
4249
+ #
4250
+ # The key policy must also include the Amazon Route 53 service in
4251
+ # the principal for your account. Specify the following:
4252
+ #
4253
+ # * `"Service": "api-service.dnssec.route53.aws.internal"`
4254
+ #
4255
+ # ^
4256
+ #
4257
+ # For more information about working with the customer managed key
4258
+ # (CMK) in KMS, see [AWS Key Management Service concepts][1].
4259
+ #
4260
+ #
4261
+ #
4262
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
4263
+ # @return [String]
4264
+ #
4265
+ # @!attribute [rw] flag
4266
+ # An integer that specifies how the key is used. For key signing key
4267
+ # (KSK), this value is always 257.
4268
+ # @return [Integer]
4269
+ #
4270
+ # @!attribute [rw] signing_algorithm_mnemonic
4271
+ # A string used to represent the signing algorithm. This value must
4272
+ # follow the guidelines provided by [RFC-8624 Section 3.1][1].
4273
+ #
4274
+ #
4275
+ #
4276
+ # [1]: https://tools.ietf.org/html/rfc8624#section-3.1
4277
+ # @return [String]
4278
+ #
4279
+ # @!attribute [rw] signing_algorithm_type
4280
+ # An integer used to represent the signing algorithm. This value must
4281
+ # follow the guidelines provided by [RFC-8624 Section 3.1][1].
4282
+ #
4283
+ #
4284
+ #
4285
+ # [1]: https://tools.ietf.org/html/rfc8624#section-3.1
4286
+ # @return [Integer]
4287
+ #
4288
+ # @!attribute [rw] digest_algorithm_mnemonic
4289
+ # A string used to represent the delegation signer digest algorithm.
4290
+ # This value must follow the guidelines provided by [RFC-8624 Section
4291
+ # 3.3][1].
4292
+ #
4293
+ #
4294
+ #
4295
+ # [1]: https://tools.ietf.org/html/rfc8624#section-3.3
4296
+ # @return [String]
4297
+ #
4298
+ # @!attribute [rw] digest_algorithm_type
4299
+ # An integer used to represent the delegation signer digest algorithm.
4300
+ # This value must follow the guidelines provided by [RFC-8624 Section
4301
+ # 3.3][1].
4302
+ #
4303
+ #
4304
+ #
4305
+ # [1]: https://tools.ietf.org/html/rfc8624#section-3.3
4306
+ # @return [Integer]
4307
+ #
4308
+ # @!attribute [rw] key_tag
4309
+ # An integer used to identify the DNSSEC record for the domain name.
4310
+ # The process used to calculate the value is described in [RFC-4034
4311
+ # Appendix B][1].
4312
+ #
4313
+ #
4314
+ #
4315
+ # [1]: https://tools.ietf.org/rfc/rfc4034.txt
4316
+ # @return [Integer]
4317
+ #
4318
+ # @!attribute [rw] digest_value
4319
+ # A cryptographic digest of a DNSKEY resource record (RR). DNSKEY
4320
+ # records are used to publish the public key that resolvers can use to
4321
+ # verify DNSSEC signatures that are used to secure certain kinds of
4322
+ # information provided by the DNS system.
4323
+ # @return [String]
4324
+ #
4325
+ # @!attribute [rw] public_key
4326
+ # The public key, represented as a Base64 encoding, as required by [
4327
+ # RFC-4034 Page 5][1].
4328
+ #
4329
+ #
4330
+ #
4331
+ # [1]: https://tools.ietf.org/rfc/rfc4034.txt
4332
+ # @return [String]
4333
+ #
4334
+ # @!attribute [rw] ds_record
4335
+ # A string that represents a delegation signer (DS) record.
4336
+ # @return [String]
4337
+ #
4338
+ # @!attribute [rw] dnskey_record
4339
+ # A string that represents a DNSKEY record.
4340
+ # @return [String]
4341
+ #
4342
+ # @!attribute [rw] status
4343
+ # A string that represents the current key signing key (KSK) status.
4344
+ #
4345
+ # Status can have one of the following values:
4346
+ #
4347
+ # ACTIVE
4348
+ #
4349
+ # : The KSK is being used for signing.
4350
+ #
4351
+ # INACTIVE
4352
+ #
4353
+ # : The KSK is not being used for signing.
4354
+ #
4355
+ # ACTION\_NEEDED
4356
+ #
4357
+ # : There is an error in the KSK that requires you to take action to
4358
+ # resolve.
4359
+ #
4360
+ # INTERNAL\_FAILURE
4361
+ #
4362
+ # : There was an error during a request. Before you can continue to
4363
+ # work with DNSSEC signing, including actions that involve this KSK,
4364
+ # you must correct the problem. For example, you may need to
4365
+ # activate or deactivate the KSK.
4366
+ # @return [String]
4367
+ #
4368
+ # @!attribute [rw] status_message
4369
+ # The status message provided for the following key signing key (KSK)
4370
+ # statuses: `ACTION_NEEDED` or `INTERNAL_FAILURE`. The status message
4371
+ # includes information about what the problem might be and steps that
4372
+ # you can take to correct the issue.
4373
+ # @return [String]
4374
+ #
4375
+ # @!attribute [rw] created_date
4376
+ # The date when the key signing key (KSK) was created.
4377
+ # @return [Time]
4378
+ #
4379
+ # @!attribute [rw] last_modified_date
4380
+ # The last time that the key signing key (KSK) was changed.
4381
+ # @return [Time]
4382
+ #
4383
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/KeySigningKey AWS API Documentation
4384
+ #
4385
+ class KeySigningKey < Struct.new(
4386
+ :name,
4387
+ :kms_arn,
4388
+ :flag,
4389
+ :signing_algorithm_mnemonic,
4390
+ :signing_algorithm_type,
4391
+ :digest_algorithm_mnemonic,
4392
+ :digest_algorithm_type,
4393
+ :key_tag,
4394
+ :digest_value,
4395
+ :public_key,
4396
+ :ds_record,
4397
+ :dnskey_record,
4398
+ :status,
4399
+ :status_message,
4400
+ :created_date,
4401
+ :last_modified_date)
4402
+ SENSITIVE = []
4403
+ include Aws::Structure
4404
+ end
4405
+
4406
+ # You've already created a key signing key (KSK) with this name or with
4407
+ # the same customer managed key (CMK) ARN.
4408
+ #
4409
+ # @!attribute [rw] message
4410
+ # @return [String]
4411
+ #
4412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/KeySigningKeyAlreadyExists AWS API Documentation
4413
+ #
4414
+ class KeySigningKeyAlreadyExists < Struct.new(
4415
+ :message)
4416
+ SENSITIVE = []
4417
+ include Aws::Structure
4418
+ end
4419
+
4420
+ # The key signing key (KSK) is specified in a parent DS record.
4421
+ #
4422
+ # @!attribute [rw] message
4423
+ # @return [String]
4424
+ #
4425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/KeySigningKeyInParentDSRecord AWS API Documentation
4426
+ #
4427
+ class KeySigningKeyInParentDSRecord < Struct.new(
4428
+ :message)
4429
+ SENSITIVE = []
4430
+ include Aws::Structure
4431
+ end
4432
+
4433
+ # The key signing key (KSK) that you specified can't be deactivated
4434
+ # because it's the only KSK for a currently-enabled DNSSEC. Disable
4435
+ # DNSSEC signing, or add or enable another KSK.
4436
+ #
4437
+ # @!attribute [rw] message
4438
+ # @return [String]
4439
+ #
4440
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/KeySigningKeyInUse AWS API Documentation
4441
+ #
4442
+ class KeySigningKeyInUse < Struct.new(
4443
+ :message)
4444
+ SENSITIVE = []
4445
+ include Aws::Structure
4446
+ end
4447
+
4448
+ # A key signing key (KSK) with `ACTIVE` status wasn't found.
4449
+ #
4450
+ # @!attribute [rw] message
4451
+ # @return [String]
4452
+ #
4453
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/KeySigningKeyWithActiveStatusNotFound AWS API Documentation
4454
+ #
4455
+ class KeySigningKeyWithActiveStatusNotFound < Struct.new(
4456
+ :message)
4457
+ SENSITIVE = []
4458
+ include Aws::Structure
4459
+ end
4460
+
3791
4461
  # The VPC that you're trying to disassociate from the private hosted
3792
4462
  # zone is the last VPC that is associated with the hosted zone. Amazon
3793
4463
  # Route 53 doesn't support disassociating the last VPC from a hosted
3794
4464
  # zone.
3795
4465
  #
3796
4466
  # @!attribute [rw] message
3797
- # Descriptive message for the error response.
3798
4467
  # @return [String]
3799
4468
  #
3800
4469
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/LastVPCAssociation AWS API Documentation
@@ -3822,7 +4491,6 @@ module Aws::Route53
3822
4491
  # [3]: http://aws.amazon.com/route53-request
3823
4492
  #
3824
4493
  # @!attribute [rw] message
3825
- # Descriptive message for the error response.
3826
4494
  # @return [String]
3827
4495
  #
3828
4496
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/LimitsExceeded AWS API Documentation
@@ -4456,7 +5124,7 @@ module Aws::Route53
4456
5124
  # {
4457
5125
  # hosted_zone_id: "ResourceId", # required
4458
5126
  # start_record_name: "DNSName",
4459
- # start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
5127
+ # start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4460
5128
  # start_record_identifier: "ResourceRecordSetIdentifier",
4461
5129
  # max_items: 1,
4462
5130
  # }
@@ -4861,7 +5529,7 @@ module Aws::Route53
4861
5529
  # {
4862
5530
  # hosted_zone_id: "ResourceId", # required
4863
5531
  # traffic_policy_instance_name_marker: "DNSName",
4864
- # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
5532
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4865
5533
  # max_items: 1,
4866
5534
  # }
4867
5535
  #
@@ -4977,7 +5645,7 @@ module Aws::Route53
4977
5645
  # traffic_policy_version: 1, # required
4978
5646
  # hosted_zone_id_marker: "ResourceId",
4979
5647
  # traffic_policy_instance_name_marker: "DNSName",
4980
- # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
5648
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4981
5649
  # max_items: 1,
4982
5650
  # }
4983
5651
  #
@@ -5125,7 +5793,7 @@ module Aws::Route53
5125
5793
  # {
5126
5794
  # hosted_zone_id_marker: "ResourceId",
5127
5795
  # traffic_policy_instance_name_marker: "DNSName",
5128
- # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
5796
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
5129
5797
  # max_items: 1,
5130
5798
  # }
5131
5799
  #
@@ -5437,7 +6105,6 @@ module Aws::Route53
5437
6105
  # A reusable delegation set with the specified ID does not exist.
5438
6106
  #
5439
6107
  # @!attribute [rw] message
5440
- # Descriptive message for the error response.
5441
6108
  # @return [String]
5442
6109
  #
5443
6110
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchDelegationSet AWS API Documentation
@@ -5457,7 +6124,6 @@ module Aws::Route53
5457
6124
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html
5458
6125
  #
5459
6126
  # @!attribute [rw] message
5460
- # Descriptive message for the error response.
5461
6127
  # @return [String]
5462
6128
  #
5463
6129
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchGeoLocation AWS API Documentation
@@ -5471,7 +6137,6 @@ module Aws::Route53
5471
6137
  # No health check exists with the specified ID.
5472
6138
  #
5473
6139
  # @!attribute [rw] message
5474
- # Descriptive message for the error response.
5475
6140
  # @return [String]
5476
6141
  #
5477
6142
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchHealthCheck AWS API Documentation
@@ -5485,7 +6150,6 @@ module Aws::Route53
5485
6150
  # No hosted zone exists with the ID that you specified.
5486
6151
  #
5487
6152
  # @!attribute [rw] message
5488
- # Descriptive message for the error response.
5489
6153
  # @return [String]
5490
6154
  #
5491
6155
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchHostedZone AWS API Documentation
@@ -5496,6 +6160,19 @@ module Aws::Route53
5496
6160
  include Aws::Structure
5497
6161
  end
5498
6162
 
6163
+ # The specified key signing key (KSK) doesn't exist.
6164
+ #
6165
+ # @!attribute [rw] message
6166
+ # @return [String]
6167
+ #
6168
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchKeySigningKey AWS API Documentation
6169
+ #
6170
+ class NoSuchKeySigningKey < Struct.new(
6171
+ :message)
6172
+ SENSITIVE = []
6173
+ include Aws::Structure
6174
+ end
6175
+
5499
6176
  # There is no DNS query logging configuration with the specified ID.
5500
6177
  #
5501
6178
  # @!attribute [rw] message
@@ -5512,7 +6189,6 @@ module Aws::Route53
5512
6189
  # No traffic policy exists with the specified ID.
5513
6190
  #
5514
6191
  # @!attribute [rw] message
5515
- # Descriptive message for the error response.
5516
6192
  # @return [String]
5517
6193
  #
5518
6194
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchTrafficPolicy AWS API Documentation
@@ -5526,7 +6202,6 @@ module Aws::Route53
5526
6202
  # No traffic policy instance exists with the specified ID.
5527
6203
  #
5528
6204
  # @!attribute [rw] message
5529
- # Descriptive message for the error response.
5530
6205
  # @return [String]
5531
6206
  #
5532
6207
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NoSuchTrafficPolicyInstance AWS API Documentation
@@ -5541,7 +6216,6 @@ module Aws::Route53
5541
6216
  # been authorized.
5542
6217
  #
5543
6218
  # @!attribute [rw] message
5544
- # Descriptive message for the error response.
5545
6219
  # @return [String]
5546
6220
  #
5547
6221
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/NotAuthorizedException AWS API Documentation
@@ -5574,7 +6248,6 @@ module Aws::Route53
5574
6248
  # Route 53 doesn't support associating a VPC with a public hosted zone.
5575
6249
  #
5576
6250
  # @!attribute [rw] message
5577
- # Descriptive message for the error response.
5578
6251
  # @return [String]
5579
6252
  #
5580
6253
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/PublicZoneVPCAssociation AWS API Documentation
@@ -5674,7 +6347,7 @@ module Aws::Route53
5674
6347
  #
5675
6348
  # {
5676
6349
  # name: "DNSName", # required
5677
- # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
6350
+ # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
5678
6351
  # set_identifier: "ResourceRecordSetIdentifier",
5679
6352
  # weight: 1,
5680
6353
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
@@ -6404,7 +7077,7 @@ module Aws::Route53
6404
7077
  # {
6405
7078
  # hosted_zone_id: "ResourceId", # required
6406
7079
  # record_name: "DNSName", # required
6407
- # record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
7080
+ # record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
6408
7081
  # resolver_ip: "IPAddress",
6409
7082
  # edns0_client_subnet_ip: "IPAddress",
6410
7083
  # edns0_client_subnet_mask: "SubnetMask",
@@ -6589,7 +7262,6 @@ module Aws::Route53
6589
7262
  # [4]: http://aws.amazon.com/route53-request
6590
7263
  #
6591
7264
  # @!attribute [rw] message
6592
- # Descriptive message for the error response.
6593
7265
  # @return [String]
6594
7266
  #
6595
7267
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyHostedZones AWS API Documentation
@@ -6600,6 +7272,20 @@ module Aws::Route53
6600
7272
  include Aws::Structure
6601
7273
  end
6602
7274
 
7275
+ # You've reached the limit for the number of key signing keys (KSKs).
7276
+ # Remove at least one KSK, and then try again.
7277
+ #
7278
+ # @!attribute [rw] message
7279
+ # @return [String]
7280
+ #
7281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyKeySigningKeys AWS API Documentation
7282
+ #
7283
+ class TooManyKeySigningKeys < Struct.new(
7284
+ :message)
7285
+ SENSITIVE = []
7286
+ include Aws::Structure
7287
+ end
7288
+
6603
7289
  # This traffic policy can't be created because the current account has
6604
7290
  # reached the limit on the number of traffic policies.
6605
7291
  #
@@ -6618,7 +7304,6 @@ module Aws::Route53
6618
7304
  # [3]: http://aws.amazon.com/route53-request
6619
7305
  #
6620
7306
  # @!attribute [rw] message
6621
- # Descriptive message for the error response.
6622
7307
  # @return [String]
6623
7308
  #
6624
7309
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyTrafficPolicies AWS API Documentation
@@ -6649,7 +7334,6 @@ module Aws::Route53
6649
7334
  # [3]: http://aws.amazon.com/route53-request
6650
7335
  #
6651
7336
  # @!attribute [rw] message
6652
- # Descriptive message for the error response.
6653
7337
  # @return [String]
6654
7338
  #
6655
7339
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyTrafficPolicyInstances AWS API Documentation
@@ -6676,7 +7360,6 @@ module Aws::Route53
6676
7360
  # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html
6677
7361
  #
6678
7362
  # @!attribute [rw] message
6679
- # Descriptive message for the error response.
6680
7363
  # @return [String]
6681
7364
  #
6682
7365
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyTrafficPolicyVersionsForCurrentPolicy AWS API Documentation
@@ -6695,7 +7378,6 @@ module Aws::Route53
6695
7378
  # `ListVPCAssociationAuthorizations` request.
6696
7379
  #
6697
7380
  # @!attribute [rw] message
6698
- # Descriptive message for the error response.
6699
7381
  # @return [String]
6700
7382
  #
6701
7383
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TooManyVPCAssociationAuthorizations AWS API Documentation
@@ -6760,7 +7442,6 @@ module Aws::Route53
6760
7442
  # A traffic policy that has the same value for `Name` already exists.
6761
7443
  #
6762
7444
  # @!attribute [rw] message
6763
- # Descriptive message for the error response.
6764
7445
  # @return [String]
6765
7446
  #
6766
7447
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyAlreadyExists AWS API Documentation
@@ -6775,7 +7456,6 @@ module Aws::Route53
6775
7456
  # specified traffic policy.
6776
7457
  #
6777
7458
  # @!attribute [rw] message
6778
- # Descriptive message for the error response.
6779
7459
  # @return [String]
6780
7460
  #
6781
7461
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyInUse AWS API Documentation
@@ -6870,7 +7550,6 @@ module Aws::Route53
6870
7550
  # There is already a traffic policy instance with the specified ID.
6871
7551
  #
6872
7552
  # @!attribute [rw] message
6873
- # Descriptive message for the error response.
6874
7553
  # @return [String]
6875
7554
  #
6876
7555
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicyInstanceAlreadyExists AWS API Documentation
@@ -7524,7 +8203,6 @@ module Aws::Route53
7524
8203
  # hosted zone.
7525
8204
  #
7526
8205
  # @!attribute [rw] message
7527
- # Descriptive message for the error response.
7528
8206
  # @return [String]
7529
8207
  #
7530
8208
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/VPCAssociationAuthorizationNotFound AWS API Documentation
@@ -7538,7 +8216,7 @@ module Aws::Route53
7538
8216
  # The specified VPC and hosted zone are not currently associated.
7539
8217
  #
7540
8218
  # @!attribute [rw] message
7541
- # Descriptive message for the error response.
8219
+ # The specified VPC or hosted zone weren't found.
7542
8220
  # @return [String]
7543
8221
  #
7544
8222
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/VPCAssociationNotFound AWS API Documentation