aws-sdk-route53 1.43.0 → 1.48.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/CHANGELOG.md +333 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-route53.rb +3 -3
- data/lib/aws-sdk-route53/client.rb +378 -33
- data/lib/aws-sdk-route53/client_api.rb +253 -1
- data/lib/aws-sdk-route53/customizations.rb +1 -1
- data/lib/aws-sdk-route53/errors.rb +193 -1
- data/lib/aws-sdk-route53/resource.rb +1 -1
- data/lib/aws-sdk-route53/types.rb +794 -80
- data/lib/aws-sdk-route53/waiters.rb +1 -1
- metadata +10 -7
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.48.0
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -29,7 +29,7 @@ require_relative 'aws-sdk-route53/customizations'
|
|
29
29
|
# structure.
|
30
30
|
#
|
31
31
|
# route_53 = Aws::Route53::Client.new
|
32
|
-
# resp = route_53.
|
32
|
+
# resp = route_53.activate_key_signing_key(params)
|
33
33
|
#
|
34
34
|
# See {Client} for more information.
|
35
35
|
#
|
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-route53/customizations'
|
|
49
49
|
# @!group service
|
50
50
|
module Aws::Route53
|
51
51
|
|
52
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.48.0'
|
53
53
|
|
54
54
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -329,6 +329,44 @@ module Aws::Route53
|
|
329
329
|
|
330
330
|
# @!group API Operations
|
331
331
|
|
332
|
+
# Activates a key-signing key (KSK) so that it can be used for signing
|
333
|
+
# by DNSSEC. This operation changes the KSK status to `ACTIVE`.
|
334
|
+
#
|
335
|
+
# @option params [required, String] :hosted_zone_id
|
336
|
+
# A unique string used to identify a hosted zone.
|
337
|
+
#
|
338
|
+
# @option params [required, String] :name
|
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.
|
342
|
+
#
|
343
|
+
# @return [Types::ActivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
344
|
+
#
|
345
|
+
# * {Types::ActivateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
|
346
|
+
#
|
347
|
+
# @example Request syntax with placeholder values
|
348
|
+
#
|
349
|
+
# resp = client.activate_key_signing_key({
|
350
|
+
# hosted_zone_id: "ResourceId", # required
|
351
|
+
# name: "SigningKeyName", # required
|
352
|
+
# })
|
353
|
+
#
|
354
|
+
# @example Response structure
|
355
|
+
#
|
356
|
+
# resp.change_info.id #=> String
|
357
|
+
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
358
|
+
# resp.change_info.submitted_at #=> Time
|
359
|
+
# resp.change_info.comment #=> String
|
360
|
+
#
|
361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ActivateKeySigningKey AWS API Documentation
|
362
|
+
#
|
363
|
+
# @overload activate_key_signing_key(params = {})
|
364
|
+
# @param [Hash] params ({})
|
365
|
+
def activate_key_signing_key(params = {}, options = {})
|
366
|
+
req = build_request(:activate_key_signing_key, params)
|
367
|
+
req.send_request(options)
|
368
|
+
end
|
369
|
+
|
332
370
|
# Associates an Amazon VPC with a private hosted zone.
|
333
371
|
#
|
334
372
|
# To perform the association, the VPC and the private hosted zone must
|
@@ -1118,7 +1156,7 @@ module Aws::Route53
|
|
1118
1156
|
# action: "CREATE", # required, accepts CREATE, DELETE, UPSERT
|
1119
1157
|
# resource_record_set: { # required
|
1120
1158
|
# name: "DNSName", # required
|
1121
|
-
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
1159
|
+
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
1122
1160
|
# set_identifier: "ResourceRecordSetIdentifier",
|
1123
1161
|
# weight: 1,
|
1124
1162
|
# 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
|
@@ -1553,6 +1591,119 @@ module Aws::Route53
|
|
1553
1591
|
req.send_request(options)
|
1554
1592
|
end
|
1555
1593
|
|
1594
|
+
# Creates a new key-signing key (KSK) associated with a hosted zone. You
|
1595
|
+
# can only have two KSKs per hosted zone.
|
1596
|
+
#
|
1597
|
+
# @option params [required, String] :caller_reference
|
1598
|
+
# A unique string that identifies the request.
|
1599
|
+
#
|
1600
|
+
# @option params [required, String] :hosted_zone_id
|
1601
|
+
# The unique string (ID) used to identify a hosted zone.
|
1602
|
+
#
|
1603
|
+
# @option params [required, String] :key_management_service_arn
|
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**.
|
1610
|
+
#
|
1611
|
+
# You must configure the customer managed CMK as follows:
|
1612
|
+
#
|
1613
|
+
# Status
|
1614
|
+
#
|
1615
|
+
# : Enabled
|
1616
|
+
#
|
1617
|
+
# Key spec
|
1618
|
+
#
|
1619
|
+
# : ECC\_NIST\_P256
|
1620
|
+
#
|
1621
|
+
# Key usage
|
1622
|
+
#
|
1623
|
+
# : Sign and verify
|
1624
|
+
#
|
1625
|
+
# Key policy
|
1626
|
+
#
|
1627
|
+
# : The key policy must give permission for the following actions:
|
1628
|
+
#
|
1629
|
+
# * DescribeKey
|
1630
|
+
#
|
1631
|
+
# * GetPublicKey
|
1632
|
+
#
|
1633
|
+
# * Sign
|
1634
|
+
#
|
1635
|
+
# The key policy must also include the Amazon Route 53 service in the
|
1636
|
+
# principal for your account. Specify the following:
|
1637
|
+
#
|
1638
|
+
# * `"Service": "api-service.dnssec.route53.aws.internal"`
|
1639
|
+
#
|
1640
|
+
# ^
|
1641
|
+
#
|
1642
|
+
# For more information about working with a customer managed CMK in AWS
|
1643
|
+
# KMS, see [AWS Key Management Service concepts][1].
|
1644
|
+
#
|
1645
|
+
#
|
1646
|
+
#
|
1647
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
|
1648
|
+
#
|
1649
|
+
# @option params [required, String] :name
|
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.
|
1653
|
+
#
|
1654
|
+
# @option params [required, String] :status
|
1655
|
+
# A string specifying the initial status of the key-signing key (KSK).
|
1656
|
+
# You can set the value to `ACTIVE` or `INACTIVE`.
|
1657
|
+
#
|
1658
|
+
# @return [Types::CreateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1659
|
+
#
|
1660
|
+
# * {Types::CreateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
|
1661
|
+
# * {Types::CreateKeySigningKeyResponse#key_signing_key #key_signing_key} => Types::KeySigningKey
|
1662
|
+
# * {Types::CreateKeySigningKeyResponse#location #location} => String
|
1663
|
+
#
|
1664
|
+
# @example Request syntax with placeholder values
|
1665
|
+
#
|
1666
|
+
# resp = client.create_key_signing_key({
|
1667
|
+
# caller_reference: "Nonce", # required
|
1668
|
+
# hosted_zone_id: "ResourceId", # required
|
1669
|
+
# key_management_service_arn: "SigningKeyString", # required
|
1670
|
+
# name: "SigningKeyName", # required
|
1671
|
+
# status: "SigningKeyStatus", # required
|
1672
|
+
# })
|
1673
|
+
#
|
1674
|
+
# @example Response structure
|
1675
|
+
#
|
1676
|
+
# resp.change_info.id #=> String
|
1677
|
+
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
1678
|
+
# resp.change_info.submitted_at #=> Time
|
1679
|
+
# resp.change_info.comment #=> String
|
1680
|
+
# resp.key_signing_key.name #=> String
|
1681
|
+
# resp.key_signing_key.kms_arn #=> String
|
1682
|
+
# resp.key_signing_key.flag #=> Integer
|
1683
|
+
# resp.key_signing_key.signing_algorithm_mnemonic #=> String
|
1684
|
+
# resp.key_signing_key.signing_algorithm_type #=> Integer
|
1685
|
+
# resp.key_signing_key.digest_algorithm_mnemonic #=> String
|
1686
|
+
# resp.key_signing_key.digest_algorithm_type #=> Integer
|
1687
|
+
# resp.key_signing_key.key_tag #=> Integer
|
1688
|
+
# resp.key_signing_key.digest_value #=> String
|
1689
|
+
# resp.key_signing_key.public_key #=> String
|
1690
|
+
# resp.key_signing_key.ds_record #=> String
|
1691
|
+
# resp.key_signing_key.dnskey_record #=> String
|
1692
|
+
# resp.key_signing_key.status #=> String
|
1693
|
+
# resp.key_signing_key.status_message #=> String
|
1694
|
+
# resp.key_signing_key.created_date #=> Time
|
1695
|
+
# resp.key_signing_key.last_modified_date #=> Time
|
1696
|
+
# resp.location #=> String
|
1697
|
+
#
|
1698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateKeySigningKey AWS API Documentation
|
1699
|
+
#
|
1700
|
+
# @overload create_key_signing_key(params = {})
|
1701
|
+
# @param [Hash] params ({})
|
1702
|
+
def create_key_signing_key(params = {}, options = {})
|
1703
|
+
req = build_request(:create_key_signing_key, params)
|
1704
|
+
req.send_request(options)
|
1705
|
+
end
|
1706
|
+
|
1556
1707
|
# Creates a configuration for DNS query logging. After you create a
|
1557
1708
|
# query logging configuration, Amazon Route 53 begins to publish log
|
1558
1709
|
# data to an Amazon CloudWatch Logs log group.
|
@@ -1862,7 +2013,7 @@ module Aws::Route53
|
|
1862
2013
|
# resp.traffic_policy.id #=> String
|
1863
2014
|
# resp.traffic_policy.version #=> Integer
|
1864
2015
|
# resp.traffic_policy.name #=> String
|
1865
|
-
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
2016
|
+
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
1866
2017
|
# resp.traffic_policy.document #=> String
|
1867
2018
|
# resp.traffic_policy.comment #=> String
|
1868
2019
|
# resp.location #=> String
|
@@ -1932,7 +2083,7 @@ module Aws::Route53
|
|
1932
2083
|
# resp.traffic_policy_instance.message #=> String
|
1933
2084
|
# resp.traffic_policy_instance.traffic_policy_id #=> String
|
1934
2085
|
# resp.traffic_policy_instance.traffic_policy_version #=> Integer
|
1935
|
-
# resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
2086
|
+
# resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
1936
2087
|
# resp.location #=> String
|
1937
2088
|
#
|
1938
2089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyInstance AWS API Documentation
|
@@ -1989,7 +2140,7 @@ module Aws::Route53
|
|
1989
2140
|
# resp.traffic_policy.id #=> String
|
1990
2141
|
# resp.traffic_policy.version #=> Integer
|
1991
2142
|
# resp.traffic_policy.name #=> String
|
1992
|
-
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
2143
|
+
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
1993
2144
|
# resp.traffic_policy.document #=> String
|
1994
2145
|
# resp.traffic_policy.comment #=> String
|
1995
2146
|
# resp.location #=> String
|
@@ -2055,6 +2206,43 @@ module Aws::Route53
|
|
2055
2206
|
req.send_request(options)
|
2056
2207
|
end
|
2057
2208
|
|
2209
|
+
# Deactivates a key-signing key (KSK) so that it will not be used for
|
2210
|
+
# signing by DNSSEC. This operation changes the KSK status to
|
2211
|
+
# `INACTIVE`.
|
2212
|
+
#
|
2213
|
+
# @option params [required, String] :hosted_zone_id
|
2214
|
+
# A unique string used to identify a hosted zone.
|
2215
|
+
#
|
2216
|
+
# @option params [required, String] :name
|
2217
|
+
# A string used to identify a key-signing key (KSK).
|
2218
|
+
#
|
2219
|
+
# @return [Types::DeactivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2220
|
+
#
|
2221
|
+
# * {Types::DeactivateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
|
2222
|
+
#
|
2223
|
+
# @example Request syntax with placeholder values
|
2224
|
+
#
|
2225
|
+
# resp = client.deactivate_key_signing_key({
|
2226
|
+
# hosted_zone_id: "ResourceId", # required
|
2227
|
+
# name: "SigningKeyName", # required
|
2228
|
+
# })
|
2229
|
+
#
|
2230
|
+
# @example Response structure
|
2231
|
+
#
|
2232
|
+
# resp.change_info.id #=> String
|
2233
|
+
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
2234
|
+
# resp.change_info.submitted_at #=> Time
|
2235
|
+
# resp.change_info.comment #=> String
|
2236
|
+
#
|
2237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeactivateKeySigningKey AWS API Documentation
|
2238
|
+
#
|
2239
|
+
# @overload deactivate_key_signing_key(params = {})
|
2240
|
+
# @param [Hash] params ({})
|
2241
|
+
def deactivate_key_signing_key(params = {}, options = {})
|
2242
|
+
req = build_request(:deactivate_key_signing_key, params)
|
2243
|
+
req.send_request(options)
|
2244
|
+
end
|
2245
|
+
|
2058
2246
|
# Deletes a health check.
|
2059
2247
|
#
|
2060
2248
|
# Amazon Route 53 does not prevent you from deleting a health check even
|
@@ -2182,6 +2370,43 @@ module Aws::Route53
|
|
2182
2370
|
req.send_request(options)
|
2183
2371
|
end
|
2184
2372
|
|
2373
|
+
# Deletes a key-signing key (KSK). Before you can delete a KSK, you must
|
2374
|
+
# deactivate it. The KSK must be deactived before you can delete it
|
2375
|
+
# regardless of whether the hosted zone is enabled for DNSSEC signing.
|
2376
|
+
#
|
2377
|
+
# @option params [required, String] :hosted_zone_id
|
2378
|
+
# A unique string used to identify a hosted zone.
|
2379
|
+
#
|
2380
|
+
# @option params [required, String] :name
|
2381
|
+
# A string used to identify a key-signing key (KSK).
|
2382
|
+
#
|
2383
|
+
# @return [Types::DeleteKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2384
|
+
#
|
2385
|
+
# * {Types::DeleteKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
|
2386
|
+
#
|
2387
|
+
# @example Request syntax with placeholder values
|
2388
|
+
#
|
2389
|
+
# resp = client.delete_key_signing_key({
|
2390
|
+
# hosted_zone_id: "ResourceId", # required
|
2391
|
+
# name: "SigningKeyName", # required
|
2392
|
+
# })
|
2393
|
+
#
|
2394
|
+
# @example Response structure
|
2395
|
+
#
|
2396
|
+
# resp.change_info.id #=> String
|
2397
|
+
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
2398
|
+
# resp.change_info.submitted_at #=> Time
|
2399
|
+
# resp.change_info.comment #=> String
|
2400
|
+
#
|
2401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteKeySigningKey AWS API Documentation
|
2402
|
+
#
|
2403
|
+
# @overload delete_key_signing_key(params = {})
|
2404
|
+
# @param [Hash] params ({})
|
2405
|
+
def delete_key_signing_key(params = {}, options = {})
|
2406
|
+
req = build_request(:delete_key_signing_key, params)
|
2407
|
+
req.send_request(options)
|
2408
|
+
end
|
2409
|
+
|
2185
2410
|
# Deletes a configuration for DNS query logging. If you delete a
|
2186
2411
|
# configuration, Amazon Route 53 stops sending query logs to CloudWatch
|
2187
2412
|
# Logs. Route 53 doesn't delete any logs that are already in CloudWatch
|
@@ -2367,6 +2592,39 @@ module Aws::Route53
|
|
2367
2592
|
req.send_request(options)
|
2368
2593
|
end
|
2369
2594
|
|
2595
|
+
# Disables DNSSEC signing in a specific hosted zone. This action does
|
2596
|
+
# not deactivate any key-signing keys (KSKs) that are active in the
|
2597
|
+
# hosted zone.
|
2598
|
+
#
|
2599
|
+
# @option params [required, String] :hosted_zone_id
|
2600
|
+
# A unique string used to identify a hosted zone.
|
2601
|
+
#
|
2602
|
+
# @return [Types::DisableHostedZoneDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2603
|
+
#
|
2604
|
+
# * {Types::DisableHostedZoneDNSSECResponse#change_info #change_info} => Types::ChangeInfo
|
2605
|
+
#
|
2606
|
+
# @example Request syntax with placeholder values
|
2607
|
+
#
|
2608
|
+
# resp = client.disable_hosted_zone_dnssec({
|
2609
|
+
# hosted_zone_id: "ResourceId", # required
|
2610
|
+
# })
|
2611
|
+
#
|
2612
|
+
# @example Response structure
|
2613
|
+
#
|
2614
|
+
# resp.change_info.id #=> String
|
2615
|
+
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
2616
|
+
# resp.change_info.submitted_at #=> Time
|
2617
|
+
# resp.change_info.comment #=> String
|
2618
|
+
#
|
2619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisableHostedZoneDNSSEC AWS API Documentation
|
2620
|
+
#
|
2621
|
+
# @overload disable_hosted_zone_dnssec(params = {})
|
2622
|
+
# @param [Hash] params ({})
|
2623
|
+
def disable_hosted_zone_dnssec(params = {}, options = {})
|
2624
|
+
req = build_request(:disable_hosted_zone_dnssec, params)
|
2625
|
+
req.send_request(options)
|
2626
|
+
end
|
2627
|
+
|
2370
2628
|
# Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an
|
2371
2629
|
# Amazon Route 53 private hosted zone. Note the following:
|
2372
2630
|
#
|
@@ -2437,6 +2695,37 @@ module Aws::Route53
|
|
2437
2695
|
req.send_request(options)
|
2438
2696
|
end
|
2439
2697
|
|
2698
|
+
# Enables DNSSEC signing in a specific hosted zone.
|
2699
|
+
#
|
2700
|
+
# @option params [required, String] :hosted_zone_id
|
2701
|
+
# A unique string used to identify a hosted zone.
|
2702
|
+
#
|
2703
|
+
# @return [Types::EnableHostedZoneDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2704
|
+
#
|
2705
|
+
# * {Types::EnableHostedZoneDNSSECResponse#change_info #change_info} => Types::ChangeInfo
|
2706
|
+
#
|
2707
|
+
# @example Request syntax with placeholder values
|
2708
|
+
#
|
2709
|
+
# resp = client.enable_hosted_zone_dnssec({
|
2710
|
+
# hosted_zone_id: "ResourceId", # required
|
2711
|
+
# })
|
2712
|
+
#
|
2713
|
+
# @example Response structure
|
2714
|
+
#
|
2715
|
+
# resp.change_info.id #=> String
|
2716
|
+
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
2717
|
+
# resp.change_info.submitted_at #=> Time
|
2718
|
+
# resp.change_info.comment #=> String
|
2719
|
+
#
|
2720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/EnableHostedZoneDNSSEC AWS API Documentation
|
2721
|
+
#
|
2722
|
+
# @overload enable_hosted_zone_dnssec(params = {})
|
2723
|
+
# @param [Hash] params ({})
|
2724
|
+
def enable_hosted_zone_dnssec(params = {}, options = {})
|
2725
|
+
req = build_request(:enable_hosted_zone_dnssec, params)
|
2726
|
+
req.send_request(options)
|
2727
|
+
end
|
2728
|
+
|
2440
2729
|
# Gets the specified limit for the current account, for example, the
|
2441
2730
|
# maximum number of health checks that you can create using the account.
|
2442
2731
|
#
|
@@ -2549,6 +2838,9 @@ module Aws::Route53
|
|
2549
2838
|
req.send_request(options)
|
2550
2839
|
end
|
2551
2840
|
|
2841
|
+
# Route 53 does not perform authorization for this API because it
|
2842
|
+
# retrieves information that is already available to the public.
|
2843
|
+
#
|
2552
2844
|
# `GetCheckerIpRanges` still works, but we recommend that you download
|
2553
2845
|
# ip-ranges.json, which includes IP address ranges for all AWS services.
|
2554
2846
|
# For more information, see [IP Address Ranges of Amazon Route 53
|
@@ -2576,9 +2868,60 @@ module Aws::Route53
|
|
2576
2868
|
req.send_request(options)
|
2577
2869
|
end
|
2578
2870
|
|
2871
|
+
# Returns information about DNSSEC for a specific hosted zone, including
|
2872
|
+
# the key-signing keys (KSKs) in the hosted zone.
|
2873
|
+
#
|
2874
|
+
# @option params [required, String] :hosted_zone_id
|
2875
|
+
# A unique string used to identify a hosted zone.
|
2876
|
+
#
|
2877
|
+
# @return [Types::GetDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2878
|
+
#
|
2879
|
+
# * {Types::GetDNSSECResponse#status #status} => Types::DNSSECStatus
|
2880
|
+
# * {Types::GetDNSSECResponse#key_signing_keys #key_signing_keys} => Array<Types::KeySigningKey>
|
2881
|
+
#
|
2882
|
+
# @example Request syntax with placeholder values
|
2883
|
+
#
|
2884
|
+
# resp = client.get_dnssec({
|
2885
|
+
# hosted_zone_id: "ResourceId", # required
|
2886
|
+
# })
|
2887
|
+
#
|
2888
|
+
# @example Response structure
|
2889
|
+
#
|
2890
|
+
# resp.status.serve_signature #=> String
|
2891
|
+
# resp.status.status_message #=> String
|
2892
|
+
# resp.key_signing_keys #=> Array
|
2893
|
+
# resp.key_signing_keys[0].name #=> String
|
2894
|
+
# resp.key_signing_keys[0].kms_arn #=> String
|
2895
|
+
# resp.key_signing_keys[0].flag #=> Integer
|
2896
|
+
# resp.key_signing_keys[0].signing_algorithm_mnemonic #=> String
|
2897
|
+
# resp.key_signing_keys[0].signing_algorithm_type #=> Integer
|
2898
|
+
# resp.key_signing_keys[0].digest_algorithm_mnemonic #=> String
|
2899
|
+
# resp.key_signing_keys[0].digest_algorithm_type #=> Integer
|
2900
|
+
# resp.key_signing_keys[0].key_tag #=> Integer
|
2901
|
+
# resp.key_signing_keys[0].digest_value #=> String
|
2902
|
+
# resp.key_signing_keys[0].public_key #=> String
|
2903
|
+
# resp.key_signing_keys[0].ds_record #=> String
|
2904
|
+
# resp.key_signing_keys[0].dnskey_record #=> String
|
2905
|
+
# resp.key_signing_keys[0].status #=> String
|
2906
|
+
# resp.key_signing_keys[0].status_message #=> String
|
2907
|
+
# resp.key_signing_keys[0].created_date #=> Time
|
2908
|
+
# resp.key_signing_keys[0].last_modified_date #=> Time
|
2909
|
+
#
|
2910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetDNSSEC AWS API Documentation
|
2911
|
+
#
|
2912
|
+
# @overload get_dnssec(params = {})
|
2913
|
+
# @param [Hash] params ({})
|
2914
|
+
def get_dnssec(params = {}, options = {})
|
2915
|
+
req = build_request(:get_dnssec, params)
|
2916
|
+
req.send_request(options)
|
2917
|
+
end
|
2918
|
+
|
2579
2919
|
# Gets information about whether a specified geographic location is
|
2580
2920
|
# supported for Amazon Route 53 geolocation resource record sets.
|
2581
2921
|
#
|
2922
|
+
# Route 53 does not perform authorization for this API because it
|
2923
|
+
# retrieves information that is already available to the public.
|
2924
|
+
#
|
2582
2925
|
# Use the following syntax to determine whether a continent is supported
|
2583
2926
|
# for geolocation:
|
2584
2927
|
#
|
@@ -2624,17 +2967,16 @@ module Aws::Route53
|
|
2624
2967
|
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
2625
2968
|
#
|
2626
2969
|
# @option params [String] :subdivision_code
|
2627
|
-
#
|
2628
|
-
# 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:
|
2629
2972
|
# Two–Letter State and Possession Abbreviations][1] on the United States
|
2630
|
-
# Postal Service website.
|
2631
|
-
#
|
2632
|
-
# If you specify `subdivisioncode`, you must also specify `US` for
|
2633
|
-
# `CountryCode`.
|
2973
|
+
# Postal Service website. For a list of all supported subdivision codes,
|
2974
|
+
# use the [ListGeoLocations][2] API.
|
2634
2975
|
#
|
2635
2976
|
#
|
2636
2977
|
#
|
2637
2978
|
# [1]: https://pe.usps.com/text/pub28/28apb.htm
|
2979
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListGeoLocations.html
|
2638
2980
|
#
|
2639
2981
|
# @return [Types::GetGeoLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2640
2982
|
#
|
@@ -3130,7 +3472,7 @@ module Aws::Route53
|
|
3130
3472
|
# resp.traffic_policy.id #=> String
|
3131
3473
|
# resp.traffic_policy.version #=> Integer
|
3132
3474
|
# resp.traffic_policy.name #=> String
|
3133
|
-
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
3475
|
+
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
3134
3476
|
# resp.traffic_policy.document #=> String
|
3135
3477
|
# resp.traffic_policy.comment #=> String
|
3136
3478
|
#
|
@@ -3182,7 +3524,7 @@ module Aws::Route53
|
|
3182
3524
|
# resp.traffic_policy_instance.message #=> String
|
3183
3525
|
# resp.traffic_policy_instance.traffic_policy_id #=> String
|
3184
3526
|
# resp.traffic_policy_instance.traffic_policy_version #=> Integer
|
3185
|
-
# resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
3527
|
+
# resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
3186
3528
|
#
|
3187
3529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstance AWS API Documentation
|
3188
3530
|
#
|
@@ -3220,6 +3562,9 @@ module Aws::Route53
|
|
3220
3562
|
# provinces), the subdivisions for that country are listed in
|
3221
3563
|
# alphabetical order immediately after the corresponding country.
|
3222
3564
|
#
|
3565
|
+
# Route 53 does not perform authorization for this API because it
|
3566
|
+
# retrieves information that is already available to the public.
|
3567
|
+
#
|
3223
3568
|
# For a list of supported geolocation codes, see the [GeoLocation][1]
|
3224
3569
|
# data type.
|
3225
3570
|
#
|
@@ -3759,7 +4104,7 @@ module Aws::Route53
|
|
3759
4104
|
|
3760
4105
|
# Lists the resource record sets in a specified hosted zone.
|
3761
4106
|
#
|
3762
|
-
# `ListResourceRecordSets` returns up to
|
4107
|
+
# `ListResourceRecordSets` returns up to 300 resource record sets at a
|
3763
4108
|
# time in ASCII order, beginning at a position specified by the `name`
|
3764
4109
|
# and `type` elements.
|
3765
4110
|
#
|
@@ -3900,7 +4245,7 @@ module Aws::Route53
|
|
3900
4245
|
# resp = client.list_resource_record_sets({
|
3901
4246
|
# hosted_zone_id: "ResourceId", # required
|
3902
4247
|
# start_record_name: "DNSName",
|
3903
|
-
# start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
4248
|
+
# start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
3904
4249
|
# start_record_identifier: "ResourceRecordSetIdentifier",
|
3905
4250
|
# max_items: 1,
|
3906
4251
|
# })
|
@@ -3909,7 +4254,7 @@ module Aws::Route53
|
|
3909
4254
|
#
|
3910
4255
|
# resp.resource_record_sets #=> Array
|
3911
4256
|
# resp.resource_record_sets[0].name #=> String
|
3912
|
-
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4257
|
+
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
3913
4258
|
# resp.resource_record_sets[0].set_identifier #=> String
|
3914
4259
|
# resp.resource_record_sets[0].weight #=> Integer
|
3915
4260
|
# resp.resource_record_sets[0].region #=> String, one of "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"
|
@@ -3928,7 +4273,7 @@ module Aws::Route53
|
|
3928
4273
|
# resp.resource_record_sets[0].traffic_policy_instance_id #=> String
|
3929
4274
|
# resp.is_truncated #=> Boolean
|
3930
4275
|
# resp.next_record_name #=> String
|
3931
|
-
# resp.next_record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4276
|
+
# resp.next_record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
3932
4277
|
# resp.next_record_identifier #=> String
|
3933
4278
|
# resp.max_items #=> Integer
|
3934
4279
|
#
|
@@ -4145,7 +4490,7 @@ module Aws::Route53
|
|
4145
4490
|
# resp.traffic_policy_summaries #=> Array
|
4146
4491
|
# resp.traffic_policy_summaries[0].id #=> String
|
4147
4492
|
# resp.traffic_policy_summaries[0].name #=> String
|
4148
|
-
# resp.traffic_policy_summaries[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4493
|
+
# resp.traffic_policy_summaries[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4149
4494
|
# resp.traffic_policy_summaries[0].latest_version #=> Integer
|
4150
4495
|
# resp.traffic_policy_summaries[0].traffic_policy_count #=> Integer
|
4151
4496
|
# resp.is_truncated #=> Boolean
|
@@ -4234,7 +4579,7 @@ module Aws::Route53
|
|
4234
4579
|
# resp = client.list_traffic_policy_instances({
|
4235
4580
|
# hosted_zone_id_marker: "ResourceId",
|
4236
4581
|
# traffic_policy_instance_name_marker: "DNSName",
|
4237
|
-
# traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
4582
|
+
# traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
4238
4583
|
# max_items: 1,
|
4239
4584
|
# })
|
4240
4585
|
#
|
@@ -4249,10 +4594,10 @@ module Aws::Route53
|
|
4249
4594
|
# resp.traffic_policy_instances[0].message #=> String
|
4250
4595
|
# resp.traffic_policy_instances[0].traffic_policy_id #=> String
|
4251
4596
|
# resp.traffic_policy_instances[0].traffic_policy_version #=> Integer
|
4252
|
-
# resp.traffic_policy_instances[0].traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4597
|
+
# resp.traffic_policy_instances[0].traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4253
4598
|
# resp.hosted_zone_id_marker #=> String
|
4254
4599
|
# resp.traffic_policy_instance_name_marker #=> String
|
4255
|
-
# resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4600
|
+
# resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4256
4601
|
# resp.is_truncated #=> Boolean
|
4257
4602
|
# resp.max_items #=> Integer
|
4258
4603
|
#
|
@@ -4331,7 +4676,7 @@ module Aws::Route53
|
|
4331
4676
|
# resp = client.list_traffic_policy_instances_by_hosted_zone({
|
4332
4677
|
# hosted_zone_id: "ResourceId", # required
|
4333
4678
|
# traffic_policy_instance_name_marker: "DNSName",
|
4334
|
-
# traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
4679
|
+
# traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
4335
4680
|
# max_items: 1,
|
4336
4681
|
# })
|
4337
4682
|
#
|
@@ -4346,9 +4691,9 @@ module Aws::Route53
|
|
4346
4691
|
# resp.traffic_policy_instances[0].message #=> String
|
4347
4692
|
# resp.traffic_policy_instances[0].traffic_policy_id #=> String
|
4348
4693
|
# resp.traffic_policy_instances[0].traffic_policy_version #=> Integer
|
4349
|
-
# resp.traffic_policy_instances[0].traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4694
|
+
# resp.traffic_policy_instances[0].traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4350
4695
|
# resp.traffic_policy_instance_name_marker #=> String
|
4351
|
-
# resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4696
|
+
# resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4352
4697
|
# resp.is_truncated #=> Boolean
|
4353
4698
|
# resp.max_items #=> Integer
|
4354
4699
|
#
|
@@ -4453,7 +4798,7 @@ module Aws::Route53
|
|
4453
4798
|
# traffic_policy_version: 1, # required
|
4454
4799
|
# hosted_zone_id_marker: "ResourceId",
|
4455
4800
|
# traffic_policy_instance_name_marker: "DNSName",
|
4456
|
-
# traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
4801
|
+
# traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
4457
4802
|
# max_items: 1,
|
4458
4803
|
# })
|
4459
4804
|
#
|
@@ -4468,10 +4813,10 @@ module Aws::Route53
|
|
4468
4813
|
# resp.traffic_policy_instances[0].message #=> String
|
4469
4814
|
# resp.traffic_policy_instances[0].traffic_policy_id #=> String
|
4470
4815
|
# resp.traffic_policy_instances[0].traffic_policy_version #=> Integer
|
4471
|
-
# resp.traffic_policy_instances[0].traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4816
|
+
# resp.traffic_policy_instances[0].traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4472
4817
|
# resp.hosted_zone_id_marker #=> String
|
4473
4818
|
# resp.traffic_policy_instance_name_marker #=> String
|
4474
|
-
# resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4819
|
+
# resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4475
4820
|
# resp.is_truncated #=> Boolean
|
4476
4821
|
# resp.max_items #=> Integer
|
4477
4822
|
#
|
@@ -4534,7 +4879,7 @@ module Aws::Route53
|
|
4534
4879
|
# resp.traffic_policies[0].id #=> String
|
4535
4880
|
# resp.traffic_policies[0].version #=> Integer
|
4536
4881
|
# resp.traffic_policies[0].name #=> String
|
4537
|
-
# resp.traffic_policies[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
4882
|
+
# resp.traffic_policies[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4538
4883
|
# resp.traffic_policies[0].document #=> String
|
4539
4884
|
# resp.traffic_policies[0].comment #=> String
|
4540
4885
|
# resp.is_truncated #=> Boolean
|
@@ -4661,7 +5006,7 @@ module Aws::Route53
|
|
4661
5006
|
# resp = client.test_dns_answer({
|
4662
5007
|
# hosted_zone_id: "ResourceId", # required
|
4663
5008
|
# record_name: "DNSName", # required
|
4664
|
-
# record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
5009
|
+
# record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
4665
5010
|
# resolver_ip: "IPAddress",
|
4666
5011
|
# edns0_client_subnet_ip: "IPAddress",
|
4667
5012
|
# edns0_client_subnet_mask: "SubnetMask",
|
@@ -4671,7 +5016,7 @@ module Aws::Route53
|
|
4671
5016
|
#
|
4672
5017
|
# resp.nameserver #=> String
|
4673
5018
|
# resp.record_name #=> String
|
4674
|
-
# resp.record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
5019
|
+
# resp.record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4675
5020
|
# resp.record_data #=> Array
|
4676
5021
|
# resp.record_data[0] #=> String
|
4677
5022
|
# resp.response_code #=> String
|
@@ -5167,7 +5512,7 @@ module Aws::Route53
|
|
5167
5512
|
# resp.traffic_policy.id #=> String
|
5168
5513
|
# resp.traffic_policy.version #=> Integer
|
5169
5514
|
# resp.traffic_policy.name #=> String
|
5170
|
-
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
5515
|
+
# resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
5171
5516
|
# resp.traffic_policy.document #=> String
|
5172
5517
|
# resp.traffic_policy.comment #=> String
|
5173
5518
|
#
|
@@ -5240,7 +5585,7 @@ module Aws::Route53
|
|
5240
5585
|
# resp.traffic_policy_instance.message #=> String
|
5241
5586
|
# resp.traffic_policy_instance.traffic_policy_id #=> String
|
5242
5587
|
# resp.traffic_policy_instance.traffic_policy_version #=> Integer
|
5243
|
-
# resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
5588
|
+
# resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
5244
5589
|
#
|
5245
5590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyInstance AWS API Documentation
|
5246
5591
|
#
|
@@ -5264,7 +5609,7 @@ module Aws::Route53
|
|
5264
5609
|
params: params,
|
5265
5610
|
config: config)
|
5266
5611
|
context[:gem_name] = 'aws-sdk-route53'
|
5267
|
-
context[:gem_version] = '1.
|
5612
|
+
context[:gem_version] = '1.48.0'
|
5268
5613
|
Seahorse::Client::Request.new(handlers, context)
|
5269
5614
|
end
|
5270
5615
|
|