aws-sdk-route53 1.44.0 → 1.49.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.49.0
@@ -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/master/CONTRIBUTING.md
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.associate_vpc_with_hosted_zone(params)
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.44.0'
52
+ GEM_VERSION = '1.49.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/master/CONTRIBUTING.md
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
@@ -1439,6 +1477,9 @@ module Aws::Route53
1439
1477
  # servers. When the NS and SOA records are available, the status of the
1440
1478
  # zone changes to `INSYNC`.
1441
1479
  #
1480
+ # The `CreateHostedZone` request requires the caller to have an
1481
+ # `ec2:DescribeVpcs` permission.
1482
+ #
1442
1483
  #
1443
1484
  #
1444
1485
  # [1]: http://aws.amazon.com/route53/pricing/
@@ -1553,6 +1594,119 @@ module Aws::Route53
1553
1594
  req.send_request(options)
1554
1595
  end
1555
1596
 
1597
+ # Creates a new key-signing key (KSK) associated with a hosted zone. You
1598
+ # can only have two KSKs per hosted zone.
1599
+ #
1600
+ # @option params [required, String] :caller_reference
1601
+ # A unique string that identifies the request.
1602
+ #
1603
+ # @option params [required, String] :hosted_zone_id
1604
+ # The unique string (ID) used to identify a hosted zone.
1605
+ #
1606
+ # @option params [required, String] :key_management_service_arn
1607
+ # The Amazon resource name (ARN) for a customer managed customer master
1608
+ # key (CMK) in AWS Key Management Service (AWS KMS). The
1609
+ # `KeyManagementServiceArn` must be unique for each key-signing key
1610
+ # (KSK) in a single hosted zone. To see an example of
1611
+ # `KeyManagementServiceArn` that grants the correct permissions for
1612
+ # DNSSEC, scroll down to **Example**.
1613
+ #
1614
+ # You must configure the customer managed CMK as follows:
1615
+ #
1616
+ # Status
1617
+ #
1618
+ # : Enabled
1619
+ #
1620
+ # Key spec
1621
+ #
1622
+ # : ECC\_NIST\_P256
1623
+ #
1624
+ # Key usage
1625
+ #
1626
+ # : Sign and verify
1627
+ #
1628
+ # Key policy
1629
+ #
1630
+ # : The key policy must give permission for the following actions:
1631
+ #
1632
+ # * DescribeKey
1633
+ #
1634
+ # * GetPublicKey
1635
+ #
1636
+ # * Sign
1637
+ #
1638
+ # The key policy must also include the Amazon Route 53 service in the
1639
+ # principal for your account. Specify the following:
1640
+ #
1641
+ # * `"Service": "dnssec.route53.aws.amazonaws.com"`
1642
+ #
1643
+ # ^
1644
+ #
1645
+ # For more information about working with a customer managed CMK in AWS
1646
+ # KMS, see [AWS Key Management Service concepts][1].
1647
+ #
1648
+ #
1649
+ #
1650
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
1651
+ #
1652
+ # @option params [required, String] :name
1653
+ # A string used to identify a key-signing key (KSK). `Name` can include
1654
+ # numbers, letters, and underscores (\_). `Name` must be unique for each
1655
+ # key-signing key in the same hosted zone.
1656
+ #
1657
+ # @option params [required, String] :status
1658
+ # A string specifying the initial status of the key-signing key (KSK).
1659
+ # You can set the value to `ACTIVE` or `INACTIVE`.
1660
+ #
1661
+ # @return [Types::CreateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1662
+ #
1663
+ # * {Types::CreateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
1664
+ # * {Types::CreateKeySigningKeyResponse#key_signing_key #key_signing_key} => Types::KeySigningKey
1665
+ # * {Types::CreateKeySigningKeyResponse#location #location} => String
1666
+ #
1667
+ # @example Request syntax with placeholder values
1668
+ #
1669
+ # resp = client.create_key_signing_key({
1670
+ # caller_reference: "Nonce", # required
1671
+ # hosted_zone_id: "ResourceId", # required
1672
+ # key_management_service_arn: "SigningKeyString", # required
1673
+ # name: "SigningKeyName", # required
1674
+ # status: "SigningKeyStatus", # required
1675
+ # })
1676
+ #
1677
+ # @example Response structure
1678
+ #
1679
+ # resp.change_info.id #=> String
1680
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
1681
+ # resp.change_info.submitted_at #=> Time
1682
+ # resp.change_info.comment #=> String
1683
+ # resp.key_signing_key.name #=> String
1684
+ # resp.key_signing_key.kms_arn #=> String
1685
+ # resp.key_signing_key.flag #=> Integer
1686
+ # resp.key_signing_key.signing_algorithm_mnemonic #=> String
1687
+ # resp.key_signing_key.signing_algorithm_type #=> Integer
1688
+ # resp.key_signing_key.digest_algorithm_mnemonic #=> String
1689
+ # resp.key_signing_key.digest_algorithm_type #=> Integer
1690
+ # resp.key_signing_key.key_tag #=> Integer
1691
+ # resp.key_signing_key.digest_value #=> String
1692
+ # resp.key_signing_key.public_key #=> String
1693
+ # resp.key_signing_key.ds_record #=> String
1694
+ # resp.key_signing_key.dnskey_record #=> String
1695
+ # resp.key_signing_key.status #=> String
1696
+ # resp.key_signing_key.status_message #=> String
1697
+ # resp.key_signing_key.created_date #=> Time
1698
+ # resp.key_signing_key.last_modified_date #=> Time
1699
+ # resp.location #=> String
1700
+ #
1701
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateKeySigningKey AWS API Documentation
1702
+ #
1703
+ # @overload create_key_signing_key(params = {})
1704
+ # @param [Hash] params ({})
1705
+ def create_key_signing_key(params = {}, options = {})
1706
+ req = build_request(:create_key_signing_key, params)
1707
+ req.send_request(options)
1708
+ end
1709
+
1556
1710
  # Creates a configuration for DNS query logging. After you create a
1557
1711
  # query logging configuration, Amazon Route 53 begins to publish log
1558
1712
  # data to an Amazon CloudWatch Logs log group.
@@ -1862,7 +2016,7 @@ module Aws::Route53
1862
2016
  # resp.traffic_policy.id #=> String
1863
2017
  # resp.traffic_policy.version #=> Integer
1864
2018
  # 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"
2019
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
1866
2020
  # resp.traffic_policy.document #=> String
1867
2021
  # resp.traffic_policy.comment #=> String
1868
2022
  # resp.location #=> String
@@ -1932,7 +2086,7 @@ module Aws::Route53
1932
2086
  # resp.traffic_policy_instance.message #=> String
1933
2087
  # resp.traffic_policy_instance.traffic_policy_id #=> String
1934
2088
  # 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"
2089
+ # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
1936
2090
  # resp.location #=> String
1937
2091
  #
1938
2092
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyInstance AWS API Documentation
@@ -1989,7 +2143,7 @@ module Aws::Route53
1989
2143
  # resp.traffic_policy.id #=> String
1990
2144
  # resp.traffic_policy.version #=> Integer
1991
2145
  # 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"
2146
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
1993
2147
  # resp.traffic_policy.document #=> String
1994
2148
  # resp.traffic_policy.comment #=> String
1995
2149
  # resp.location #=> String
@@ -2055,6 +2209,43 @@ module Aws::Route53
2055
2209
  req.send_request(options)
2056
2210
  end
2057
2211
 
2212
+ # Deactivates a key-signing key (KSK) so that it will not be used for
2213
+ # signing by DNSSEC. This operation changes the KSK status to
2214
+ # `INACTIVE`.
2215
+ #
2216
+ # @option params [required, String] :hosted_zone_id
2217
+ # A unique string used to identify a hosted zone.
2218
+ #
2219
+ # @option params [required, String] :name
2220
+ # A string used to identify a key-signing key (KSK).
2221
+ #
2222
+ # @return [Types::DeactivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2223
+ #
2224
+ # * {Types::DeactivateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
2225
+ #
2226
+ # @example Request syntax with placeholder values
2227
+ #
2228
+ # resp = client.deactivate_key_signing_key({
2229
+ # hosted_zone_id: "ResourceId", # required
2230
+ # name: "SigningKeyName", # required
2231
+ # })
2232
+ #
2233
+ # @example Response structure
2234
+ #
2235
+ # resp.change_info.id #=> String
2236
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2237
+ # resp.change_info.submitted_at #=> Time
2238
+ # resp.change_info.comment #=> String
2239
+ #
2240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeactivateKeySigningKey AWS API Documentation
2241
+ #
2242
+ # @overload deactivate_key_signing_key(params = {})
2243
+ # @param [Hash] params ({})
2244
+ def deactivate_key_signing_key(params = {}, options = {})
2245
+ req = build_request(:deactivate_key_signing_key, params)
2246
+ req.send_request(options)
2247
+ end
2248
+
2058
2249
  # Deletes a health check.
2059
2250
  #
2060
2251
  # Amazon Route 53 does not prevent you from deleting a health check even
@@ -2182,6 +2373,43 @@ module Aws::Route53
2182
2373
  req.send_request(options)
2183
2374
  end
2184
2375
 
2376
+ # Deletes a key-signing key (KSK). Before you can delete a KSK, you must
2377
+ # deactivate it. The KSK must be deactivated before you can delete it
2378
+ # regardless of whether the hosted zone is enabled for DNSSEC signing.
2379
+ #
2380
+ # @option params [required, String] :hosted_zone_id
2381
+ # A unique string used to identify a hosted zone.
2382
+ #
2383
+ # @option params [required, String] :name
2384
+ # A string used to identify a key-signing key (KSK).
2385
+ #
2386
+ # @return [Types::DeleteKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2387
+ #
2388
+ # * {Types::DeleteKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
2389
+ #
2390
+ # @example Request syntax with placeholder values
2391
+ #
2392
+ # resp = client.delete_key_signing_key({
2393
+ # hosted_zone_id: "ResourceId", # required
2394
+ # name: "SigningKeyName", # required
2395
+ # })
2396
+ #
2397
+ # @example Response structure
2398
+ #
2399
+ # resp.change_info.id #=> String
2400
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2401
+ # resp.change_info.submitted_at #=> Time
2402
+ # resp.change_info.comment #=> String
2403
+ #
2404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteKeySigningKey AWS API Documentation
2405
+ #
2406
+ # @overload delete_key_signing_key(params = {})
2407
+ # @param [Hash] params ({})
2408
+ def delete_key_signing_key(params = {}, options = {})
2409
+ req = build_request(:delete_key_signing_key, params)
2410
+ req.send_request(options)
2411
+ end
2412
+
2185
2413
  # Deletes a configuration for DNS query logging. If you delete a
2186
2414
  # configuration, Amazon Route 53 stops sending query logs to CloudWatch
2187
2415
  # Logs. Route 53 doesn't delete any logs that are already in CloudWatch
@@ -2367,6 +2595,39 @@ module Aws::Route53
2367
2595
  req.send_request(options)
2368
2596
  end
2369
2597
 
2598
+ # Disables DNSSEC signing in a specific hosted zone. This action does
2599
+ # not deactivate any key-signing keys (KSKs) that are active in the
2600
+ # hosted zone.
2601
+ #
2602
+ # @option params [required, String] :hosted_zone_id
2603
+ # A unique string used to identify a hosted zone.
2604
+ #
2605
+ # @return [Types::DisableHostedZoneDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2606
+ #
2607
+ # * {Types::DisableHostedZoneDNSSECResponse#change_info #change_info} => Types::ChangeInfo
2608
+ #
2609
+ # @example Request syntax with placeholder values
2610
+ #
2611
+ # resp = client.disable_hosted_zone_dnssec({
2612
+ # hosted_zone_id: "ResourceId", # required
2613
+ # })
2614
+ #
2615
+ # @example Response structure
2616
+ #
2617
+ # resp.change_info.id #=> String
2618
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2619
+ # resp.change_info.submitted_at #=> Time
2620
+ # resp.change_info.comment #=> String
2621
+ #
2622
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisableHostedZoneDNSSEC AWS API Documentation
2623
+ #
2624
+ # @overload disable_hosted_zone_dnssec(params = {})
2625
+ # @param [Hash] params ({})
2626
+ def disable_hosted_zone_dnssec(params = {}, options = {})
2627
+ req = build_request(:disable_hosted_zone_dnssec, params)
2628
+ req.send_request(options)
2629
+ end
2630
+
2370
2631
  # Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an
2371
2632
  # Amazon Route 53 private hosted zone. Note the following:
2372
2633
  #
@@ -2437,6 +2698,37 @@ module Aws::Route53
2437
2698
  req.send_request(options)
2438
2699
  end
2439
2700
 
2701
+ # Enables DNSSEC signing in a specific hosted zone.
2702
+ #
2703
+ # @option params [required, String] :hosted_zone_id
2704
+ # A unique string used to identify a hosted zone.
2705
+ #
2706
+ # @return [Types::EnableHostedZoneDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2707
+ #
2708
+ # * {Types::EnableHostedZoneDNSSECResponse#change_info #change_info} => Types::ChangeInfo
2709
+ #
2710
+ # @example Request syntax with placeholder values
2711
+ #
2712
+ # resp = client.enable_hosted_zone_dnssec({
2713
+ # hosted_zone_id: "ResourceId", # required
2714
+ # })
2715
+ #
2716
+ # @example Response structure
2717
+ #
2718
+ # resp.change_info.id #=> String
2719
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2720
+ # resp.change_info.submitted_at #=> Time
2721
+ # resp.change_info.comment #=> String
2722
+ #
2723
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/EnableHostedZoneDNSSEC AWS API Documentation
2724
+ #
2725
+ # @overload enable_hosted_zone_dnssec(params = {})
2726
+ # @param [Hash] params ({})
2727
+ def enable_hosted_zone_dnssec(params = {}, options = {})
2728
+ req = build_request(:enable_hosted_zone_dnssec, params)
2729
+ req.send_request(options)
2730
+ end
2731
+
2440
2732
  # Gets the specified limit for the current account, for example, the
2441
2733
  # maximum number of health checks that you can create using the account.
2442
2734
  #
@@ -2549,6 +2841,9 @@ module Aws::Route53
2549
2841
  req.send_request(options)
2550
2842
  end
2551
2843
 
2844
+ # Route 53 does not perform authorization for this API because it
2845
+ # retrieves information that is already available to the public.
2846
+ #
2552
2847
  # `GetCheckerIpRanges` still works, but we recommend that you download
2553
2848
  # ip-ranges.json, which includes IP address ranges for all AWS services.
2554
2849
  # For more information, see [IP Address Ranges of Amazon Route 53
@@ -2576,9 +2871,60 @@ module Aws::Route53
2576
2871
  req.send_request(options)
2577
2872
  end
2578
2873
 
2874
+ # Returns information about DNSSEC for a specific hosted zone, including
2875
+ # the key-signing keys (KSKs) in the hosted zone.
2876
+ #
2877
+ # @option params [required, String] :hosted_zone_id
2878
+ # A unique string used to identify a hosted zone.
2879
+ #
2880
+ # @return [Types::GetDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2881
+ #
2882
+ # * {Types::GetDNSSECResponse#status #status} => Types::DNSSECStatus
2883
+ # * {Types::GetDNSSECResponse#key_signing_keys #key_signing_keys} => Array<Types::KeySigningKey>
2884
+ #
2885
+ # @example Request syntax with placeholder values
2886
+ #
2887
+ # resp = client.get_dnssec({
2888
+ # hosted_zone_id: "ResourceId", # required
2889
+ # })
2890
+ #
2891
+ # @example Response structure
2892
+ #
2893
+ # resp.status.serve_signature #=> String
2894
+ # resp.status.status_message #=> String
2895
+ # resp.key_signing_keys #=> Array
2896
+ # resp.key_signing_keys[0].name #=> String
2897
+ # resp.key_signing_keys[0].kms_arn #=> String
2898
+ # resp.key_signing_keys[0].flag #=> Integer
2899
+ # resp.key_signing_keys[0].signing_algorithm_mnemonic #=> String
2900
+ # resp.key_signing_keys[0].signing_algorithm_type #=> Integer
2901
+ # resp.key_signing_keys[0].digest_algorithm_mnemonic #=> String
2902
+ # resp.key_signing_keys[0].digest_algorithm_type #=> Integer
2903
+ # resp.key_signing_keys[0].key_tag #=> Integer
2904
+ # resp.key_signing_keys[0].digest_value #=> String
2905
+ # resp.key_signing_keys[0].public_key #=> String
2906
+ # resp.key_signing_keys[0].ds_record #=> String
2907
+ # resp.key_signing_keys[0].dnskey_record #=> String
2908
+ # resp.key_signing_keys[0].status #=> String
2909
+ # resp.key_signing_keys[0].status_message #=> String
2910
+ # resp.key_signing_keys[0].created_date #=> Time
2911
+ # resp.key_signing_keys[0].last_modified_date #=> Time
2912
+ #
2913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetDNSSEC AWS API Documentation
2914
+ #
2915
+ # @overload get_dnssec(params = {})
2916
+ # @param [Hash] params ({})
2917
+ def get_dnssec(params = {}, options = {})
2918
+ req = build_request(:get_dnssec, params)
2919
+ req.send_request(options)
2920
+ end
2921
+
2579
2922
  # Gets information about whether a specified geographic location is
2580
2923
  # supported for Amazon Route 53 geolocation resource record sets.
2581
2924
  #
2925
+ # Route 53 does not perform authorization for this API because it
2926
+ # retrieves information that is already available to the public.
2927
+ #
2582
2928
  # Use the following syntax to determine whether a continent is supported
2583
2929
  # for geolocation:
2584
2930
  #
@@ -2624,17 +2970,16 @@ module Aws::Route53
2624
2970
  # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
2625
2971
  #
2626
2972
  # @option params [String] :subdivision_code
2627
- # For `SubdivisionCode`, Amazon Route 53 supports only states of the
2628
- # United States. For a list of state abbreviations, see [Appendix B:
2973
+ # The code for the subdivision, such as a particular state within the
2974
+ # United States. For a list of US state abbreviations, see [Appendix B:
2629
2975
  # 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`.
2976
+ # Postal Service website. For a list of all supported subdivision codes,
2977
+ # use the [ListGeoLocations][2] API.
2634
2978
  #
2635
2979
  #
2636
2980
  #
2637
2981
  # [1]: https://pe.usps.com/text/pub28/28apb.htm
2982
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListGeoLocations.html
2638
2983
  #
2639
2984
  # @return [Types::GetGeoLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2640
2985
  #
@@ -3130,7 +3475,7 @@ module Aws::Route53
3130
3475
  # resp.traffic_policy.id #=> String
3131
3476
  # resp.traffic_policy.version #=> Integer
3132
3477
  # 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"
3478
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3134
3479
  # resp.traffic_policy.document #=> String
3135
3480
  # resp.traffic_policy.comment #=> String
3136
3481
  #
@@ -3182,7 +3527,7 @@ module Aws::Route53
3182
3527
  # resp.traffic_policy_instance.message #=> String
3183
3528
  # resp.traffic_policy_instance.traffic_policy_id #=> String
3184
3529
  # 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"
3530
+ # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3186
3531
  #
3187
3532
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstance AWS API Documentation
3188
3533
  #
@@ -3220,6 +3565,9 @@ module Aws::Route53
3220
3565
  # provinces), the subdivisions for that country are listed in
3221
3566
  # alphabetical order immediately after the corresponding country.
3222
3567
  #
3568
+ # Route 53 does not perform authorization for this API because it
3569
+ # retrieves information that is already available to the public.
3570
+ #
3223
3571
  # For a list of supported geolocation codes, see the [GeoLocation][1]
3224
3572
  # data type.
3225
3573
  #
@@ -3759,7 +4107,7 @@ module Aws::Route53
3759
4107
 
3760
4108
  # Lists the resource record sets in a specified hosted zone.
3761
4109
  #
3762
- # `ListResourceRecordSets` returns up to 100 resource record sets at a
4110
+ # `ListResourceRecordSets` returns up to 300 resource record sets at a
3763
4111
  # time in ASCII order, beginning at a position specified by the `name`
3764
4112
  # and `type` elements.
3765
4113
  #
@@ -3900,7 +4248,7 @@ module Aws::Route53
3900
4248
  # resp = client.list_resource_record_sets({
3901
4249
  # hosted_zone_id: "ResourceId", # required
3902
4250
  # start_record_name: "DNSName",
3903
- # start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
4251
+ # start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
3904
4252
  # start_record_identifier: "ResourceRecordSetIdentifier",
3905
4253
  # max_items: 1,
3906
4254
  # })
@@ -3909,7 +4257,7 @@ module Aws::Route53
3909
4257
  #
3910
4258
  # resp.resource_record_sets #=> Array
3911
4259
  # 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"
4260
+ # resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3913
4261
  # resp.resource_record_sets[0].set_identifier #=> String
3914
4262
  # resp.resource_record_sets[0].weight #=> Integer
3915
4263
  # 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 +4276,7 @@ module Aws::Route53
3928
4276
  # resp.resource_record_sets[0].traffic_policy_instance_id #=> String
3929
4277
  # resp.is_truncated #=> Boolean
3930
4278
  # 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"
4279
+ # resp.next_record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3932
4280
  # resp.next_record_identifier #=> String
3933
4281
  # resp.max_items #=> Integer
3934
4282
  #
@@ -4145,7 +4493,7 @@ module Aws::Route53
4145
4493
  # resp.traffic_policy_summaries #=> Array
4146
4494
  # resp.traffic_policy_summaries[0].id #=> String
4147
4495
  # 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"
4496
+ # resp.traffic_policy_summaries[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4149
4497
  # resp.traffic_policy_summaries[0].latest_version #=> Integer
4150
4498
  # resp.traffic_policy_summaries[0].traffic_policy_count #=> Integer
4151
4499
  # resp.is_truncated #=> Boolean
@@ -4234,7 +4582,7 @@ module Aws::Route53
4234
4582
  # resp = client.list_traffic_policy_instances({
4235
4583
  # hosted_zone_id_marker: "ResourceId",
4236
4584
  # 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
4585
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4238
4586
  # max_items: 1,
4239
4587
  # })
4240
4588
  #
@@ -4249,10 +4597,10 @@ module Aws::Route53
4249
4597
  # resp.traffic_policy_instances[0].message #=> String
4250
4598
  # resp.traffic_policy_instances[0].traffic_policy_id #=> String
4251
4599
  # 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"
4600
+ # 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
4601
  # resp.hosted_zone_id_marker #=> String
4254
4602
  # 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"
4603
+ # resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4256
4604
  # resp.is_truncated #=> Boolean
4257
4605
  # resp.max_items #=> Integer
4258
4606
  #
@@ -4331,7 +4679,7 @@ module Aws::Route53
4331
4679
  # resp = client.list_traffic_policy_instances_by_hosted_zone({
4332
4680
  # hosted_zone_id: "ResourceId", # required
4333
4681
  # 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
4682
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4335
4683
  # max_items: 1,
4336
4684
  # })
4337
4685
  #
@@ -4346,9 +4694,9 @@ module Aws::Route53
4346
4694
  # resp.traffic_policy_instances[0].message #=> String
4347
4695
  # resp.traffic_policy_instances[0].traffic_policy_id #=> String
4348
4696
  # 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"
4697
+ # 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
4698
  # 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"
4699
+ # resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4352
4700
  # resp.is_truncated #=> Boolean
4353
4701
  # resp.max_items #=> Integer
4354
4702
  #
@@ -4453,7 +4801,7 @@ module Aws::Route53
4453
4801
  # traffic_policy_version: 1, # required
4454
4802
  # hosted_zone_id_marker: "ResourceId",
4455
4803
  # 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
4804
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4457
4805
  # max_items: 1,
4458
4806
  # })
4459
4807
  #
@@ -4468,10 +4816,10 @@ module Aws::Route53
4468
4816
  # resp.traffic_policy_instances[0].message #=> String
4469
4817
  # resp.traffic_policy_instances[0].traffic_policy_id #=> String
4470
4818
  # 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"
4819
+ # 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
4820
  # resp.hosted_zone_id_marker #=> String
4473
4821
  # 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"
4822
+ # resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4475
4823
  # resp.is_truncated #=> Boolean
4476
4824
  # resp.max_items #=> Integer
4477
4825
  #
@@ -4534,7 +4882,7 @@ module Aws::Route53
4534
4882
  # resp.traffic_policies[0].id #=> String
4535
4883
  # resp.traffic_policies[0].version #=> Integer
4536
4884
  # 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"
4885
+ # resp.traffic_policies[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4538
4886
  # resp.traffic_policies[0].document #=> String
4539
4887
  # resp.traffic_policies[0].comment #=> String
4540
4888
  # resp.is_truncated #=> Boolean
@@ -4609,6 +4957,8 @@ module Aws::Route53
4609
4957
  # specify the IP address of a DNS resolver, an EDNS0 client subnet IP
4610
4958
  # address, and a subnet mask.
4611
4959
  #
4960
+ # This call only supports querying public hosted zones.
4961
+ #
4612
4962
  # @option params [required, String] :hosted_zone_id
4613
4963
  # The ID of the hosted zone that you want Amazon Route 53 to simulate a
4614
4964
  # query for.
@@ -4661,7 +5011,7 @@ module Aws::Route53
4661
5011
  # resp = client.test_dns_answer({
4662
5012
  # hosted_zone_id: "ResourceId", # required
4663
5013
  # record_name: "DNSName", # required
4664
- # record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
5014
+ # record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4665
5015
  # resolver_ip: "IPAddress",
4666
5016
  # edns0_client_subnet_ip: "IPAddress",
4667
5017
  # edns0_client_subnet_mask: "SubnetMask",
@@ -4671,7 +5021,7 @@ module Aws::Route53
4671
5021
  #
4672
5022
  # resp.nameserver #=> String
4673
5023
  # resp.record_name #=> String
4674
- # resp.record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
5024
+ # resp.record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4675
5025
  # resp.record_data #=> Array
4676
5026
  # resp.record_data[0] #=> String
4677
5027
  # resp.response_code #=> String
@@ -5167,7 +5517,7 @@ module Aws::Route53
5167
5517
  # resp.traffic_policy.id #=> String
5168
5518
  # resp.traffic_policy.version #=> Integer
5169
5519
  # 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"
5520
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
5171
5521
  # resp.traffic_policy.document #=> String
5172
5522
  # resp.traffic_policy.comment #=> String
5173
5523
  #
@@ -5240,7 +5590,7 @@ module Aws::Route53
5240
5590
  # resp.traffic_policy_instance.message #=> String
5241
5591
  # resp.traffic_policy_instance.traffic_policy_id #=> String
5242
5592
  # 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"
5593
+ # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
5244
5594
  #
5245
5595
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyInstance AWS API Documentation
5246
5596
  #
@@ -5264,7 +5614,7 @@ module Aws::Route53
5264
5614
  params: params,
5265
5615
  config: config)
5266
5616
  context[:gem_name] = 'aws-sdk-route53'
5267
- context[:gem_version] = '1.44.0'
5617
+ context[:gem_version] = '1.49.0'
5268
5618
  Seahorse::Client::Request.new(handlers, context)
5269
5619
  end
5270
5620