aws-sdk-route53 1.44.0 → 1.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a32fd5ed6bd9a3bff3bc4a401f5e94c237ed8423ce066e1692d5fe065e7088c
4
- data.tar.gz: d52d5311449fe2387396efc353d72916ab4fb5c456344cd29aabd325db9a7c95
3
+ metadata.gz: 63d900b5addaada664fa550cf6597f86c80bf06a0f6910ec37e8153230b6daca
4
+ data.tar.gz: a9e453abe293968b89651423adcc6ef7bb4cfa707457792c4b7b8706abaf45a0
5
5
  SHA512:
6
- metadata.gz: e6f413f7e62170cf1edb45fad9b5ab8b45f2756d530d47a718b55f39ddb55c2017de2c663c6956f23b4ab59c5c183ebfbe447f6f5acccbd24f9fdeecfd4cd208
7
- data.tar.gz: 7979ad689c8c6ac2b8a0cca3408939c2082aa3efc84262a458d2b27e68b8e57c9fec80b11dc5aa770cf02e647b086f705aa1f15edaafb982d12dde706682eb66
6
+ metadata.gz: 6244f0e8a0467ff7f21c2d53cd7c427521a9e3d5dc3fe1363e88eeecb3142e67f6aeaab285947ce647b65193f5c38464edc0954d452de3a6ec2c2de941db0f10
7
+ data.tar.gz: 07d0d0efe860339bba2f550f0337826ce40d5b3be522807e07bc9f71f754be9acc329ce20d456510b657ac36817e9d02029c8ee24e1c2a2caeb04b7cb4021583
@@ -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.45.0'
53
53
 
54
54
  end
@@ -329,6 +329,42 @@ 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
+ # An alphanumeric string used to identify a key signing key (KSK).
340
+ #
341
+ # @return [Types::ActivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
342
+ #
343
+ # * {Types::ActivateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
344
+ #
345
+ # @example Request syntax with placeholder values
346
+ #
347
+ # resp = client.activate_key_signing_key({
348
+ # hosted_zone_id: "ResourceId", # required
349
+ # name: "SigningKeyName", # required
350
+ # })
351
+ #
352
+ # @example Response structure
353
+ #
354
+ # resp.change_info.id #=> String
355
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
356
+ # resp.change_info.submitted_at #=> Time
357
+ # resp.change_info.comment #=> String
358
+ #
359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ActivateKeySigningKey AWS API Documentation
360
+ #
361
+ # @overload activate_key_signing_key(params = {})
362
+ # @param [Hash] params ({})
363
+ def activate_key_signing_key(params = {}, options = {})
364
+ req = build_request(:activate_key_signing_key, params)
365
+ req.send_request(options)
366
+ end
367
+
332
368
  # Associates an Amazon VPC with a private hosted zone.
333
369
  #
334
370
  # To perform the association, the VPC and the private hosted zone must
@@ -1118,7 +1154,7 @@ module Aws::Route53
1118
1154
  # action: "CREATE", # required, accepts CREATE, DELETE, UPSERT
1119
1155
  # resource_record_set: { # required
1120
1156
  # name: "DNSName", # required
1121
- # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
1157
+ # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
1122
1158
  # set_identifier: "ResourceRecordSetIdentifier",
1123
1159
  # weight: 1,
1124
1160
  # 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 +1589,118 @@ module Aws::Route53
1553
1589
  req.send_request(options)
1554
1590
  end
1555
1591
 
1592
+ # Creates a new key signing key (KSK) associated with a hosted zone. You
1593
+ # can only have two KSKs per hosted zone.
1594
+ #
1595
+ # @option params [required, String] :caller_reference
1596
+ # A unique string that identifies the request.
1597
+ #
1598
+ # @option params [required, String] :hosted_zone_id
1599
+ # The unique string (ID) used to identify a hosted zone.
1600
+ #
1601
+ # @option params [required, String] :key_management_service_arn
1602
+ # The Amazon resource name (ARN) for a customer managed key (CMK) in AWS
1603
+ # Key Management Service (KMS). The `KeyManagementServiceArn` must be
1604
+ # unique for each key signing key (KSK) in a single hosted zone. To see
1605
+ # an example of `KeyManagementServiceArn` that grants the correct
1606
+ # permissions for DNSSEC, scroll down to **Example**.
1607
+ #
1608
+ # You must configure the CMK as follows:
1609
+ #
1610
+ # Status
1611
+ #
1612
+ # : Enabled
1613
+ #
1614
+ # Key spec
1615
+ #
1616
+ # : ECC\_NIST\_P256
1617
+ #
1618
+ # Key usage
1619
+ #
1620
+ # : Sign and verify
1621
+ #
1622
+ # Key policy
1623
+ #
1624
+ # : The key policy must give permission for the following actions:
1625
+ #
1626
+ # * DescribeKey
1627
+ #
1628
+ # * GetPublicKey
1629
+ #
1630
+ # * Sign
1631
+ #
1632
+ # The key policy must also include the Amazon Route 53 service in the
1633
+ # principal for your account. Specify the following:
1634
+ #
1635
+ # * `"Service": "api-service.dnssec.route53.aws.internal"`
1636
+ #
1637
+ # ^
1638
+ #
1639
+ # For more information about working with CMK in KMS, see [AWS Key
1640
+ # Management Service concepts][1].
1641
+ #
1642
+ #
1643
+ #
1644
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
1645
+ #
1646
+ # @option params [required, String] :name
1647
+ # An alphanumeric string used to identify a key signing key (KSK).
1648
+ # `Name` must be unique for each key signing key in the same hosted
1649
+ # zone.
1650
+ #
1651
+ # @option params [required, String] :status
1652
+ # A string specifying the initial status of the key signing key (KSK).
1653
+ # You can set the value to `ACTIVE` or `INACTIVE`.
1654
+ #
1655
+ # @return [Types::CreateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1656
+ #
1657
+ # * {Types::CreateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
1658
+ # * {Types::CreateKeySigningKeyResponse#key_signing_key #key_signing_key} => Types::KeySigningKey
1659
+ # * {Types::CreateKeySigningKeyResponse#location #location} => String
1660
+ #
1661
+ # @example Request syntax with placeholder values
1662
+ #
1663
+ # resp = client.create_key_signing_key({
1664
+ # caller_reference: "Nonce", # required
1665
+ # hosted_zone_id: "ResourceId", # required
1666
+ # key_management_service_arn: "SigningKeyString", # required
1667
+ # name: "SigningKeyName", # required
1668
+ # status: "SigningKeyStatus", # required
1669
+ # })
1670
+ #
1671
+ # @example Response structure
1672
+ #
1673
+ # resp.change_info.id #=> String
1674
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
1675
+ # resp.change_info.submitted_at #=> Time
1676
+ # resp.change_info.comment #=> String
1677
+ # resp.key_signing_key.name #=> String
1678
+ # resp.key_signing_key.kms_arn #=> String
1679
+ # resp.key_signing_key.flag #=> Integer
1680
+ # resp.key_signing_key.signing_algorithm_mnemonic #=> String
1681
+ # resp.key_signing_key.signing_algorithm_type #=> Integer
1682
+ # resp.key_signing_key.digest_algorithm_mnemonic #=> String
1683
+ # resp.key_signing_key.digest_algorithm_type #=> Integer
1684
+ # resp.key_signing_key.key_tag #=> Integer
1685
+ # resp.key_signing_key.digest_value #=> String
1686
+ # resp.key_signing_key.public_key #=> String
1687
+ # resp.key_signing_key.ds_record #=> String
1688
+ # resp.key_signing_key.dnskey_record #=> String
1689
+ # resp.key_signing_key.status #=> String
1690
+ # resp.key_signing_key.status_message #=> String
1691
+ # resp.key_signing_key.created_date #=> Time
1692
+ # resp.key_signing_key.last_modified_date #=> Time
1693
+ # resp.location #=> String
1694
+ #
1695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateKeySigningKey AWS API Documentation
1696
+ #
1697
+ # @overload create_key_signing_key(params = {})
1698
+ # @param [Hash] params ({})
1699
+ def create_key_signing_key(params = {}, options = {})
1700
+ req = build_request(:create_key_signing_key, params)
1701
+ req.send_request(options)
1702
+ end
1703
+
1556
1704
  # Creates a configuration for DNS query logging. After you create a
1557
1705
  # query logging configuration, Amazon Route 53 begins to publish log
1558
1706
  # data to an Amazon CloudWatch Logs log group.
@@ -1862,7 +2010,7 @@ module Aws::Route53
1862
2010
  # resp.traffic_policy.id #=> String
1863
2011
  # resp.traffic_policy.version #=> Integer
1864
2012
  # 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"
2013
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
1866
2014
  # resp.traffic_policy.document #=> String
1867
2015
  # resp.traffic_policy.comment #=> String
1868
2016
  # resp.location #=> String
@@ -1932,7 +2080,7 @@ module Aws::Route53
1932
2080
  # resp.traffic_policy_instance.message #=> String
1933
2081
  # resp.traffic_policy_instance.traffic_policy_id #=> String
1934
2082
  # 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"
2083
+ # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
1936
2084
  # resp.location #=> String
1937
2085
  #
1938
2086
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateTrafficPolicyInstance AWS API Documentation
@@ -1989,7 +2137,7 @@ module Aws::Route53
1989
2137
  # resp.traffic_policy.id #=> String
1990
2138
  # resp.traffic_policy.version #=> Integer
1991
2139
  # 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"
2140
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
1993
2141
  # resp.traffic_policy.document #=> String
1994
2142
  # resp.traffic_policy.comment #=> String
1995
2143
  # resp.location #=> String
@@ -2055,6 +2203,43 @@ module Aws::Route53
2055
2203
  req.send_request(options)
2056
2204
  end
2057
2205
 
2206
+ # Deactivates a key signing key (KSK) so that it will not be used for
2207
+ # signing by DNSSEC. This operation changes the KSK status to
2208
+ # `INACTIVE`.
2209
+ #
2210
+ # @option params [required, String] :hosted_zone_id
2211
+ # A unique string used to identify a hosted zone.
2212
+ #
2213
+ # @option params [required, String] :name
2214
+ # An alphanumeric string used to identify a key signing key (KSK).
2215
+ #
2216
+ # @return [Types::DeactivateKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2217
+ #
2218
+ # * {Types::DeactivateKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
2219
+ #
2220
+ # @example Request syntax with placeholder values
2221
+ #
2222
+ # resp = client.deactivate_key_signing_key({
2223
+ # hosted_zone_id: "ResourceId", # required
2224
+ # name: "SigningKeyName", # required
2225
+ # })
2226
+ #
2227
+ # @example Response structure
2228
+ #
2229
+ # resp.change_info.id #=> String
2230
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2231
+ # resp.change_info.submitted_at #=> Time
2232
+ # resp.change_info.comment #=> String
2233
+ #
2234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeactivateKeySigningKey AWS API Documentation
2235
+ #
2236
+ # @overload deactivate_key_signing_key(params = {})
2237
+ # @param [Hash] params ({})
2238
+ def deactivate_key_signing_key(params = {}, options = {})
2239
+ req = build_request(:deactivate_key_signing_key, params)
2240
+ req.send_request(options)
2241
+ end
2242
+
2058
2243
  # Deletes a health check.
2059
2244
  #
2060
2245
  # Amazon Route 53 does not prevent you from deleting a health check even
@@ -2182,6 +2367,43 @@ module Aws::Route53
2182
2367
  req.send_request(options)
2183
2368
  end
2184
2369
 
2370
+ # Deletes a key signing key (KSK). Before you can delete a KSK, you must
2371
+ # deactivate it. The KSK must be deactived before you can delete it
2372
+ # regardless of whether the hosted zone is enabled for DNSSEC signing.
2373
+ #
2374
+ # @option params [required, String] :hosted_zone_id
2375
+ # A unique string used to identify a hosted zone.
2376
+ #
2377
+ # @option params [required, String] :name
2378
+ # An alphanumeric string used to identify a key signing key (KSK).
2379
+ #
2380
+ # @return [Types::DeleteKeySigningKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2381
+ #
2382
+ # * {Types::DeleteKeySigningKeyResponse#change_info #change_info} => Types::ChangeInfo
2383
+ #
2384
+ # @example Request syntax with placeholder values
2385
+ #
2386
+ # resp = client.delete_key_signing_key({
2387
+ # hosted_zone_id: "ResourceId", # required
2388
+ # name: "SigningKeyName", # required
2389
+ # })
2390
+ #
2391
+ # @example Response structure
2392
+ #
2393
+ # resp.change_info.id #=> String
2394
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2395
+ # resp.change_info.submitted_at #=> Time
2396
+ # resp.change_info.comment #=> String
2397
+ #
2398
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteKeySigningKey AWS API Documentation
2399
+ #
2400
+ # @overload delete_key_signing_key(params = {})
2401
+ # @param [Hash] params ({})
2402
+ def delete_key_signing_key(params = {}, options = {})
2403
+ req = build_request(:delete_key_signing_key, params)
2404
+ req.send_request(options)
2405
+ end
2406
+
2185
2407
  # Deletes a configuration for DNS query logging. If you delete a
2186
2408
  # configuration, Amazon Route 53 stops sending query logs to CloudWatch
2187
2409
  # Logs. Route 53 doesn't delete any logs that are already in CloudWatch
@@ -2367,6 +2589,39 @@ module Aws::Route53
2367
2589
  req.send_request(options)
2368
2590
  end
2369
2591
 
2592
+ # Disables DNSSEC signing in a specific hosted zone. This action does
2593
+ # not deactivate any key signing keys (KSKs) that are active in the
2594
+ # hosted zone.
2595
+ #
2596
+ # @option params [required, String] :hosted_zone_id
2597
+ # A unique string used to identify a hosted zone.
2598
+ #
2599
+ # @return [Types::DisableHostedZoneDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2600
+ #
2601
+ # * {Types::DisableHostedZoneDNSSECResponse#change_info #change_info} => Types::ChangeInfo
2602
+ #
2603
+ # @example Request syntax with placeholder values
2604
+ #
2605
+ # resp = client.disable_hosted_zone_dnssec({
2606
+ # hosted_zone_id: "ResourceId", # required
2607
+ # })
2608
+ #
2609
+ # @example Response structure
2610
+ #
2611
+ # resp.change_info.id #=> String
2612
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2613
+ # resp.change_info.submitted_at #=> Time
2614
+ # resp.change_info.comment #=> String
2615
+ #
2616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisableHostedZoneDNSSEC AWS API Documentation
2617
+ #
2618
+ # @overload disable_hosted_zone_dnssec(params = {})
2619
+ # @param [Hash] params ({})
2620
+ def disable_hosted_zone_dnssec(params = {}, options = {})
2621
+ req = build_request(:disable_hosted_zone_dnssec, params)
2622
+ req.send_request(options)
2623
+ end
2624
+
2370
2625
  # Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an
2371
2626
  # Amazon Route 53 private hosted zone. Note the following:
2372
2627
  #
@@ -2437,6 +2692,37 @@ module Aws::Route53
2437
2692
  req.send_request(options)
2438
2693
  end
2439
2694
 
2695
+ # Enables DNSSEC signing in a specific hosted zone.
2696
+ #
2697
+ # @option params [required, String] :hosted_zone_id
2698
+ # A unique string used to identify a hosted zone.
2699
+ #
2700
+ # @return [Types::EnableHostedZoneDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2701
+ #
2702
+ # * {Types::EnableHostedZoneDNSSECResponse#change_info #change_info} => Types::ChangeInfo
2703
+ #
2704
+ # @example Request syntax with placeholder values
2705
+ #
2706
+ # resp = client.enable_hosted_zone_dnssec({
2707
+ # hosted_zone_id: "ResourceId", # required
2708
+ # })
2709
+ #
2710
+ # @example Response structure
2711
+ #
2712
+ # resp.change_info.id #=> String
2713
+ # resp.change_info.status #=> String, one of "PENDING", "INSYNC"
2714
+ # resp.change_info.submitted_at #=> Time
2715
+ # resp.change_info.comment #=> String
2716
+ #
2717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/EnableHostedZoneDNSSEC AWS API Documentation
2718
+ #
2719
+ # @overload enable_hosted_zone_dnssec(params = {})
2720
+ # @param [Hash] params ({})
2721
+ def enable_hosted_zone_dnssec(params = {}, options = {})
2722
+ req = build_request(:enable_hosted_zone_dnssec, params)
2723
+ req.send_request(options)
2724
+ end
2725
+
2440
2726
  # Gets the specified limit for the current account, for example, the
2441
2727
  # maximum number of health checks that you can create using the account.
2442
2728
  #
@@ -2576,6 +2862,55 @@ module Aws::Route53
2576
2862
  req.send_request(options)
2577
2863
  end
2578
2864
 
2865
+ # Returns information about DNSSEC for a specific hosted zone, including
2866
+ # the key signing keys (KSKs) and zone signing keys (ZSKs) in the hosted
2867
+ # zone.
2868
+ #
2869
+ # @option params [required, String] :hosted_zone_id
2870
+ # A unique string used to identify a hosted zone.
2871
+ #
2872
+ # @return [Types::GetDNSSECResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2873
+ #
2874
+ # * {Types::GetDNSSECResponse#status #status} => Types::DNSSECStatus
2875
+ # * {Types::GetDNSSECResponse#key_signing_keys #key_signing_keys} => Array<Types::KeySigningKey>
2876
+ #
2877
+ # @example Request syntax with placeholder values
2878
+ #
2879
+ # resp = client.get_dnssec({
2880
+ # hosted_zone_id: "ResourceId", # required
2881
+ # })
2882
+ #
2883
+ # @example Response structure
2884
+ #
2885
+ # resp.status.serve_signature #=> String
2886
+ # resp.status.status_message #=> String
2887
+ # resp.key_signing_keys #=> Array
2888
+ # resp.key_signing_keys[0].name #=> String
2889
+ # resp.key_signing_keys[0].kms_arn #=> String
2890
+ # resp.key_signing_keys[0].flag #=> Integer
2891
+ # resp.key_signing_keys[0].signing_algorithm_mnemonic #=> String
2892
+ # resp.key_signing_keys[0].signing_algorithm_type #=> Integer
2893
+ # resp.key_signing_keys[0].digest_algorithm_mnemonic #=> String
2894
+ # resp.key_signing_keys[0].digest_algorithm_type #=> Integer
2895
+ # resp.key_signing_keys[0].key_tag #=> Integer
2896
+ # resp.key_signing_keys[0].digest_value #=> String
2897
+ # resp.key_signing_keys[0].public_key #=> String
2898
+ # resp.key_signing_keys[0].ds_record #=> String
2899
+ # resp.key_signing_keys[0].dnskey_record #=> String
2900
+ # resp.key_signing_keys[0].status #=> String
2901
+ # resp.key_signing_keys[0].status_message #=> String
2902
+ # resp.key_signing_keys[0].created_date #=> Time
2903
+ # resp.key_signing_keys[0].last_modified_date #=> Time
2904
+ #
2905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetDNSSEC AWS API Documentation
2906
+ #
2907
+ # @overload get_dnssec(params = {})
2908
+ # @param [Hash] params ({})
2909
+ def get_dnssec(params = {}, options = {})
2910
+ req = build_request(:get_dnssec, params)
2911
+ req.send_request(options)
2912
+ end
2913
+
2579
2914
  # Gets information about whether a specified geographic location is
2580
2915
  # supported for Amazon Route 53 geolocation resource record sets.
2581
2916
  #
@@ -3130,7 +3465,7 @@ module Aws::Route53
3130
3465
  # resp.traffic_policy.id #=> String
3131
3466
  # resp.traffic_policy.version #=> Integer
3132
3467
  # 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"
3468
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3134
3469
  # resp.traffic_policy.document #=> String
3135
3470
  # resp.traffic_policy.comment #=> String
3136
3471
  #
@@ -3182,7 +3517,7 @@ module Aws::Route53
3182
3517
  # resp.traffic_policy_instance.message #=> String
3183
3518
  # resp.traffic_policy_instance.traffic_policy_id #=> String
3184
3519
  # 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"
3520
+ # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3186
3521
  #
3187
3522
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstance AWS API Documentation
3188
3523
  #
@@ -3900,7 +4235,7 @@ module Aws::Route53
3900
4235
  # resp = client.list_resource_record_sets({
3901
4236
  # hosted_zone_id: "ResourceId", # required
3902
4237
  # start_record_name: "DNSName",
3903
- # start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
4238
+ # start_record_type: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
3904
4239
  # start_record_identifier: "ResourceRecordSetIdentifier",
3905
4240
  # max_items: 1,
3906
4241
  # })
@@ -3909,7 +4244,7 @@ module Aws::Route53
3909
4244
  #
3910
4245
  # resp.resource_record_sets #=> Array
3911
4246
  # 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"
4247
+ # resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3913
4248
  # resp.resource_record_sets[0].set_identifier #=> String
3914
4249
  # resp.resource_record_sets[0].weight #=> Integer
3915
4250
  # 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 +4263,7 @@ module Aws::Route53
3928
4263
  # resp.resource_record_sets[0].traffic_policy_instance_id #=> String
3929
4264
  # resp.is_truncated #=> Boolean
3930
4265
  # 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"
4266
+ # resp.next_record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
3932
4267
  # resp.next_record_identifier #=> String
3933
4268
  # resp.max_items #=> Integer
3934
4269
  #
@@ -4145,7 +4480,7 @@ module Aws::Route53
4145
4480
  # resp.traffic_policy_summaries #=> Array
4146
4481
  # resp.traffic_policy_summaries[0].id #=> String
4147
4482
  # 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"
4483
+ # resp.traffic_policy_summaries[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4149
4484
  # resp.traffic_policy_summaries[0].latest_version #=> Integer
4150
4485
  # resp.traffic_policy_summaries[0].traffic_policy_count #=> Integer
4151
4486
  # resp.is_truncated #=> Boolean
@@ -4234,7 +4569,7 @@ module Aws::Route53
4234
4569
  # resp = client.list_traffic_policy_instances({
4235
4570
  # hosted_zone_id_marker: "ResourceId",
4236
4571
  # 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
4572
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4238
4573
  # max_items: 1,
4239
4574
  # })
4240
4575
  #
@@ -4249,10 +4584,10 @@ module Aws::Route53
4249
4584
  # resp.traffic_policy_instances[0].message #=> String
4250
4585
  # resp.traffic_policy_instances[0].traffic_policy_id #=> String
4251
4586
  # 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"
4587
+ # 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
4588
  # resp.hosted_zone_id_marker #=> String
4254
4589
  # 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"
4590
+ # resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4256
4591
  # resp.is_truncated #=> Boolean
4257
4592
  # resp.max_items #=> Integer
4258
4593
  #
@@ -4331,7 +4666,7 @@ module Aws::Route53
4331
4666
  # resp = client.list_traffic_policy_instances_by_hosted_zone({
4332
4667
  # hosted_zone_id: "ResourceId", # required
4333
4668
  # 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
4669
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4335
4670
  # max_items: 1,
4336
4671
  # })
4337
4672
  #
@@ -4346,9 +4681,9 @@ module Aws::Route53
4346
4681
  # resp.traffic_policy_instances[0].message #=> String
4347
4682
  # resp.traffic_policy_instances[0].traffic_policy_id #=> String
4348
4683
  # 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"
4684
+ # 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
4685
  # 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"
4686
+ # resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4352
4687
  # resp.is_truncated #=> Boolean
4353
4688
  # resp.max_items #=> Integer
4354
4689
  #
@@ -4453,7 +4788,7 @@ module Aws::Route53
4453
4788
  # traffic_policy_version: 1, # required
4454
4789
  # hosted_zone_id_marker: "ResourceId",
4455
4790
  # 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
4791
+ # traffic_policy_instance_type_marker: "SOA", # accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4457
4792
  # max_items: 1,
4458
4793
  # })
4459
4794
  #
@@ -4468,10 +4803,10 @@ module Aws::Route53
4468
4803
  # resp.traffic_policy_instances[0].message #=> String
4469
4804
  # resp.traffic_policy_instances[0].traffic_policy_id #=> String
4470
4805
  # 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"
4806
+ # 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
4807
  # resp.hosted_zone_id_marker #=> String
4473
4808
  # 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"
4809
+ # resp.traffic_policy_instance_type_marker #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4475
4810
  # resp.is_truncated #=> Boolean
4476
4811
  # resp.max_items #=> Integer
4477
4812
  #
@@ -4534,7 +4869,7 @@ module Aws::Route53
4534
4869
  # resp.traffic_policies[0].id #=> String
4535
4870
  # resp.traffic_policies[0].version #=> Integer
4536
4871
  # 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"
4872
+ # resp.traffic_policies[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4538
4873
  # resp.traffic_policies[0].document #=> String
4539
4874
  # resp.traffic_policies[0].comment #=> String
4540
4875
  # resp.is_truncated #=> Boolean
@@ -4661,7 +4996,7 @@ module Aws::Route53
4661
4996
  # resp = client.test_dns_answer({
4662
4997
  # hosted_zone_id: "ResourceId", # required
4663
4998
  # record_name: "DNSName", # required
4664
- # record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
4999
+ # record_type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
4665
5000
  # resolver_ip: "IPAddress",
4666
5001
  # edns0_client_subnet_ip: "IPAddress",
4667
5002
  # edns0_client_subnet_mask: "SubnetMask",
@@ -4671,7 +5006,7 @@ module Aws::Route53
4671
5006
  #
4672
5007
  # resp.nameserver #=> String
4673
5008
  # resp.record_name #=> String
4674
- # resp.record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
5009
+ # resp.record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4675
5010
  # resp.record_data #=> Array
4676
5011
  # resp.record_data[0] #=> String
4677
5012
  # resp.response_code #=> String
@@ -5167,7 +5502,7 @@ module Aws::Route53
5167
5502
  # resp.traffic_policy.id #=> String
5168
5503
  # resp.traffic_policy.version #=> Integer
5169
5504
  # 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"
5505
+ # resp.traffic_policy.type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
5171
5506
  # resp.traffic_policy.document #=> String
5172
5507
  # resp.traffic_policy.comment #=> String
5173
5508
  #
@@ -5240,7 +5575,7 @@ module Aws::Route53
5240
5575
  # resp.traffic_policy_instance.message #=> String
5241
5576
  # resp.traffic_policy_instance.traffic_policy_id #=> String
5242
5577
  # 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"
5578
+ # resp.traffic_policy_instance.traffic_policy_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
5244
5579
  #
5245
5580
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyInstance AWS API Documentation
5246
5581
  #
@@ -5264,7 +5599,7 @@ module Aws::Route53
5264
5599
  params: params,
5265
5600
  config: config)
5266
5601
  context[:gem_name] = 'aws-sdk-route53'
5267
- context[:gem_version] = '1.44.0'
5602
+ context[:gem_version] = '1.45.0'
5268
5603
  Seahorse::Client::Request.new(handlers, context)
5269
5604
  end
5270
5605