aws-sdk-route53resolver 1.39.0 → 1.41.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: a2efb60a4882aec71ddcb1dd9cb4b94aafaf22731598ab08bc080e9deb5ff649
4
- data.tar.gz: 2712e6998b93b5a6af706d6d8d2f851d8d4a000ed7902eac681b1bf4e746b43c
3
+ metadata.gz: 818387d1ed0ff9f03da1be7733a5693fa9f8d040fe96d6605fdfe6e03e5ba515
4
+ data.tar.gz: a98e56baeb784c493d3cd50909a35c56473ac56a2ccc2f1c2eea9cb9414c8619
5
5
  SHA512:
6
- metadata.gz: b26891b385ce14296d3b9d4c956a314c61bb2edde28205e15b6f36fdb3cbcbb19d37985443b3047979a0c84075fa7f2644fb7d0d15862d48498fbfaaa7393054
7
- data.tar.gz: aefabbcea11f486202399efa0b72cc8b6391b55c41c8e7e03b36f4b689f56b23f88afd10676d3f73777ffdc697c8c17096096e175fa19303628f96342a621f2f
6
+ metadata.gz: 53d2e31a1928fe0de3f4b4ade0d1666d7622104f1a79fc6f7e997ee2d2fb41b5f48997bacef04b96f66779d95a3bc1ba0b87de8e4dc0ccb2167d924c48f456f4
7
+ data.tar.gz: edde098da5c9ace055f337215cf03f0372fb10ebd35e3f04c51c01dfe1c45d26f8a341e3d75984e927986d82d2d76bc97d474952d66b84d4fe267c9690d315dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2023-05-11)
5
+ ------------------
6
+
7
+ * Feature - Update FIPS endpoints for GovCloud (US) regions in SDK.
8
+
9
+ 1.40.0 (2023-03-08)
10
+ ------------------
11
+
12
+ * Feature - Add dual-stack and IPv6 support for Route 53 Resolver Endpoint,Add IPv6 target IP in Route 53 Resolver Forwarding Rule
13
+
4
14
  1.39.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -502,6 +502,7 @@ module Aws::Route53Resolver
502
502
  # ip_id: "ResourceId",
503
503
  # subnet_id: "SubnetId",
504
504
  # ip: "Ip",
505
+ # ipv_6: "Ipv6",
505
506
  # },
506
507
  # })
507
508
  #
@@ -520,6 +521,7 @@ module Aws::Route53Resolver
520
521
  # resp.resolver_endpoint.status_message #=> String
521
522
  # resp.resolver_endpoint.creation_time #=> String
522
523
  # resp.resolver_endpoint.modification_time #=> String
524
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
523
525
  #
524
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/AssociateResolverEndpointIpAddress AWS API Documentation
525
527
  #
@@ -920,11 +922,11 @@ module Aws::Route53Resolver
920
922
  # @option params [required, String] :direction
921
923
  # Specify the applicable value:
922
924
  #
923
- # * `INBOUND`\: Resolver forwards DNS queries to the DNS service for a
925
+ # * `INBOUND`: Resolver forwards DNS queries to the DNS service for a
924
926
  # VPC from your network
925
927
  #
926
- # * `OUTBOUND`\: Resolver forwards DNS queries from the DNS service for
927
- # a VPC to your network
928
+ # * `OUTBOUND`: Resolver forwards DNS queries from the DNS service for a
929
+ # VPC to your network
928
930
  #
929
931
  # @option params [required, Array<Types::IpAddressRequest>] :ip_addresses
930
932
  # The subnets and IP addresses in your VPC that DNS queries originate
@@ -935,6 +937,11 @@ module Aws::Route53Resolver
935
937
  # A list of the tag keys and values that you want to associate with the
936
938
  # endpoint.
937
939
  #
940
+ # @option params [String] :resolver_endpoint_type
941
+ # For the endpoint type you can choose either IPv4, IPv6. or dual-stack.
942
+ # A dual-stack endpoint means that it will resolve via both IPv4 and
943
+ # IPv6. This endpoint type is applied to all IP addresses.
944
+ #
938
945
  # @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
939
946
  #
940
947
  # * {Types::CreateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
@@ -950,6 +957,7 @@ module Aws::Route53Resolver
950
957
  # {
951
958
  # subnet_id: "SubnetId", # required
952
959
  # ip: "Ip",
960
+ # ipv_6: "Ipv6",
953
961
  # },
954
962
  # ],
955
963
  # tags: [
@@ -958,6 +966,7 @@ module Aws::Route53Resolver
958
966
  # value: "TagValue", # required
959
967
  # },
960
968
  # ],
969
+ # resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
961
970
  # })
962
971
  #
963
972
  # @example Response structure
@@ -975,6 +984,7 @@ module Aws::Route53Resolver
975
984
  # resp.resolver_endpoint.status_message #=> String
976
985
  # resp.resolver_endpoint.creation_time #=> String
977
986
  # resp.resolver_endpoint.modification_time #=> String
987
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
978
988
  #
979
989
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
980
990
  #
@@ -1014,7 +1024,7 @@ module Aws::Route53Resolver
1014
1024
  # Kinesis Data Firehose delivery stream. Examples of valid values
1015
1025
  # include the following:
1016
1026
  #
1017
- # * **S3 bucket**\:
1027
+ # * **S3 bucket**:
1018
1028
  #
1019
1029
  # `arn:aws:s3:::examplebucket`
1020
1030
  #
@@ -1022,11 +1032,11 @@ module Aws::Route53Resolver
1022
1032
  #
1023
1033
  # `arn:aws:s3:::examplebucket/development/`
1024
1034
  #
1025
- # * **CloudWatch Logs log group**\:
1035
+ # * **CloudWatch Logs log group**:
1026
1036
  #
1027
1037
  # `arn:aws:logs:us-west-1:123456789012:log-group:/mystack-testgroup-12ABC1AB12A1:*`
1028
1038
  #
1029
- # * **Kinesis Data Firehose delivery stream**\:
1039
+ # * **Kinesis Data Firehose delivery stream**:
1030
1040
  #
1031
1041
  # `arn:aws:kinesis:us-east-2:0123456789:stream/my_stream_name`
1032
1042
  #
@@ -1149,8 +1159,9 @@ module Aws::Route53Resolver
1149
1159
  # domain_name: "DomainName", # required
1150
1160
  # target_ips: [
1151
1161
  # {
1152
- # ip: "Ip", # required
1162
+ # ip: "Ip",
1153
1163
  # port: 1,
1164
+ # ipv_6: "Ipv6",
1154
1165
  # },
1155
1166
  # ],
1156
1167
  # resolver_endpoint_id: "ResourceId",
@@ -1175,6 +1186,7 @@ module Aws::Route53Resolver
1175
1186
  # resp.resolver_rule.target_ips #=> Array
1176
1187
  # resp.resolver_rule.target_ips[0].ip #=> String
1177
1188
  # resp.resolver_rule.target_ips[0].port #=> Integer
1189
+ # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1178
1190
  # resp.resolver_rule.resolver_endpoint_id #=> String
1179
1191
  # resp.resolver_rule.owner_id #=> String
1180
1192
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1314,10 +1326,10 @@ module Aws::Route53Resolver
1314
1326
  # endpoint depends on whether it's an inbound or an outbound Resolver
1315
1327
  # endpoint:
1316
1328
  #
1317
- # * **Inbound**\: DNS queries from your network are no longer routed to
1329
+ # * **Inbound**: DNS queries from your network are no longer routed to
1318
1330
  # the DNS service for the specified VPC.
1319
1331
  #
1320
- # * **Outbound**\: DNS queries from a VPC are no longer routed to your
1332
+ # * **Outbound**: DNS queries from a VPC are no longer routed to your
1321
1333
  # network.
1322
1334
  #
1323
1335
  # @option params [required, String] :resolver_endpoint_id
@@ -1348,6 +1360,7 @@ module Aws::Route53Resolver
1348
1360
  # resp.resolver_endpoint.status_message #=> String
1349
1361
  # resp.resolver_endpoint.creation_time #=> String
1350
1362
  # resp.resolver_endpoint.modification_time #=> String
1363
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1351
1364
  #
1352
1365
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
1353
1366
  #
@@ -1451,6 +1464,7 @@ module Aws::Route53Resolver
1451
1464
  # resp.resolver_rule.target_ips #=> Array
1452
1465
  # resp.resolver_rule.target_ips[0].ip #=> String
1453
1466
  # resp.resolver_rule.target_ips[0].port #=> Integer
1467
+ # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1454
1468
  # resp.resolver_rule.resolver_endpoint_id #=> String
1455
1469
  # resp.resolver_rule.owner_id #=> String
1456
1470
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1537,6 +1551,7 @@ module Aws::Route53Resolver
1537
1551
  # ip_id: "ResourceId",
1538
1552
  # subnet_id: "SubnetId",
1539
1553
  # ip: "Ip",
1554
+ # ipv_6: "Ipv6",
1540
1555
  # },
1541
1556
  # })
1542
1557
  #
@@ -1555,6 +1570,7 @@ module Aws::Route53Resolver
1555
1570
  # resp.resolver_endpoint.status_message #=> String
1556
1571
  # resp.resolver_endpoint.creation_time #=> String
1557
1572
  # resp.resolver_endpoint.modification_time #=> String
1573
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1558
1574
  #
1559
1575
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
1560
1576
  #
@@ -1684,7 +1700,7 @@ module Aws::Route53Resolver
1684
1700
  # resp.firewall_config.id #=> String
1685
1701
  # resp.firewall_config.resource_id #=> String
1686
1702
  # resp.firewall_config.owner_id #=> String
1687
- # resp.firewall_config.firewall_fail_open #=> String, one of "ENABLED", "DISABLED"
1703
+ # resp.firewall_config.firewall_fail_open #=> String, one of "ENABLED", "DISABLED", "USE_LOCAL_RESOURCE_SETTING"
1688
1704
  #
1689
1705
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetFirewallConfig AWS API Documentation
1690
1706
  #
@@ -1843,7 +1859,7 @@ module Aws::Route53Resolver
1843
1859
  req.send_request(options)
1844
1860
  end
1845
1861
 
1846
- # Retrieves the behavior configuration of Route 53 Resolver behavior for
1862
+ # Retrieves the behavior configuration of Route 53 Resolver behavior for
1847
1863
  # a single VPC from Amazon Virtual Private Cloud.
1848
1864
  #
1849
1865
  # @option params [required, String] :resource_id
@@ -1864,7 +1880,7 @@ module Aws::Route53Resolver
1864
1880
  # resp.resolver_config.id #=> String
1865
1881
  # resp.resolver_config.resource_id #=> String
1866
1882
  # resp.resolver_config.owner_id #=> String
1867
- # resp.resolver_config.autodefined_reverse #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED"
1883
+ # resp.resolver_config.autodefined_reverse #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING", "USE_LOCAL_RESOURCE_SETTING"
1868
1884
  #
1869
1885
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverConfig AWS API Documentation
1870
1886
  #
@@ -1896,7 +1912,7 @@ module Aws::Route53Resolver
1896
1912
  # resp.resolver_dnssec_config.id #=> String
1897
1913
  # resp.resolver_dnssec_config.owner_id #=> String
1898
1914
  # resp.resolver_dnssec_config.resource_id #=> String
1899
- # resp.resolver_dnssec_config.validation_status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED"
1915
+ # resp.resolver_dnssec_config.validation_status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING", "USE_LOCAL_RESOURCE_SETTING"
1900
1916
  #
1901
1917
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverDnssecConfig AWS API Documentation
1902
1918
  #
@@ -1940,6 +1956,7 @@ module Aws::Route53Resolver
1940
1956
  # resp.resolver_endpoint.status_message #=> String
1941
1957
  # resp.resolver_endpoint.creation_time #=> String
1942
1958
  # resp.resolver_endpoint.modification_time #=> String
1959
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1943
1960
  #
1944
1961
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
1945
1962
  #
@@ -2089,6 +2106,7 @@ module Aws::Route53Resolver
2089
2106
  # resp.resolver_rule.target_ips #=> Array
2090
2107
  # resp.resolver_rule.target_ips[0].ip #=> String
2091
2108
  # resp.resolver_rule.target_ips[0].port #=> Integer
2109
+ # resp.resolver_rule.target_ips[0].ipv_6 #=> String
2092
2110
  # resp.resolver_rule.resolver_endpoint_id #=> String
2093
2111
  # resp.resolver_rule.owner_id #=> String
2094
2112
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -2284,7 +2302,7 @@ module Aws::Route53Resolver
2284
2302
  # resp.firewall_configs[0].id #=> String
2285
2303
  # resp.firewall_configs[0].resource_id #=> String
2286
2304
  # resp.firewall_configs[0].owner_id #=> String
2287
- # resp.firewall_configs[0].firewall_fail_open #=> String, one of "ENABLED", "DISABLED"
2305
+ # resp.firewall_configs[0].firewall_fail_open #=> String, one of "ENABLED", "DISABLED", "USE_LOCAL_RESOURCE_SETTING"
2288
2306
  #
2289
2307
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListFirewallConfigs AWS API Documentation
2290
2308
  #
@@ -2652,7 +2670,7 @@ module Aws::Route53Resolver
2652
2670
  req.send_request(options)
2653
2671
  end
2654
2672
 
2655
- # Retrieves the Resolver configurations that you have defined. Route 53
2673
+ # Retrieves the Resolver configurations that you have defined. Route 53
2656
2674
  # Resolver uses the configurations to manage DNS resolution behavior for
2657
2675
  # your VPCs.
2658
2676
  #
@@ -2694,7 +2712,7 @@ module Aws::Route53Resolver
2694
2712
  # resp.resolver_configs[0].id #=> String
2695
2713
  # resp.resolver_configs[0].resource_id #=> String
2696
2714
  # resp.resolver_configs[0].owner_id #=> String
2697
- # resp.resolver_configs[0].autodefined_reverse #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED"
2715
+ # resp.resolver_configs[0].autodefined_reverse #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING", "USE_LOCAL_RESOURCE_SETTING"
2698
2716
  #
2699
2717
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverConfigs AWS API Documentation
2700
2718
  #
@@ -2709,7 +2727,7 @@ module Aws::Route53Resolver
2709
2727
  # with the current Amazon Web Services account.
2710
2728
  #
2711
2729
  # @option params [Integer] :max_results
2712
- # *Optional*\: An integer that specifies the maximum number of DNSSEC
2730
+ # *Optional*: An integer that specifies the maximum number of DNSSEC
2713
2731
  # configuration results that you want Amazon Route 53 to return. If you
2714
2732
  # don't specify a value for `MaxResults`, Route 53 returns up to 100
2715
2733
  # configuration per page.
@@ -2755,7 +2773,7 @@ module Aws::Route53Resolver
2755
2773
  # resp.resolver_dnssec_configs[0].id #=> String
2756
2774
  # resp.resolver_dnssec_configs[0].owner_id #=> String
2757
2775
  # resp.resolver_dnssec_configs[0].resource_id #=> String
2758
- # resp.resolver_dnssec_configs[0].validation_status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED"
2776
+ # resp.resolver_dnssec_configs[0].validation_status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING", "USE_LOCAL_RESOURCE_SETTING"
2759
2777
  #
2760
2778
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverDnssecConfigs AWS API Documentation
2761
2779
  #
@@ -2810,7 +2828,8 @@ module Aws::Route53Resolver
2810
2828
  # resp.ip_addresses[0].ip_id #=> String
2811
2829
  # resp.ip_addresses[0].subnet_id #=> String
2812
2830
  # resp.ip_addresses[0].ip #=> String
2813
- # resp.ip_addresses[0].status #=> String, one of "CREATING", "FAILED_CREATION", "ATTACHING", "ATTACHED", "REMAP_DETACHING", "REMAP_ATTACHING", "DETACHING", "FAILED_RESOURCE_GONE", "DELETING", "DELETE_FAILED_FAS_EXPIRED"
2831
+ # resp.ip_addresses[0].ipv_6 #=> String
2832
+ # resp.ip_addresses[0].status #=> String, one of "CREATING", "FAILED_CREATION", "ATTACHING", "ATTACHED", "REMAP_DETACHING", "REMAP_ATTACHING", "DETACHING", "FAILED_RESOURCE_GONE", "DELETING", "DELETE_FAILED_FAS_EXPIRED", "UPDATING"
2814
2833
  # resp.ip_addresses[0].status_message #=> String
2815
2834
  # resp.ip_addresses[0].creation_time #=> String
2816
2835
  # resp.ip_addresses[0].modification_time #=> String
@@ -2890,6 +2909,7 @@ module Aws::Route53Resolver
2890
2909
  # resp.resolver_endpoints[0].status_message #=> String
2891
2910
  # resp.resolver_endpoints[0].creation_time #=> String
2892
2911
  # resp.resolver_endpoints[0].modification_time #=> String
2912
+ # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2893
2913
  #
2894
2914
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
2895
2915
  #
@@ -2943,41 +2963,41 @@ module Aws::Route53Resolver
2943
2963
  #
2944
2964
  # Valid values include the following elements:
2945
2965
  #
2946
- # * `CreationTime`\: The ID of the query logging association.
2966
+ # * `CreationTime`: The ID of the query logging association.
2947
2967
  #
2948
- # * `Error`\: If the value of `Status` is `FAILED`, the value of `Error`
2968
+ # * `Error`: If the value of `Status` is `FAILED`, the value of `Error`
2949
2969
  # indicates the cause:
2950
2970
  #
2951
- # * `DESTINATION_NOT_FOUND`\: The specified destination (for example,
2971
+ # * `DESTINATION_NOT_FOUND`: The specified destination (for example,
2952
2972
  # an Amazon S3 bucket) was deleted.
2953
2973
  #
2954
- # * `ACCESS_DENIED`\: Permissions don't allow sending logs to the
2974
+ # * `ACCESS_DENIED`: Permissions don't allow sending logs to the
2955
2975
  # destination.
2956
2976
  #
2957
2977
  # If `Status` is a value other than `FAILED`, `ERROR` is null.
2958
2978
  #
2959
- # * `Id`\: The ID of the query logging association
2979
+ # * `Id`: The ID of the query logging association
2960
2980
  #
2961
- # * `ResolverQueryLogConfigId`\: The ID of the query logging
2981
+ # * `ResolverQueryLogConfigId`: The ID of the query logging
2962
2982
  # configuration
2963
2983
  #
2964
- # * `ResourceId`\: The ID of the VPC that is associated with the query
2984
+ # * `ResourceId`: The ID of the VPC that is associated with the query
2965
2985
  # logging configuration
2966
2986
  #
2967
- # * `Status`\: The current status of the configuration. Valid values
2987
+ # * `Status`: The current status of the configuration. Valid values
2968
2988
  # include the following:
2969
2989
  #
2970
- # * `CREATING`\: Resolver is creating an association between an Amazon
2990
+ # * `CREATING`: Resolver is creating an association between an Amazon
2971
2991
  # VPC and a query logging configuration.
2972
2992
  #
2973
- # * `CREATED`\: The association between an Amazon VPC and a query
2993
+ # * `CREATED`: The association between an Amazon VPC and a query
2974
2994
  # logging configuration was successfully created. Resolver is
2975
2995
  # logging queries that originate in the specified VPC.
2976
2996
  #
2977
- # * `DELETING`\: Resolver is deleting this query logging association.
2997
+ # * `DELETING`: Resolver is deleting this query logging association.
2978
2998
  #
2979
- # * `FAILED`\: Resolver either couldn't create or couldn't delete
2980
- # the query logging association. Here are two common causes:
2999
+ # * `FAILED`: Resolver either couldn't create or couldn't delete the
3000
+ # query logging association. Here are two common causes:
2981
3001
  #
2982
3002
  # * The specified destination (for example, an Amazon S3 bucket) was
2983
3003
  # deleted.
@@ -3083,45 +3103,44 @@ module Aws::Route53Resolver
3083
3103
  #
3084
3104
  # Valid values include the following elements:
3085
3105
  #
3086
- # * `Arn`\: The ARN of the query logging configuration
3106
+ # * `Arn`: The ARN of the query logging configuration
3087
3107
  #
3088
- # * `AssociationCount`\: The number of VPCs that are associated with the
3108
+ # * `AssociationCount`: The number of VPCs that are associated with the
3089
3109
  # specified configuration
3090
3110
  #
3091
- # * `CreationTime`\: The date and time that Resolver returned when the
3111
+ # * `CreationTime`: The date and time that Resolver returned when the
3092
3112
  # configuration was created
3093
3113
  #
3094
- # * `CreatorRequestId`\: The value that was specified for
3114
+ # * `CreatorRequestId`: The value that was specified for
3095
3115
  # `CreatorRequestId` when the configuration was created
3096
3116
  #
3097
- # * `DestinationArn`\: The location that logs are sent to
3117
+ # * `DestinationArn`: The location that logs are sent to
3098
3118
  #
3099
- # * `Id`\: The ID of the configuration
3119
+ # * `Id`: The ID of the configuration
3100
3120
  #
3101
- # * `Name`\: The name of the configuration
3121
+ # * `Name`: The name of the configuration
3102
3122
  #
3103
- # * `OwnerId`\: The Amazon Web Services account number of the account
3123
+ # * `OwnerId`: The Amazon Web Services account number of the account
3104
3124
  # that created the configuration
3105
3125
  #
3106
- # * `ShareStatus`\: Whether the configuration is shared with other
3107
- # Amazon Web Services accounts or shared with the current account by
3108
- # another Amazon Web Services account. Sharing is configured through
3109
- # Resource Access Manager (RAM).
3126
+ # * `ShareStatus`: Whether the configuration is shared with other Amazon
3127
+ # Web Services accounts or shared with the current account by another
3128
+ # Amazon Web Services account. Sharing is configured through Resource
3129
+ # Access Manager (RAM).
3110
3130
  #
3111
- # * `Status`\: The current status of the configuration. Valid values
3131
+ # * `Status`: The current status of the configuration. Valid values
3112
3132
  # include the following:
3113
3133
  #
3114
- # * `CREATING`\: Resolver is creating the query logging configuration.
3134
+ # * `CREATING`: Resolver is creating the query logging configuration.
3115
3135
  #
3116
- # * `CREATED`\: The query logging configuration was successfully
3136
+ # * `CREATED`: The query logging configuration was successfully
3117
3137
  # created. Resolver is logging queries that originate in the
3118
3138
  # specified VPC.
3119
3139
  #
3120
- # * `DELETING`\: Resolver is deleting this query logging
3121
- # configuration.
3140
+ # * `DELETING`: Resolver is deleting this query logging configuration.
3122
3141
  #
3123
- # * `FAILED`\: Resolver either couldn't create or couldn't delete
3124
- # the query logging configuration. Here are two common causes:
3142
+ # * `FAILED`: Resolver either couldn't create or couldn't delete the
3143
+ # query logging configuration. Here are two common causes:
3125
3144
  #
3126
3145
  # * The specified destination (for example, an Amazon S3 bucket) was
3127
3146
  # deleted.
@@ -3321,6 +3340,7 @@ module Aws::Route53Resolver
3321
3340
  # resp.resolver_rules[0].target_ips #=> Array
3322
3341
  # resp.resolver_rules[0].target_ips[0].ip #=> String
3323
3342
  # resp.resolver_rules[0].target_ips[0].port #=> Integer
3343
+ # resp.resolver_rules[0].target_ips[0].ipv_6 #=> String
3324
3344
  # resp.resolver_rules[0].resolver_endpoint_id #=> String
3325
3345
  # resp.resolver_rules[0].owner_id #=> String
3326
3346
  # resp.resolver_rules[0].share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -3662,7 +3682,7 @@ module Aws::Route53Resolver
3662
3682
  #
3663
3683
  # resp = client.update_firewall_config({
3664
3684
  # resource_id: "ResourceId", # required
3665
- # firewall_fail_open: "ENABLED", # required, accepts ENABLED, DISABLED
3685
+ # firewall_fail_open: "ENABLED", # required, accepts ENABLED, DISABLED, USE_LOCAL_RESOURCE_SETTING
3666
3686
  # })
3667
3687
  #
3668
3688
  # @example Response structure
@@ -3670,7 +3690,7 @@ module Aws::Route53Resolver
3670
3690
  # resp.firewall_config.id #=> String
3671
3691
  # resp.firewall_config.resource_id #=> String
3672
3692
  # resp.firewall_config.owner_id #=> String
3673
- # resp.firewall_config.firewall_fail_open #=> String, one of "ENABLED", "DISABLED"
3693
+ # resp.firewall_config.firewall_fail_open #=> String, one of "ENABLED", "DISABLED", "USE_LOCAL_RESOURCE_SETTING"
3674
3694
  #
3675
3695
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateFirewallConfig AWS API Documentation
3676
3696
  #
@@ -3703,6 +3723,8 @@ module Aws::Route53Resolver
3703
3723
  # @option params [required, Array<String>] :domains
3704
3724
  # A list of domains to use in the update operation.
3705
3725
  #
3726
+ # There is a limit of 1000 domains per request.
3727
+ #
3706
3728
  # Each domain specification in your domain list must satisfy the
3707
3729
  # following requirements:
3708
3730
  #
@@ -3911,7 +3933,7 @@ module Aws::Route53Resolver
3911
3933
  req.send_request(options)
3912
3934
  end
3913
3935
 
3914
- # Updates the behavior configuration of Route 53 Resolver behavior for a
3936
+ # Updates the behavior configuration of Route 53 Resolver behavior for a
3915
3937
  # single VPC from Amazon Virtual Private Cloud.
3916
3938
  #
3917
3939
  # @option params [required, String] :resource_id
@@ -3924,6 +3946,11 @@ module Aws::Route53Resolver
3924
3946
  # option will also affect EC2-Classic instances using ClassicLink. For
3925
3947
  # more information, see [ClassicLink][1] in the *Amazon EC2 guide*.
3926
3948
  #
3949
+ # We are retiring EC2-Classic on August 15, 2022. We recommend that you
3950
+ # migrate from EC2-Classic to a VPC. For more information, see [Migrate
3951
+ # from EC2-Classic to a VPC][2] in the *Amazon EC2 guide* and the blog
3952
+ # [EC2-Classic Networking is Retiring – Here’s How to Prepare][3].
3953
+ #
3927
3954
  # <note markdown="1"> It can take some time for the status change to be completed.
3928
3955
  #
3929
3956
  # </note>
@@ -3933,6 +3960,8 @@ module Aws::Route53Resolver
3933
3960
  #
3934
3961
  #
3935
3962
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html
3963
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
3964
+ # [3]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
3936
3965
  #
3937
3966
  # @return [Types::UpdateResolverConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3938
3967
  #
@@ -3942,7 +3971,7 @@ module Aws::Route53Resolver
3942
3971
  #
3943
3972
  # resp = client.update_resolver_config({
3944
3973
  # resource_id: "ResourceId", # required
3945
- # autodefined_reverse_flag: "ENABLE", # required, accepts ENABLE, DISABLE
3974
+ # autodefined_reverse_flag: "ENABLE", # required, accepts ENABLE, DISABLE, USE_LOCAL_RESOURCE_SETTING
3946
3975
  # })
3947
3976
  #
3948
3977
  # @example Response structure
@@ -3950,7 +3979,7 @@ module Aws::Route53Resolver
3950
3979
  # resp.resolver_config.id #=> String
3951
3980
  # resp.resolver_config.resource_id #=> String
3952
3981
  # resp.resolver_config.owner_id #=> String
3953
- # resp.resolver_config.autodefined_reverse #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED"
3982
+ # resp.resolver_config.autodefined_reverse #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING", "USE_LOCAL_RESOURCE_SETTING"
3954
3983
  #
3955
3984
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverConfig AWS API Documentation
3956
3985
  #
@@ -3981,7 +4010,7 @@ module Aws::Route53Resolver
3981
4010
  #
3982
4011
  # resp = client.update_resolver_dnssec_config({
3983
4012
  # resource_id: "ResourceId", # required
3984
- # validation: "ENABLE", # required, accepts ENABLE, DISABLE
4013
+ # validation: "ENABLE", # required, accepts ENABLE, DISABLE, USE_LOCAL_RESOURCE_SETTING
3985
4014
  # })
3986
4015
  #
3987
4016
  # @example Response structure
@@ -3989,7 +4018,7 @@ module Aws::Route53Resolver
3989
4018
  # resp.resolver_dnssec_config.id #=> String
3990
4019
  # resp.resolver_dnssec_config.owner_id #=> String
3991
4020
  # resp.resolver_dnssec_config.resource_id #=> String
3992
- # resp.resolver_dnssec_config.validation_status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED"
4021
+ # resp.resolver_dnssec_config.validation_status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING", "USE_LOCAL_RESOURCE_SETTING"
3993
4022
  #
3994
4023
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverDnssecConfig AWS API Documentation
3995
4024
  #
@@ -4000,7 +4029,9 @@ module Aws::Route53Resolver
4000
4029
  req.send_request(options)
4001
4030
  end
4002
4031
 
4003
- # Updates the name of an inbound or an outbound Resolver endpoint.
4032
+ # Updates the name, or enpoint type for an inbound or an outbound
4033
+ # Resolver endpoint. You can only update between IPV4 and DUALSTACK,
4034
+ # IPV6 endpoint type can't be updated to other type.
4004
4035
  #
4005
4036
  # @option params [required, String] :resolver_endpoint_id
4006
4037
  # The ID of the Resolver endpoint that you want to update.
@@ -4008,6 +4039,13 @@ module Aws::Route53Resolver
4008
4039
  # @option params [String] :name
4009
4040
  # The name of the Resolver endpoint that you want to update.
4010
4041
  #
4042
+ # @option params [String] :resolver_endpoint_type
4043
+ # Specifies the endpoint type for what type of IP address the endpoint
4044
+ # uses to forward DNS queries.
4045
+ #
4046
+ # @option params [Array<Types::UpdateIpAddress>] :update_ip_addresses
4047
+ # Updates the Resolver endpoint type to IpV4, Ipv6, or dual-stack.
4048
+ #
4011
4049
  # @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4012
4050
  #
4013
4051
  # * {Types::UpdateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
@@ -4017,6 +4055,13 @@ module Aws::Route53Resolver
4017
4055
  # resp = client.update_resolver_endpoint({
4018
4056
  # resolver_endpoint_id: "ResourceId", # required
4019
4057
  # name: "Name",
4058
+ # resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
4059
+ # update_ip_addresses: [
4060
+ # {
4061
+ # ip_id: "ResourceId", # required
4062
+ # ipv_6: "Ipv6", # required
4063
+ # },
4064
+ # ],
4020
4065
  # })
4021
4066
  #
4022
4067
  # @example Response structure
@@ -4034,6 +4079,7 @@ module Aws::Route53Resolver
4034
4079
  # resp.resolver_endpoint.status_message #=> String
4035
4080
  # resp.resolver_endpoint.creation_time #=> String
4036
4081
  # resp.resolver_endpoint.modification_time #=> String
4082
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4037
4083
  #
4038
4084
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
4039
4085
  #
@@ -4066,8 +4112,9 @@ module Aws::Route53Resolver
4066
4112
  # name: "Name",
4067
4113
  # target_ips: [
4068
4114
  # {
4069
- # ip: "Ip", # required
4115
+ # ip: "Ip",
4070
4116
  # port: 1,
4117
+ # ipv_6: "Ipv6",
4071
4118
  # },
4072
4119
  # ],
4073
4120
  # resolver_endpoint_id: "ResourceId",
@@ -4087,6 +4134,7 @@ module Aws::Route53Resolver
4087
4134
  # resp.resolver_rule.target_ips #=> Array
4088
4135
  # resp.resolver_rule.target_ips[0].ip #=> String
4089
4136
  # resp.resolver_rule.target_ips[0].port #=> Integer
4137
+ # resp.resolver_rule.target_ips[0].ipv_6 #=> String
4090
4138
  # resp.resolver_rule.resolver_endpoint_id #=> String
4091
4139
  # resp.resolver_rule.owner_id #=> String
4092
4140
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4115,7 +4163,7 @@ module Aws::Route53Resolver
4115
4163
  params: params,
4116
4164
  config: config)
4117
4165
  context[:gem_name] = 'aws-sdk-route53resolver'
4118
- context[:gem_version] = '1.39.0'
4166
+ context[:gem_version] = '1.41.0'
4119
4167
  Seahorse::Client::Request.new(handlers, context)
4120
4168
  end
4121
4169