aws-sdk-route53resolver 1.46.0 → 1.47.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eea82403d826a6d734732f56729ad437706ef6137ca8f812f9513b9e2ba824cd
4
- data.tar.gz: 103b5f02ecb2ef3891d4dde2b32ace3fb72fa37fd27e2d8ec9054136fe4a20ec
3
+ metadata.gz: 00511ffc73c3688c45ca6f2f946d7f3587c28e848ea9749b460525f0901136fb
4
+ data.tar.gz: 9450de02667928b2ebc10b46b9b71bedd195f289c5c8671b4670c31bf8c431c7
5
5
  SHA512:
6
- metadata.gz: e68e16dc25c5a0a444a66556f161c3ea67e1c529edd713a37c77437a64aa1d65854a7b6b068b0a374e1ecaf46d9bf80ee20f609b75e73dc00a793a0dc51c5ad1
7
- data.tar.gz: 85b330575d242b64f7bd78680fc8ce4e0042f32e8d30ed2f3f44da3d345465ab7bf750db63829e14f9854ede45f14802c4f51bee26e66c5ab26c0095adefb716
6
+ metadata.gz: 5f0966f70773c70b705eb1e20e1a3cd6cef3d17dc0b4415604fada649c3a6223ef582d47bebdeeaf18535f76c1d03bcc9986241c811bfb1fa3d701dba9dbd7d8
7
+ data.tar.gz: 0ae16aed15572f246c455b788cf35b046f08323db5cb7a4b81f3491a86505ad2b559d8d973b808603aaf2e79fbdecf8265f86061e2bb0dd095987abdf754eacd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2023-07-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Route 53 On Outposts, a new feature that allows customers to run Route 53 Resolver and Resolver endpoints locally on their Outposts.
8
+
4
9
  1.46.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.0
1
+ 1.47.0
@@ -542,6 +542,8 @@ module Aws::Route53Resolver
542
542
  # resp.resolver_endpoint.creation_time #=> String
543
543
  # resp.resolver_endpoint.modification_time #=> String
544
544
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
545
+ # resp.resolver_endpoint.outpost_arn #=> String
546
+ # resp.resolver_endpoint.preferred_instance_type #=> String
545
547
  #
546
548
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/AssociateResolverEndpointIpAddress AWS API Documentation
547
549
  #
@@ -911,6 +913,78 @@ module Aws::Route53Resolver
911
913
  req.send_request(options)
912
914
  end
913
915
 
916
+ # Creates an Route 53 Resolver on an Outpost.
917
+ #
918
+ # @option params [required, String] :creator_request_id
919
+ # A unique string that identifies the request and that allows failed
920
+ # requests to be retried without the risk of running the operation
921
+ # twice.
922
+ #
923
+ # `CreatorRequestId` can be any unique string, for example, a date/time
924
+ # stamp.
925
+ #
926
+ # @option params [required, String] :name
927
+ # A friendly name that lets you easily find a configuration in the
928
+ # Resolver dashboard in the Route 53 console.
929
+ #
930
+ # @option params [Integer] :instance_count
931
+ # Number of Amazon EC2 instances for the Resolver on Outpost. The
932
+ # default and minimal value is 4.
933
+ #
934
+ # @option params [required, String] :preferred_instance_type
935
+ # The Amazon EC2 instance type. If you specify this, you must also
936
+ # specify a value for the `OutpostArn`.
937
+ #
938
+ # @option params [required, String] :outpost_arn
939
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
940
+ # you must also specify a value for the `PreferredInstanceType`.
941
+ #
942
+ # @option params [Array<Types::Tag>] :tags
943
+ # A string that helps identify the Route 53 Resolvers on Outpost.
944
+ #
945
+ # @return [Types::CreateOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
946
+ #
947
+ # * {Types::CreateOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
948
+ #
949
+ # @example Request syntax with placeholder values
950
+ #
951
+ # resp = client.create_outpost_resolver({
952
+ # creator_request_id: "CreatorRequestId", # required
953
+ # name: "OutpostResolverName", # required
954
+ # instance_count: 1,
955
+ # preferred_instance_type: "OutpostInstanceType", # required
956
+ # outpost_arn: "OutpostArn", # required
957
+ # tags: [
958
+ # {
959
+ # key: "TagKey", # required
960
+ # value: "TagValue", # required
961
+ # },
962
+ # ],
963
+ # })
964
+ #
965
+ # @example Response structure
966
+ #
967
+ # resp.outpost_resolver.arn #=> String
968
+ # resp.outpost_resolver.creation_time #=> String
969
+ # resp.outpost_resolver.modification_time #=> String
970
+ # resp.outpost_resolver.creator_request_id #=> String
971
+ # resp.outpost_resolver.id #=> String
972
+ # resp.outpost_resolver.instance_count #=> Integer
973
+ # resp.outpost_resolver.preferred_instance_type #=> String
974
+ # resp.outpost_resolver.name #=> String
975
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
976
+ # resp.outpost_resolver.status_message #=> String
977
+ # resp.outpost_resolver.outpost_arn #=> String
978
+ #
979
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateOutpostResolver AWS API Documentation
980
+ #
981
+ # @overload create_outpost_resolver(params = {})
982
+ # @param [Hash] params ({})
983
+ def create_outpost_resolver(params = {}, options = {})
984
+ req = build_request(:create_outpost_resolver, params)
985
+ req.send_request(options)
986
+ end
987
+
914
988
  # Creates a Resolver endpoint. There are two types of Resolver
915
989
  # endpoints, inbound and outbound:
916
990
  #
@@ -958,10 +1032,18 @@ module Aws::Route53Resolver
958
1032
  # endpoint.
959
1033
  #
960
1034
  # @option params [String] :resolver_endpoint_type
961
- # For the endpoint type you can choose either IPv4, IPv6. or dual-stack.
1035
+ # For the endpoint type you can choose either IPv4, IPv6, or dual-stack.
962
1036
  # A dual-stack endpoint means that it will resolve via both IPv4 and
963
1037
  # IPv6. This endpoint type is applied to all IP addresses.
964
1038
  #
1039
+ # @option params [String] :outpost_arn
1040
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
1041
+ # you must also specify a value for the `PreferredInstanceType`.
1042
+ #
1043
+ # @option params [String] :preferred_instance_type
1044
+ # The instance type. If you specify this, you must also specify a value
1045
+ # for the `OutpostArn`.
1046
+ #
965
1047
  # @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
966
1048
  #
967
1049
  # * {Types::CreateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
@@ -987,6 +1069,8 @@ module Aws::Route53Resolver
987
1069
  # },
988
1070
  # ],
989
1071
  # resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
1072
+ # outpost_arn: "OutpostArn",
1073
+ # preferred_instance_type: "OutpostInstanceType",
990
1074
  # })
991
1075
  #
992
1076
  # @example Response structure
@@ -1005,6 +1089,8 @@ module Aws::Route53Resolver
1005
1089
  # resp.resolver_endpoint.creation_time #=> String
1006
1090
  # resp.resolver_endpoint.modification_time #=> String
1007
1091
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1092
+ # resp.resolver_endpoint.outpost_arn #=> String
1093
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1008
1094
  #
1009
1095
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
1010
1096
  #
@@ -1153,7 +1239,8 @@ module Aws::Route53Resolver
1153
1239
  #
1154
1240
  # @option params [Array<Types::TargetAddress>] :target_ips
1155
1241
  # The IPs that you want Resolver to forward DNS queries to. You can
1156
- # specify only IPv4 addresses. Separate IP addresses with a space.
1242
+ # specify either Ipv4 or Ipv6 addresses but not both in the same rule.
1243
+ # Separate IP addresses with a space.
1157
1244
  #
1158
1245
  # `TargetIps` is available only when the value of `Rule type` is
1159
1246
  # `FORWARD`.
@@ -1342,6 +1429,44 @@ module Aws::Route53Resolver
1342
1429
  req.send_request(options)
1343
1430
  end
1344
1431
 
1432
+ # Deletes a Resolver on the Outpost.
1433
+ #
1434
+ # @option params [required, String] :id
1435
+ # A unique string that identifies the Resolver on the Outpost.
1436
+ #
1437
+ # @return [Types::DeleteOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1438
+ #
1439
+ # * {Types::DeleteOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
1440
+ #
1441
+ # @example Request syntax with placeholder values
1442
+ #
1443
+ # resp = client.delete_outpost_resolver({
1444
+ # id: "ResourceId", # required
1445
+ # })
1446
+ #
1447
+ # @example Response structure
1448
+ #
1449
+ # resp.outpost_resolver.arn #=> String
1450
+ # resp.outpost_resolver.creation_time #=> String
1451
+ # resp.outpost_resolver.modification_time #=> String
1452
+ # resp.outpost_resolver.creator_request_id #=> String
1453
+ # resp.outpost_resolver.id #=> String
1454
+ # resp.outpost_resolver.instance_count #=> Integer
1455
+ # resp.outpost_resolver.preferred_instance_type #=> String
1456
+ # resp.outpost_resolver.name #=> String
1457
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
1458
+ # resp.outpost_resolver.status_message #=> String
1459
+ # resp.outpost_resolver.outpost_arn #=> String
1460
+ #
1461
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteOutpostResolver AWS API Documentation
1462
+ #
1463
+ # @overload delete_outpost_resolver(params = {})
1464
+ # @param [Hash] params ({})
1465
+ def delete_outpost_resolver(params = {}, options = {})
1466
+ req = build_request(:delete_outpost_resolver, params)
1467
+ req.send_request(options)
1468
+ end
1469
+
1345
1470
  # Deletes a Resolver endpoint. The effect of deleting a Resolver
1346
1471
  # endpoint depends on whether it's an inbound or an outbound Resolver
1347
1472
  # endpoint:
@@ -1381,6 +1506,8 @@ module Aws::Route53Resolver
1381
1506
  # resp.resolver_endpoint.creation_time #=> String
1382
1507
  # resp.resolver_endpoint.modification_time #=> String
1383
1508
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1509
+ # resp.resolver_endpoint.outpost_arn #=> String
1510
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1384
1511
  #
1385
1512
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
1386
1513
  #
@@ -1591,6 +1718,8 @@ module Aws::Route53Resolver
1591
1718
  # resp.resolver_endpoint.creation_time #=> String
1592
1719
  # resp.resolver_endpoint.modification_time #=> String
1593
1720
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1721
+ # resp.resolver_endpoint.outpost_arn #=> String
1722
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1594
1723
  #
1595
1724
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
1596
1725
  #
@@ -1879,6 +2008,46 @@ module Aws::Route53Resolver
1879
2008
  req.send_request(options)
1880
2009
  end
1881
2010
 
2011
+ # Gets information about a specified Resolver on the Outpost, such as
2012
+ # its instance count and type, name, and the current status of the
2013
+ # Resolver.
2014
+ #
2015
+ # @option params [required, String] :id
2016
+ # The ID of the Resolver on the Outpost.
2017
+ #
2018
+ # @return [Types::GetOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2019
+ #
2020
+ # * {Types::GetOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
2021
+ #
2022
+ # @example Request syntax with placeholder values
2023
+ #
2024
+ # resp = client.get_outpost_resolver({
2025
+ # id: "ResourceId", # required
2026
+ # })
2027
+ #
2028
+ # @example Response structure
2029
+ #
2030
+ # resp.outpost_resolver.arn #=> String
2031
+ # resp.outpost_resolver.creation_time #=> String
2032
+ # resp.outpost_resolver.modification_time #=> String
2033
+ # resp.outpost_resolver.creator_request_id #=> String
2034
+ # resp.outpost_resolver.id #=> String
2035
+ # resp.outpost_resolver.instance_count #=> Integer
2036
+ # resp.outpost_resolver.preferred_instance_type #=> String
2037
+ # resp.outpost_resolver.name #=> String
2038
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
2039
+ # resp.outpost_resolver.status_message #=> String
2040
+ # resp.outpost_resolver.outpost_arn #=> String
2041
+ #
2042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetOutpostResolver AWS API Documentation
2043
+ #
2044
+ # @overload get_outpost_resolver(params = {})
2045
+ # @param [Hash] params ({})
2046
+ def get_outpost_resolver(params = {}, options = {})
2047
+ req = build_request(:get_outpost_resolver, params)
2048
+ req.send_request(options)
2049
+ end
2050
+
1882
2051
  # Retrieves the behavior configuration of Route 53 Resolver behavior for
1883
2052
  # a single VPC from Amazon Virtual Private Cloud.
1884
2053
  #
@@ -1977,6 +2146,8 @@ module Aws::Route53Resolver
1977
2146
  # resp.resolver_endpoint.creation_time #=> String
1978
2147
  # resp.resolver_endpoint.modification_time #=> String
1979
2148
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2149
+ # resp.resolver_endpoint.outpost_arn #=> String
2150
+ # resp.resolver_endpoint.preferred_instance_type #=> String
1980
2151
  #
1981
2152
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
1982
2153
  #
@@ -2690,6 +2861,61 @@ module Aws::Route53Resolver
2690
2861
  req.send_request(options)
2691
2862
  end
2692
2863
 
2864
+ # Lists all the Resolvers on Outposts that were created using the
2865
+ # current Amazon Web Services account.
2866
+ #
2867
+ # @option params [String] :outpost_arn
2868
+ # The Amazon Resource Name (ARN) of the Outpost.
2869
+ #
2870
+ # @option params [Integer] :max_results
2871
+ # The maximum number of Resolvers on the Outpost that you want to return
2872
+ # in the response to a `ListOutpostResolver` request. If you don't
2873
+ # specify a value for `MaxResults`, the request returns up to 100
2874
+ # Resolvers.
2875
+ #
2876
+ # @option params [String] :next_token
2877
+ # For the first `ListOutpostResolver` request, omit this value.
2878
+ #
2879
+ # @return [Types::ListOutpostResolversResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2880
+ #
2881
+ # * {Types::ListOutpostResolversResponse#outpost_resolvers #outpost_resolvers} => Array&lt;Types::OutpostResolver&gt;
2882
+ # * {Types::ListOutpostResolversResponse#next_token #next_token} => String
2883
+ #
2884
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2885
+ #
2886
+ # @example Request syntax with placeholder values
2887
+ #
2888
+ # resp = client.list_outpost_resolvers({
2889
+ # outpost_arn: "OutpostArn",
2890
+ # max_results: 1,
2891
+ # next_token: "NextToken",
2892
+ # })
2893
+ #
2894
+ # @example Response structure
2895
+ #
2896
+ # resp.outpost_resolvers #=> Array
2897
+ # resp.outpost_resolvers[0].arn #=> String
2898
+ # resp.outpost_resolvers[0].creation_time #=> String
2899
+ # resp.outpost_resolvers[0].modification_time #=> String
2900
+ # resp.outpost_resolvers[0].creator_request_id #=> String
2901
+ # resp.outpost_resolvers[0].id #=> String
2902
+ # resp.outpost_resolvers[0].instance_count #=> Integer
2903
+ # resp.outpost_resolvers[0].preferred_instance_type #=> String
2904
+ # resp.outpost_resolvers[0].name #=> String
2905
+ # resp.outpost_resolvers[0].status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
2906
+ # resp.outpost_resolvers[0].status_message #=> String
2907
+ # resp.outpost_resolvers[0].outpost_arn #=> String
2908
+ # resp.next_token #=> String
2909
+ #
2910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListOutpostResolvers AWS API Documentation
2911
+ #
2912
+ # @overload list_outpost_resolvers(params = {})
2913
+ # @param [Hash] params ({})
2914
+ def list_outpost_resolvers(params = {}, options = {})
2915
+ req = build_request(:list_outpost_resolvers, params)
2916
+ req.send_request(options)
2917
+ end
2918
+
2693
2919
  # Retrieves the Resolver configurations that you have defined. Route 53
2694
2920
  # Resolver uses the configurations to manage DNS resolution behavior for
2695
2921
  # your VPCs.
@@ -2849,7 +3075,7 @@ module Aws::Route53Resolver
2849
3075
  # resp.ip_addresses[0].subnet_id #=> String
2850
3076
  # resp.ip_addresses[0].ip #=> String
2851
3077
  # resp.ip_addresses[0].ipv_6 #=> String
2852
- # 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"
3078
+ # 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", "UPDATE_FAILED"
2853
3079
  # resp.ip_addresses[0].status_message #=> String
2854
3080
  # resp.ip_addresses[0].creation_time #=> String
2855
3081
  # resp.ip_addresses[0].modification_time #=> String
@@ -2930,6 +3156,8 @@ module Aws::Route53Resolver
2930
3156
  # resp.resolver_endpoints[0].creation_time #=> String
2931
3157
  # resp.resolver_endpoints[0].modification_time #=> String
2932
3158
  # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
3159
+ # resp.resolver_endpoints[0].outpost_arn #=> String
3160
+ # resp.resolver_endpoints[0].preferred_instance_type #=> String
2933
3161
  #
2934
3162
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
2935
3163
  #
@@ -3482,8 +3710,6 @@ module Aws::Route53Resolver
3482
3710
  #
3483
3711
  # * `route53resolver:DisassociateResolverQueryLogConfig`
3484
3712
  #
3485
- # * `route53resolver:ListResolverQueryLogConfigAssociations`
3486
- #
3487
3713
  # * `route53resolver:ListResolverQueryLogConfigs`
3488
3714
  #
3489
3715
  # In the `Resource` section of the statement, you specify the ARNs for
@@ -3953,6 +4179,57 @@ module Aws::Route53Resolver
3953
4179
  req.send_request(options)
3954
4180
  end
3955
4181
 
4182
+ # You can use `UpdateOutpostResolver` to update the instance count,
4183
+ # type, or name of a Resolver on an Outpost.
4184
+ #
4185
+ # @option params [required, String] :id
4186
+ # A unique string that identifies Resolver on an Outpost.
4187
+ #
4188
+ # @option params [String] :name
4189
+ # Name of the Resolver on the Outpost.
4190
+ #
4191
+ # @option params [Integer] :instance_count
4192
+ # The Amazon EC2 instance count for a Resolver on the Outpost.
4193
+ #
4194
+ # @option params [String] :preferred_instance_type
4195
+ # Amazon EC2 instance type.
4196
+ #
4197
+ # @return [Types::UpdateOutpostResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4198
+ #
4199
+ # * {Types::UpdateOutpostResolverResponse#outpost_resolver #outpost_resolver} => Types::OutpostResolver
4200
+ #
4201
+ # @example Request syntax with placeholder values
4202
+ #
4203
+ # resp = client.update_outpost_resolver({
4204
+ # id: "ResourceId", # required
4205
+ # name: "OutpostResolverName",
4206
+ # instance_count: 1,
4207
+ # preferred_instance_type: "OutpostInstanceType",
4208
+ # })
4209
+ #
4210
+ # @example Response structure
4211
+ #
4212
+ # resp.outpost_resolver.arn #=> String
4213
+ # resp.outpost_resolver.creation_time #=> String
4214
+ # resp.outpost_resolver.modification_time #=> String
4215
+ # resp.outpost_resolver.creator_request_id #=> String
4216
+ # resp.outpost_resolver.id #=> String
4217
+ # resp.outpost_resolver.instance_count #=> Integer
4218
+ # resp.outpost_resolver.preferred_instance_type #=> String
4219
+ # resp.outpost_resolver.name #=> String
4220
+ # resp.outpost_resolver.status #=> String, one of "CREATING", "OPERATIONAL", "UPDATING", "DELETING", "ACTION_NEEDED", "FAILED_CREATION", "FAILED_DELETION"
4221
+ # resp.outpost_resolver.status_message #=> String
4222
+ # resp.outpost_resolver.outpost_arn #=> String
4223
+ #
4224
+ # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateOutpostResolver AWS API Documentation
4225
+ #
4226
+ # @overload update_outpost_resolver(params = {})
4227
+ # @param [Hash] params ({})
4228
+ def update_outpost_resolver(params = {}, options = {})
4229
+ req = build_request(:update_outpost_resolver, params)
4230
+ req.send_request(options)
4231
+ end
4232
+
3956
4233
  # Updates the behavior configuration of Route 53 Resolver behavior for a
3957
4234
  # single VPC from Amazon Virtual Private Cloud.
3958
4235
  #
@@ -4063,8 +4340,12 @@ module Aws::Route53Resolver
4063
4340
  # Specifies the endpoint type for what type of IP address the endpoint
4064
4341
  # uses to forward DNS queries.
4065
4342
  #
4343
+ # Updating to `IPV6` type isn't currently supported.
4344
+ #
4066
4345
  # @option params [Array<Types::UpdateIpAddress>] :update_ip_addresses
4067
- # Updates the Resolver endpoint type to IpV4, Ipv6, or dual-stack.
4346
+ # Specifies the IPv6 address when you update the Resolver endpoint from
4347
+ # IPv4 to dual-stack. If you don't specify an IPv6 address, one will be
4348
+ # automatically chosen from your subnet.
4068
4349
  #
4069
4350
  # @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4070
4351
  #
@@ -4100,6 +4381,8 @@ module Aws::Route53Resolver
4100
4381
  # resp.resolver_endpoint.creation_time #=> String
4101
4382
  # resp.resolver_endpoint.modification_time #=> String
4102
4383
  # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4384
+ # resp.resolver_endpoint.outpost_arn #=> String
4385
+ # resp.resolver_endpoint.preferred_instance_type #=> String
4103
4386
  #
4104
4387
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
4105
4388
  #
@@ -4183,7 +4466,7 @@ module Aws::Route53Resolver
4183
4466
  params: params,
4184
4467
  config: config)
4185
4468
  context[:gem_name] = 'aws-sdk-route53resolver'
4186
- context[:gem_version] = '1.46.0'
4469
+ context[:gem_version] = '1.47.0'
4187
4470
  Seahorse::Client::Request.new(handlers, context)
4188
4471
  end
4189
4472