aws-sdk-route53 1.45.0 → 1.46.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 +4 -4
- data/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +39 -29
- data/lib/aws-sdk-route53/types.rb +115 -79
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c6e06fa68478a52afab8cd940d5baa89402716526427ebea6b09472855c12f0
|
4
|
+
data.tar.gz: 4dd378c285f72d2f3a29fad474ff6f8192d995b761b4bd3694e36fbbbfb16d15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0349935e6a1894f107def137ce8a19cbaa880e06ed56435c93cde319c092caf25729f09d4aac271590f43e2b68d908999b9accd2b840a9514835eb0fe9ad0454'
|
7
|
+
data.tar.gz: bf3596ce678b22fea2e6ccceed07e3fcc2d9b83614f3755fae8ea9a18471c65336fb581aca6deee1b6627d4080db87492e201608c7713e2de3121a75dc40115e
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -329,14 +329,16 @@ module Aws::Route53
|
|
329
329
|
|
330
330
|
# @!group API Operations
|
331
331
|
|
332
|
-
# Activates a key
|
332
|
+
# Activates a key-signing key (KSK) so that it can be used for signing
|
333
333
|
# by DNSSEC. This operation changes the KSK status to `ACTIVE`.
|
334
334
|
#
|
335
335
|
# @option params [required, String] :hosted_zone_id
|
336
336
|
# A unique string used to identify a hosted zone.
|
337
337
|
#
|
338
338
|
# @option params [required, String] :name
|
339
|
-
#
|
339
|
+
# A string used to identify a key-signing key (KSK). `Name` can include
|
340
|
+
# numbers, letters, and underscores (\_). `Name` must be unique for each
|
341
|
+
# key-signing key in the same hosted zone.
|
340
342
|
#
|
341
343
|
# @return [Types::ActivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
342
344
|
#
|
@@ -1589,7 +1591,7 @@ module Aws::Route53
|
|
1589
1591
|
req.send_request(options)
|
1590
1592
|
end
|
1591
1593
|
|
1592
|
-
# Creates a new key
|
1594
|
+
# Creates a new key-signing key (KSK) associated with a hosted zone. You
|
1593
1595
|
# can only have two KSKs per hosted zone.
|
1594
1596
|
#
|
1595
1597
|
# @option params [required, String] :caller_reference
|
@@ -1599,13 +1601,14 @@ module Aws::Route53
|
|
1599
1601
|
# The unique string (ID) used to identify a hosted zone.
|
1600
1602
|
#
|
1601
1603
|
# @option params [required, String] :key_management_service_arn
|
1602
|
-
# The Amazon resource name (ARN) for a customer managed
|
1603
|
-
# Key Management Service (KMS). The
|
1604
|
-
# unique for each key
|
1605
|
-
#
|
1606
|
-
#
|
1604
|
+
# The Amazon resource name (ARN) for a customer managed customer master
|
1605
|
+
# key (CMK) in AWS Key Management Service (AWS KMS). The
|
1606
|
+
# `KeyManagementServiceArn` must be unique for each key-signing key
|
1607
|
+
# (KSK) in a single hosted zone. To see an example of
|
1608
|
+
# `KeyManagementServiceArn` that grants the correct permissions for
|
1609
|
+
# DNSSEC, scroll down to **Example**.
|
1607
1610
|
#
|
1608
|
-
# You must configure the CMK as follows:
|
1611
|
+
# You must configure the customer managed CMK as follows:
|
1609
1612
|
#
|
1610
1613
|
# Status
|
1611
1614
|
#
|
@@ -1636,20 +1639,20 @@ module Aws::Route53
|
|
1636
1639
|
#
|
1637
1640
|
# ^
|
1638
1641
|
#
|
1639
|
-
# For more information about working with CMK in
|
1640
|
-
# Management Service concepts][1].
|
1642
|
+
# For more information about working with a customer managed CMK in AWS
|
1643
|
+
# KMS, see [AWS Key Management Service concepts][1].
|
1641
1644
|
#
|
1642
1645
|
#
|
1643
1646
|
#
|
1644
1647
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
|
1645
1648
|
#
|
1646
1649
|
# @option params [required, String] :name
|
1647
|
-
#
|
1648
|
-
# `Name` must be unique for each
|
1649
|
-
# zone.
|
1650
|
+
# A string used to identify a key-signing key (KSK). `Name` can include
|
1651
|
+
# numbers, letters, and underscores (\_). `Name` must be unique for each
|
1652
|
+
# key-signing key in the same hosted zone.
|
1650
1653
|
#
|
1651
1654
|
# @option params [required, String] :status
|
1652
|
-
# A string specifying the initial status of the key
|
1655
|
+
# A string specifying the initial status of the key-signing key (KSK).
|
1653
1656
|
# You can set the value to `ACTIVE` or `INACTIVE`.
|
1654
1657
|
#
|
1655
1658
|
# @return [Types::CreateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2203,7 +2206,7 @@ module Aws::Route53
|
|
2203
2206
|
req.send_request(options)
|
2204
2207
|
end
|
2205
2208
|
|
2206
|
-
# Deactivates a key
|
2209
|
+
# Deactivates a key-signing key (KSK) so that it will not be used for
|
2207
2210
|
# signing by DNSSEC. This operation changes the KSK status to
|
2208
2211
|
# `INACTIVE`.
|
2209
2212
|
#
|
@@ -2211,7 +2214,7 @@ module Aws::Route53
|
|
2211
2214
|
# A unique string used to identify a hosted zone.
|
2212
2215
|
#
|
2213
2216
|
# @option params [required, String] :name
|
2214
|
-
#
|
2217
|
+
# A string used to identify a key-signing key (KSK).
|
2215
2218
|
#
|
2216
2219
|
# @return [Types::DeactivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2217
2220
|
#
|
@@ -2367,7 +2370,7 @@ module Aws::Route53
|
|
2367
2370
|
req.send_request(options)
|
2368
2371
|
end
|
2369
2372
|
|
2370
|
-
# Deletes a key
|
2373
|
+
# Deletes a key-signing key (KSK). Before you can delete a KSK, you must
|
2371
2374
|
# deactivate it. The KSK must be deactived before you can delete it
|
2372
2375
|
# regardless of whether the hosted zone is enabled for DNSSEC signing.
|
2373
2376
|
#
|
@@ -2375,7 +2378,7 @@ module Aws::Route53
|
|
2375
2378
|
# A unique string used to identify a hosted zone.
|
2376
2379
|
#
|
2377
2380
|
# @option params [required, String] :name
|
2378
|
-
#
|
2381
|
+
# A string used to identify a key-signing key (KSK).
|
2379
2382
|
#
|
2380
2383
|
# @return [Types::DeleteKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2381
2384
|
#
|
@@ -2590,7 +2593,7 @@ module Aws::Route53
|
|
2590
2593
|
end
|
2591
2594
|
|
2592
2595
|
# Disables DNSSEC signing in a specific hosted zone. This action does
|
2593
|
-
# not deactivate any key
|
2596
|
+
# not deactivate any key-signing keys (KSKs) that are active in the
|
2594
2597
|
# hosted zone.
|
2595
2598
|
#
|
2596
2599
|
# @option params [required, String] :hosted_zone_id
|
@@ -2835,6 +2838,9 @@ module Aws::Route53
|
|
2835
2838
|
req.send_request(options)
|
2836
2839
|
end
|
2837
2840
|
|
2841
|
+
# Route 53 does not perform authorization for this API because it
|
2842
|
+
# retrieves information that is already available to the public.
|
2843
|
+
#
|
2838
2844
|
# `GetCheckerIpRanges` still works, but we recommend that you download
|
2839
2845
|
# ip-ranges.json, which includes IP address ranges for all AWS services.
|
2840
2846
|
# For more information, see [IP Address Ranges of Amazon Route 53
|
@@ -2863,8 +2869,7 @@ module Aws::Route53
|
|
2863
2869
|
end
|
2864
2870
|
|
2865
2871
|
# Returns information about DNSSEC for a specific hosted zone, including
|
2866
|
-
# the key
|
2867
|
-
# zone.
|
2872
|
+
# the key-signing keys (KSKs) in the hosted zone.
|
2868
2873
|
#
|
2869
2874
|
# @option params [required, String] :hosted_zone_id
|
2870
2875
|
# A unique string used to identify a hosted zone.
|
@@ -2914,6 +2919,9 @@ module Aws::Route53
|
|
2914
2919
|
# Gets information about whether a specified geographic location is
|
2915
2920
|
# supported for Amazon Route 53 geolocation resource record sets.
|
2916
2921
|
#
|
2922
|
+
# Route 53 does not perform authorization for this API because it
|
2923
|
+
# retrieves information that is already available to the public.
|
2924
|
+
#
|
2917
2925
|
# Use the following syntax to determine whether a continent is supported
|
2918
2926
|
# for geolocation:
|
2919
2927
|
#
|
@@ -2959,17 +2967,16 @@ module Aws::Route53
|
|
2959
2967
|
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
2960
2968
|
#
|
2961
2969
|
# @option params [String] :subdivision_code
|
2962
|
-
#
|
2963
|
-
# United States. For a list of state abbreviations, see [Appendix B:
|
2970
|
+
# The code for the subdivision, such as a particular state within the
|
2971
|
+
# United States. For a list of US state abbreviations, see [Appendix B:
|
2964
2972
|
# Two–Letter State and Possession Abbreviations][1] on the United States
|
2965
|
-
# Postal Service website.
|
2966
|
-
#
|
2967
|
-
# If you specify `subdivisioncode`, you must also specify `US` for
|
2968
|
-
# `CountryCode`.
|
2973
|
+
# Postal Service website. For a list of all supported subdivision codes,
|
2974
|
+
# use the [ListGeoLocations][2] API.
|
2969
2975
|
#
|
2970
2976
|
#
|
2971
2977
|
#
|
2972
2978
|
# [1]: https://pe.usps.com/text/pub28/28apb.htm
|
2979
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListGeoLocations.html
|
2973
2980
|
#
|
2974
2981
|
# @return [Types::GetGeoLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2975
2982
|
#
|
@@ -3555,6 +3562,9 @@ module Aws::Route53
|
|
3555
3562
|
# provinces), the subdivisions for that country are listed in
|
3556
3563
|
# alphabetical order immediately after the corresponding country.
|
3557
3564
|
#
|
3565
|
+
# Route 53 does not perform authorization for this API because it
|
3566
|
+
# retrieves information that is already available to the public.
|
3567
|
+
#
|
3558
3568
|
# For a list of supported geolocation codes, see the [GeoLocation][1]
|
3559
3569
|
# data type.
|
3560
3570
|
#
|
@@ -5599,7 +5609,7 @@ module Aws::Route53
|
|
5599
5609
|
params: params,
|
5600
5610
|
config: config)
|
5601
5611
|
context[:gem_name] = 'aws-sdk-route53'
|
5602
|
-
context[:gem_version] = '1.
|
5612
|
+
context[:gem_version] = '1.46.0'
|
5603
5613
|
Seahorse::Client::Request.new(handlers, context)
|
5604
5614
|
end
|
5605
5615
|
|
@@ -65,7 +65,9 @@ module Aws::Route53
|
|
65
65
|
# @return [String]
|
66
66
|
#
|
67
67
|
# @!attribute [rw] name
|
68
|
-
#
|
68
|
+
# A string used to identify a key-signing key (KSK). `Name` can
|
69
|
+
# include numbers, letters, and underscores (\_). `Name` must be
|
70
|
+
# unique for each key-signing key in the same hosted zone.
|
69
71
|
# @return [String]
|
70
72
|
#
|
71
73
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ActivateKeySigningKeyRequest AWS API Documentation
|
@@ -107,13 +109,13 @@ module Aws::Route53
|
|
107
109
|
# use to determine whether this health check is healthy, the region
|
108
110
|
# that the alarm was created in.
|
109
111
|
#
|
110
|
-
# For the current list of CloudWatch regions, see [Amazon
|
111
|
-
#
|
112
|
-
#
|
112
|
+
# For the current list of CloudWatch regions, see [Amazon CloudWatch
|
113
|
+
# endpoints and quotas][1] in the *Amazon Web Services General
|
114
|
+
# Reference*.
|
113
115
|
#
|
114
116
|
#
|
115
117
|
#
|
116
|
-
# [1]: https://docs.aws.amazon.com/general/latest/gr/
|
118
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/cw_region.html
|
117
119
|
# @return [String]
|
118
120
|
#
|
119
121
|
# @!attribute [rw] name
|
@@ -207,21 +209,19 @@ module Aws::Route53
|
|
207
209
|
# : Specify the hosted zone ID for the region that you created the
|
208
210
|
# environment in. The environment must have a regionalized
|
209
211
|
# subdomain. For a list of regions and the corresponding hosted zone
|
210
|
-
# IDs, see [AWS Elastic Beanstalk][3] in the
|
211
|
-
#
|
212
|
-
# Reference*.
|
212
|
+
# IDs, see [AWS Elastic Beanstalk endpoints and quotas][3] in the
|
213
|
+
# the *Amazon Web Services General Reference*.
|
213
214
|
#
|
214
215
|
# ELB load balancer
|
215
216
|
#
|
216
217
|
# : Specify the value of the hosted zone ID for the load balancer. Use
|
217
218
|
# the following methods to get the hosted zone ID:
|
218
219
|
#
|
219
|
-
# * [
|
220
|
-
#
|
221
|
-
#
|
222
|
-
#
|
223
|
-
#
|
224
|
-
# Network Load Balancers.
|
220
|
+
# * [Elastic Load Balancing endpoints and quotas][4] topic in the
|
221
|
+
# *Amazon Web Services General Reference*\: Use the value that
|
222
|
+
# corresponds with the region that you created your load balancer
|
223
|
+
# in. Note that there are separate columns for Application and
|
224
|
+
# Classic Load Balancers and for Network Load Balancers.
|
225
225
|
#
|
226
226
|
# * **AWS Management Console**\: Go to the Amazon EC2 page, choose
|
227
227
|
# **Load Balancers** in the navigation pane, select the load
|
@@ -271,7 +271,7 @@ module Aws::Route53
|
|
271
271
|
#
|
272
272
|
# [1]: https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html
|
273
273
|
# [2]: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html
|
274
|
-
# [3]: https://docs.aws.amazon.com/general/latest/gr/
|
274
|
+
# [3]: https://docs.aws.amazon.com/general/latest/gr/elasticbeanstalk.html
|
275
275
|
# [4]: https://docs.aws.amazon.com/general/latest/gr/elb.html
|
276
276
|
# [5]: https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
|
277
277
|
# [6]: https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
|
@@ -1312,13 +1312,14 @@ module Aws::Route53
|
|
1312
1312
|
# @return [String]
|
1313
1313
|
#
|
1314
1314
|
# @!attribute [rw] key_management_service_arn
|
1315
|
-
# The Amazon resource name (ARN) for a customer managed
|
1316
|
-
# AWS Key Management Service (KMS). The
|
1317
|
-
# be unique for each key
|
1318
|
-
#
|
1319
|
-
#
|
1315
|
+
# The Amazon resource name (ARN) for a customer managed customer
|
1316
|
+
# master key (CMK) in AWS Key Management Service (AWS KMS). The
|
1317
|
+
# `KeyManagementServiceArn` must be unique for each key-signing key
|
1318
|
+
# (KSK) in a single hosted zone. To see an example of
|
1319
|
+
# `KeyManagementServiceArn` that grants the correct permissions for
|
1320
|
+
# DNSSEC, scroll down to **Example**.
|
1320
1321
|
#
|
1321
|
-
# You must configure the CMK as follows:
|
1322
|
+
# You must configure the customer managed CMK as follows:
|
1322
1323
|
#
|
1323
1324
|
# Status
|
1324
1325
|
#
|
@@ -1349,8 +1350,8 @@ module Aws::Route53
|
|
1349
1350
|
#
|
1350
1351
|
# ^
|
1351
1352
|
#
|
1352
|
-
# For more information about working with
|
1353
|
-
# Management Service concepts][1].
|
1353
|
+
# For more information about working with a customer managed CMK in
|
1354
|
+
# AWS KMS, see [AWS Key Management Service concepts][1].
|
1354
1355
|
#
|
1355
1356
|
#
|
1356
1357
|
#
|
@@ -1358,13 +1359,13 @@ module Aws::Route53
|
|
1358
1359
|
# @return [String]
|
1359
1360
|
#
|
1360
1361
|
# @!attribute [rw] name
|
1361
|
-
#
|
1362
|
-
#
|
1363
|
-
# zone.
|
1362
|
+
# A string used to identify a key-signing key (KSK). `Name` can
|
1363
|
+
# include numbers, letters, and underscores (\_). `Name` must be
|
1364
|
+
# unique for each key-signing key in the same hosted zone.
|
1364
1365
|
# @return [String]
|
1365
1366
|
#
|
1366
1367
|
# @!attribute [rw] status
|
1367
|
-
# A string specifying the initial status of the key
|
1368
|
+
# A string specifying the initial status of the key-signing key (KSK).
|
1368
1369
|
# You can set the value to `ACTIVE` or `INACTIVE`.
|
1369
1370
|
# @return [String]
|
1370
1371
|
#
|
@@ -1386,11 +1387,11 @@ module Aws::Route53
|
|
1386
1387
|
# @return [Types::ChangeInfo]
|
1387
1388
|
#
|
1388
1389
|
# @!attribute [rw] key_signing_key
|
1389
|
-
# The key
|
1390
|
+
# The key-signing key (KSK) that the request creates.
|
1390
1391
|
# @return [Types::KeySigningKey]
|
1391
1392
|
#
|
1392
1393
|
# @!attribute [rw] location
|
1393
|
-
# The unique URL representing the new key
|
1394
|
+
# The unique URL representing the new key-signing key (KSK).
|
1394
1395
|
# @return [String]
|
1395
1396
|
#
|
1396
1397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateKeySigningKeyResponse AWS API Documentation
|
@@ -1782,15 +1783,36 @@ module Aws::Route53
|
|
1782
1783
|
# A string repesenting the status of DNSSEC signing.
|
1783
1784
|
#
|
1784
1785
|
# @!attribute [rw] serve_signature
|
1785
|
-
#
|
1786
|
-
#
|
1787
|
-
#
|
1788
|
-
#
|
1786
|
+
# A string that represents the current hosted zone signing status.
|
1787
|
+
#
|
1788
|
+
# Status can have one of the following values:
|
1789
|
+
#
|
1790
|
+
# SIGNING
|
1791
|
+
#
|
1792
|
+
# : DNSSEC signing is enabled for the hosted zone.
|
1793
|
+
#
|
1794
|
+
# NOT\_SIGNING
|
1795
|
+
#
|
1796
|
+
# : DNSSEC signing is not enabled for the hosted zone.
|
1797
|
+
#
|
1798
|
+
# DELETING
|
1789
1799
|
#
|
1790
|
-
#
|
1791
|
-
#
|
1792
|
-
#
|
1793
|
-
#
|
1800
|
+
# : DNSSEC signing is in the process of being removed for the hosted
|
1801
|
+
# zone.
|
1802
|
+
#
|
1803
|
+
# ACTION\_NEEDED
|
1804
|
+
#
|
1805
|
+
# : There is a problem with signing in the hosted zone that requires
|
1806
|
+
# you to take action to resolve. For example, the customer managed
|
1807
|
+
# customer master key (CMK) might have been deleted, or the
|
1808
|
+
# permissions for the customer managed CMK might have been changed.
|
1809
|
+
#
|
1810
|
+
# INTERNAL\_FAILURE
|
1811
|
+
#
|
1812
|
+
# : There was an error during a request. Before you can continue to
|
1813
|
+
# work with DNSSEC signing, including with key-signing keys (KSKs),
|
1814
|
+
# you must correct the problem by enabling or disabling DNSSEC
|
1815
|
+
# signing for the hosted zone.
|
1794
1816
|
# @return [String]
|
1795
1817
|
#
|
1796
1818
|
# @!attribute [rw] status_message
|
@@ -1822,7 +1844,7 @@ module Aws::Route53
|
|
1822
1844
|
# @return [String]
|
1823
1845
|
#
|
1824
1846
|
# @!attribute [rw] name
|
1825
|
-
#
|
1847
|
+
# A string used to identify a key-signing key (KSK).
|
1826
1848
|
# @return [String]
|
1827
1849
|
#
|
1828
1850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeactivateKeySigningKeyRequest AWS API Documentation
|
@@ -2022,7 +2044,7 @@ module Aws::Route53
|
|
2022
2044
|
# @return [String]
|
2023
2045
|
#
|
2024
2046
|
# @!attribute [rw] name
|
2025
|
-
#
|
2047
|
+
# A string used to identify a key-signing key (KSK).
|
2026
2048
|
# @return [String]
|
2027
2049
|
#
|
2028
2050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteKeySigningKeyRequest AWS API Documentation
|
@@ -2436,8 +2458,16 @@ module Aws::Route53
|
|
2436
2458
|
# @return [String]
|
2437
2459
|
#
|
2438
2460
|
# @!attribute [rw] subdivision_code
|
2439
|
-
# The code for the subdivision
|
2440
|
-
#
|
2461
|
+
# The code for the subdivision, such as a particular state within the
|
2462
|
+
# United States. For a list of US state abbreviations, see [Appendix
|
2463
|
+
# B: Two–Letter State and Possession Abbreviations][1] on the United
|
2464
|
+
# States Postal Service website. For a list of all supported
|
2465
|
+
# subdivision codes, use the [ListGeoLocations][2] API.
|
2466
|
+
#
|
2467
|
+
#
|
2468
|
+
#
|
2469
|
+
# [1]: https://pe.usps.com/text/pub28/28apb.htm
|
2470
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListGeoLocations.html
|
2441
2471
|
# @return [String]
|
2442
2472
|
#
|
2443
2473
|
# @!attribute [rw] subdivision_name
|
@@ -2609,7 +2639,7 @@ module Aws::Route53
|
|
2609
2639
|
# @return [Types::DNSSECStatus]
|
2610
2640
|
#
|
2611
2641
|
# @!attribute [rw] key_signing_keys
|
2612
|
-
# The key
|
2642
|
+
# The key-signing keys (KSKs) in your account.
|
2613
2643
|
# @return [Array<Types::KeySigningKey>]
|
2614
2644
|
#
|
2615
2645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetDNSSECResponse AWS API Documentation
|
@@ -2664,17 +2694,16 @@ module Aws::Route53
|
|
2664
2694
|
# @return [String]
|
2665
2695
|
#
|
2666
2696
|
# @!attribute [rw] subdivision_code
|
2667
|
-
#
|
2668
|
-
# United States. For a list of state abbreviations, see [Appendix
|
2669
|
-
# Two–Letter State and Possession Abbreviations][1] on the United
|
2670
|
-
# States Postal Service website.
|
2671
|
-
#
|
2672
|
-
# If you specify `subdivisioncode`, you must also specify `US` for
|
2673
|
-
# `CountryCode`.
|
2697
|
+
# The code for the subdivision, such as a particular state within the
|
2698
|
+
# United States. For a list of US state abbreviations, see [Appendix
|
2699
|
+
# B: Two–Letter State and Possession Abbreviations][1] on the United
|
2700
|
+
# States Postal Service website. For a list of all supported
|
2701
|
+
# subdivision codes, use the [ListGeoLocations][2] API.
|
2674
2702
|
#
|
2675
2703
|
#
|
2676
2704
|
#
|
2677
2705
|
# [1]: https://pe.usps.com/text/pub28/28apb.htm
|
2706
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListGeoLocations.html
|
2678
2707
|
# @return [String]
|
2679
2708
|
#
|
2680
2709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetGeoLocationRequest AWS API Documentation
|
@@ -3232,10 +3261,10 @@ module Aws::Route53
|
|
3232
3261
|
# is associated with the current AWS account.
|
3233
3262
|
#
|
3234
3263
|
# @!attribute [rw] id
|
3235
|
-
# The identifier that Amazon Route
|
3236
|
-
# you created it. When you add or update a resource record set,
|
3237
|
-
# use this value to specify which health check to use. The value
|
3238
|
-
# be up to 64 characters long.
|
3264
|
+
# The identifier that Amazon Route 53 assigned to the health check
|
3265
|
+
# when you created it. When you add or update a resource record set,
|
3266
|
+
# you use this value to specify which health check to use. The value
|
3267
|
+
# can be up to 64 characters long.
|
3239
3268
|
# @return [String]
|
3240
3269
|
#
|
3241
3270
|
# @!attribute [rw] caller_reference
|
@@ -4123,7 +4152,7 @@ module Aws::Route53
|
|
4123
4152
|
include Aws::Structure
|
4124
4153
|
end
|
4125
4154
|
|
4126
|
-
# The key
|
4155
|
+
# The key-signing key (KSK) name that you specified isn't a valid name.
|
4127
4156
|
#
|
4128
4157
|
# @!attribute [rw] message
|
4129
4158
|
# @return [String]
|
@@ -4136,7 +4165,7 @@ module Aws::Route53
|
|
4136
4165
|
include Aws::Structure
|
4137
4166
|
end
|
4138
4167
|
|
4139
|
-
# The key
|
4168
|
+
# The key-signing key (KSK) status isn't valid or another KSK has the
|
4140
4169
|
# status `INTERNAL_FAILURE`.
|
4141
4170
|
#
|
4142
4171
|
# @!attribute [rw] message
|
@@ -4206,22 +4235,23 @@ module Aws::Route53
|
|
4206
4235
|
include Aws::Structure
|
4207
4236
|
end
|
4208
4237
|
|
4209
|
-
# A key
|
4238
|
+
# A key-signing key (KSK) is a complex type that represents a
|
4210
4239
|
# public/private key pair. The private key is used to generate a digital
|
4211
4240
|
# signature for the zone signing key (ZSK). The public key is stored in
|
4212
4241
|
# the DNS and is used to authenticate the ZSK. A KSK is always
|
4213
4242
|
# associated with a hosted zone; it cannot exist by itself.
|
4214
4243
|
#
|
4215
4244
|
# @!attribute [rw] name
|
4216
|
-
#
|
4217
|
-
#
|
4218
|
-
# zone.
|
4245
|
+
# A string used to identify a key-signing key (KSK). `Name` can
|
4246
|
+
# include numbers, letters, and underscores (\_). `Name` must be
|
4247
|
+
# unique for each key-signing key in the same hosted zone.
|
4219
4248
|
# @return [String]
|
4220
4249
|
#
|
4221
4250
|
# @!attribute [rw] kms_arn
|
4222
4251
|
# The Amazon resource name (ARN) used to identify the customer managed
|
4223
|
-
# key (CMK) in AWS Key Management Service (KMS).
|
4224
|
-
# unique for each key
|
4252
|
+
# customer master key (CMK) in AWS Key Management Service (AWS KMS).
|
4253
|
+
# The `KmsArn` must be unique for each key-signing key (KSK) in a
|
4254
|
+
# single hosted zone.
|
4225
4255
|
#
|
4226
4256
|
# You must configure the CMK as follows:
|
4227
4257
|
#
|
@@ -4254,8 +4284,8 @@ module Aws::Route53
|
|
4254
4284
|
#
|
4255
4285
|
# ^
|
4256
4286
|
#
|
4257
|
-
# For more information about working with the customer managed
|
4258
|
-
#
|
4287
|
+
# For more information about working with the customer managed CMK in
|
4288
|
+
# AWS KMS, see [AWS Key Management Service concepts][1].
|
4259
4289
|
#
|
4260
4290
|
#
|
4261
4291
|
#
|
@@ -4263,7 +4293,7 @@ module Aws::Route53
|
|
4263
4293
|
# @return [String]
|
4264
4294
|
#
|
4265
4295
|
# @!attribute [rw] flag
|
4266
|
-
# An integer that specifies how the key is used. For key
|
4296
|
+
# An integer that specifies how the key is used. For key-signing key
|
4267
4297
|
# (KSK), this value is always 257.
|
4268
4298
|
# @return [Integer]
|
4269
4299
|
#
|
@@ -4340,7 +4370,7 @@ module Aws::Route53
|
|
4340
4370
|
# @return [String]
|
4341
4371
|
#
|
4342
4372
|
# @!attribute [rw] status
|
4343
|
-
# A string that represents the current key
|
4373
|
+
# A string that represents the current key-signing key (KSK) status.
|
4344
4374
|
#
|
4345
4375
|
# Status can have one of the following values:
|
4346
4376
|
#
|
@@ -4352,10 +4382,16 @@ module Aws::Route53
|
|
4352
4382
|
#
|
4353
4383
|
# : The KSK is not being used for signing.
|
4354
4384
|
#
|
4385
|
+
# DELETING
|
4386
|
+
#
|
4387
|
+
# : The KSK is in the process of being deleted.
|
4388
|
+
#
|
4355
4389
|
# ACTION\_NEEDED
|
4356
4390
|
#
|
4357
|
-
# : There is
|
4358
|
-
# resolve.
|
4391
|
+
# : There is a problem with the KSK that requires you to take action
|
4392
|
+
# to resolve. For example, the customer managed customer master key
|
4393
|
+
# (CMK) might have been deleted, or the permissions for the customer
|
4394
|
+
# managed CMK might have been changed.
|
4359
4395
|
#
|
4360
4396
|
# INTERNAL\_FAILURE
|
4361
4397
|
#
|
@@ -4366,18 +4402,18 @@ module Aws::Route53
|
|
4366
4402
|
# @return [String]
|
4367
4403
|
#
|
4368
4404
|
# @!attribute [rw] status_message
|
4369
|
-
# The status message provided for the following key
|
4405
|
+
# The status message provided for the following key-signing key (KSK)
|
4370
4406
|
# statuses: `ACTION_NEEDED` or `INTERNAL_FAILURE`. The status message
|
4371
4407
|
# includes information about what the problem might be and steps that
|
4372
4408
|
# you can take to correct the issue.
|
4373
4409
|
# @return [String]
|
4374
4410
|
#
|
4375
4411
|
# @!attribute [rw] created_date
|
4376
|
-
# The date when the key
|
4412
|
+
# The date when the key-signing key (KSK) was created.
|
4377
4413
|
# @return [Time]
|
4378
4414
|
#
|
4379
4415
|
# @!attribute [rw] last_modified_date
|
4380
|
-
# The last time that the key
|
4416
|
+
# The last time that the key-signing key (KSK) was changed.
|
4381
4417
|
# @return [Time]
|
4382
4418
|
#
|
4383
4419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/KeySigningKey AWS API Documentation
|
@@ -4403,8 +4439,8 @@ module Aws::Route53
|
|
4403
4439
|
include Aws::Structure
|
4404
4440
|
end
|
4405
4441
|
|
4406
|
-
# You've already created a key
|
4407
|
-
# the same customer managed key (CMK) ARN.
|
4442
|
+
# You've already created a key-signing key (KSK) with this name or with
|
4443
|
+
# the same customer managed customer master key (CMK) ARN.
|
4408
4444
|
#
|
4409
4445
|
# @!attribute [rw] message
|
4410
4446
|
# @return [String]
|
@@ -4417,7 +4453,7 @@ module Aws::Route53
|
|
4417
4453
|
include Aws::Structure
|
4418
4454
|
end
|
4419
4455
|
|
4420
|
-
# The key
|
4456
|
+
# The key-signing key (KSK) is specified in a parent DS record.
|
4421
4457
|
#
|
4422
4458
|
# @!attribute [rw] message
|
4423
4459
|
# @return [String]
|
@@ -4430,7 +4466,7 @@ module Aws::Route53
|
|
4430
4466
|
include Aws::Structure
|
4431
4467
|
end
|
4432
4468
|
|
4433
|
-
# The key
|
4469
|
+
# The key-signing key (KSK) that you specified can't be deactivated
|
4434
4470
|
# because it's the only KSK for a currently-enabled DNSSEC. Disable
|
4435
4471
|
# DNSSEC signing, or add or enable another KSK.
|
4436
4472
|
#
|
@@ -4445,7 +4481,7 @@ module Aws::Route53
|
|
4445
4481
|
include Aws::Structure
|
4446
4482
|
end
|
4447
4483
|
|
4448
|
-
# A key
|
4484
|
+
# A key-signing key (KSK) with `ACTIVE` status wasn't found.
|
4449
4485
|
#
|
4450
4486
|
# @!attribute [rw] message
|
4451
4487
|
# @return [String]
|
@@ -6160,7 +6196,7 @@ module Aws::Route53
|
|
6160
6196
|
include Aws::Structure
|
6161
6197
|
end
|
6162
6198
|
|
6163
|
-
# The specified key
|
6199
|
+
# The specified key-signing key (KSK) doesn't exist.
|
6164
6200
|
#
|
6165
6201
|
# @!attribute [rw] message
|
6166
6202
|
# @return [String]
|
@@ -6425,8 +6461,8 @@ module Aws::Route53
|
|
6425
6461
|
# Types][1] in the *Amazon Route 53 Developer Guide*.
|
6426
6462
|
#
|
6427
6463
|
# Valid values for basic resource record sets: `A` \| `AAAA` \| `CAA`
|
6428
|
-
# \| `CNAME` \| `MX` \| `NAPTR` \| `NS` \| `PTR` \| `SOA` \|
|
6429
|
-
# `SRV` \| `TXT`
|
6464
|
+
# \| `CNAME` \| `DS` \|`MX` \| `NAPTR` \| `NS` \| `PTR` \| `SOA` \|
|
6465
|
+
# `SPF` \| `SRV` \| `TXT`
|
6430
6466
|
#
|
6431
6467
|
# Values for weighted, latency, geolocation, and failover resource
|
6432
6468
|
# record sets: `A` \| `AAAA` \| `CAA` \| `CNAME` \| `MX` \| `NAPTR` \|
|
@@ -7272,7 +7308,7 @@ module Aws::Route53
|
|
7272
7308
|
include Aws::Structure
|
7273
7309
|
end
|
7274
7310
|
|
7275
|
-
# You've reached the limit for the number of key
|
7311
|
+
# You've reached the limit for the number of key-signing keys (KSKs).
|
7276
7312
|
# Remove at least one KSK, and then try again.
|
7277
7313
|
#
|
7278
7314
|
# @!attribute [rw] message
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.112.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|