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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53resolver/client.rb +109 -61
- data/lib/aws-sdk-route53resolver/client_api.rb +24 -1
- data/lib/aws-sdk-route53resolver/endpoint_provider.rb +33 -24
- data/lib/aws-sdk-route53resolver/types.rb +208 -127
- data/lib/aws-sdk-route53resolver.rb +1 -1
- metadata +2 -2
@@ -212,6 +212,11 @@ module Aws::Route53Resolver
|
|
212
212
|
include Aws::Structure
|
213
213
|
end
|
214
214
|
|
215
|
+
# The requested state transition isn't valid. For example, you can't
|
216
|
+
# delete a firewall domain list if it is in the process of being
|
217
|
+
# deleted, or you can't import domains into a domain list that is in
|
218
|
+
# the process of being deleted.
|
219
|
+
#
|
215
220
|
# @!attribute [rw] message
|
216
221
|
# @return [String]
|
217
222
|
#
|
@@ -450,11 +455,11 @@ module Aws::Route53Resolver
|
|
450
455
|
# @!attribute [rw] direction
|
451
456
|
# Specify the applicable value:
|
452
457
|
#
|
453
|
-
# * `INBOUND
|
458
|
+
# * `INBOUND`: Resolver forwards DNS queries to the DNS service for a
|
454
459
|
# VPC from your network
|
455
460
|
#
|
456
|
-
# * `OUTBOUND
|
457
|
-
#
|
461
|
+
# * `OUTBOUND`: Resolver forwards DNS queries from the DNS service for
|
462
|
+
# a VPC to your network
|
458
463
|
# @return [String]
|
459
464
|
#
|
460
465
|
# @!attribute [rw] ip_addresses
|
@@ -468,6 +473,13 @@ module Aws::Route53Resolver
|
|
468
473
|
# the endpoint.
|
469
474
|
# @return [Array<Types::Tag>]
|
470
475
|
#
|
476
|
+
# @!attribute [rw] resolver_endpoint_type
|
477
|
+
# For the endpoint type you can choose either IPv4, IPv6. or
|
478
|
+
# dual-stack. A dual-stack endpoint means that it will resolve via
|
479
|
+
# both IPv4 and IPv6. This endpoint type is applied to all IP
|
480
|
+
# addresses.
|
481
|
+
# @return [String]
|
482
|
+
#
|
471
483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpointRequest AWS API Documentation
|
472
484
|
#
|
473
485
|
class CreateResolverEndpointRequest < Struct.new(
|
@@ -476,7 +488,8 @@ module Aws::Route53Resolver
|
|
476
488
|
:security_group_ids,
|
477
489
|
:direction,
|
478
490
|
:ip_addresses,
|
479
|
-
:tags
|
491
|
+
:tags,
|
492
|
+
:resolver_endpoint_type)
|
480
493
|
SENSITIVE = []
|
481
494
|
include Aws::Structure
|
482
495
|
end
|
@@ -504,7 +517,7 @@ module Aws::Route53Resolver
|
|
504
517
|
# group, or a Kinesis Data Firehose delivery stream. Examples of valid
|
505
518
|
# values include the following:
|
506
519
|
#
|
507
|
-
# * **S3 bucket
|
520
|
+
# * **S3 bucket**:
|
508
521
|
#
|
509
522
|
# `arn:aws:s3:::examplebucket`
|
510
523
|
#
|
@@ -512,11 +525,11 @@ module Aws::Route53Resolver
|
|
512
525
|
#
|
513
526
|
# `arn:aws:s3:::examplebucket/development/`
|
514
527
|
#
|
515
|
-
# * **CloudWatch Logs log group
|
528
|
+
# * **CloudWatch Logs log group**:
|
516
529
|
#
|
517
530
|
# `arn:aws:logs:us-west-1:123456789012:log-group:/mystack-testgroup-12ABC1AB12A1:*`
|
518
531
|
#
|
519
|
-
# * **Kinesis Data Firehose delivery stream
|
532
|
+
# * **Kinesis Data Firehose delivery stream**:
|
520
533
|
#
|
521
534
|
# `arn:aws:kinesis:us-east-2:0123456789:stream/my_stream_name`
|
522
535
|
# @return [String]
|
@@ -957,14 +970,14 @@ module Aws::Route53Resolver
|
|
957
970
|
#
|
958
971
|
# Valid values for `Name` include the following:
|
959
972
|
#
|
960
|
-
# * `CreatorRequestId
|
973
|
+
# * `CreatorRequestId`: The value that you specified when you created
|
961
974
|
# the Resolver endpoint.
|
962
975
|
#
|
963
|
-
# * `Direction
|
976
|
+
# * `Direction`: Whether you want to return inbound or outbound
|
964
977
|
# Resolver endpoints. If you specify `DIRECTION` for `Name`, specify
|
965
978
|
# `INBOUND` or `OUTBOUND` for `Values`.
|
966
979
|
#
|
967
|
-
# * `HostVPCId
|
980
|
+
# * `HostVPCId`: The ID of the VPC that inbound DNS queries pass
|
968
981
|
# through on the way from your network to your VPCs in a region, or
|
969
982
|
# the VPC that outbound queries pass through on the way from your
|
970
983
|
# VPCs to your network. In a [CreateResolverEndpoint][6] request,
|
@@ -972,17 +985,17 @@ module Aws::Route53Resolver
|
|
972
985
|
# [GetResolverEndpoint][7] request, the VPC ID for a Resolver
|
973
986
|
# endpoint is returned in the `HostVPCId` element.
|
974
987
|
#
|
975
|
-
# * `IpAddressCount
|
988
|
+
# * `IpAddressCount`: The number of IP addresses that you have
|
976
989
|
# associated with the Resolver endpoint.
|
977
990
|
#
|
978
|
-
# * `Name
|
991
|
+
# * `Name`: The name of the Resolver endpoint.
|
979
992
|
#
|
980
|
-
# * `SecurityGroupIds
|
993
|
+
# * `SecurityGroupIds`: The IDs of the VPC security groups that you
|
981
994
|
# specified when you created the Resolver endpoint.
|
982
995
|
#
|
983
|
-
# * `Status
|
996
|
+
# * `Status`: The status of the Resolver endpoint. If you specify
|
984
997
|
# `Status` for `Name`, specify one of the following status codes for
|
985
|
-
# `Values
|
998
|
+
# `Values`: `CREATING`, `OPERATIONAL`, `UPDATING`,
|
986
999
|
# `AUTO_RECOVERING`, `ACTION_NEEDED`, or `DELETING`. For more
|
987
1000
|
# information, see `Status` in [ResolverEndpoint][8].
|
988
1001
|
#
|
@@ -990,20 +1003,20 @@ module Aws::Route53Resolver
|
|
990
1003
|
#
|
991
1004
|
# Valid values for `Name` include the following:
|
992
1005
|
#
|
993
|
-
# * `CreatorRequestId
|
1006
|
+
# * `CreatorRequestId`: The value that you specified when you created
|
994
1007
|
# the Resolver rule.
|
995
1008
|
#
|
996
|
-
# * `DomainName
|
997
|
-
#
|
1009
|
+
# * `DomainName`: The domain name for which Resolver is forwarding DNS
|
1010
|
+
# queries to your network. In the value that you specify for
|
998
1011
|
# `Values`, include a trailing dot (.) after the domain name. For
|
999
1012
|
# example, if the domain name is example.com, specify the following
|
1000
|
-
# value. Note the "." after `com
|
1013
|
+
# value. Note the "." after `com`:
|
1001
1014
|
#
|
1002
1015
|
# `example.com.`
|
1003
1016
|
#
|
1004
|
-
# * `Name
|
1017
|
+
# * `Name`: The name of the Resolver rule.
|
1005
1018
|
#
|
1006
|
-
# * `ResolverEndpointId
|
1019
|
+
# * `ResolverEndpointId`: The ID of the Resolver endpoint that the
|
1007
1020
|
# Resolver rule is associated with.
|
1008
1021
|
#
|
1009
1022
|
# <note markdown="1"> You can filter on the Resolver endpoint only for rules that have a
|
@@ -1011,47 +1024,47 @@ module Aws::Route53Resolver
|
|
1011
1024
|
#
|
1012
1025
|
# </note>
|
1013
1026
|
#
|
1014
|
-
# * `Status
|
1015
|
-
#
|
1016
|
-
# `Values
|
1027
|
+
# * `Status`: The status of the Resolver rule. If you specify `Status`
|
1028
|
+
# for `Name`, specify one of the following status codes for
|
1029
|
+
# `Values`: `COMPLETE`, `DELETING`, `UPDATING`, or `FAILED`.
|
1017
1030
|
#
|
1018
|
-
# * `Type
|
1031
|
+
# * `Type`: The type of the Resolver rule. If you specify `TYPE` for
|
1019
1032
|
# `Name`, specify `FORWARD` or `SYSTEM` for `Values`.
|
1020
1033
|
#
|
1021
1034
|
# **ListResolverRuleAssociations**
|
1022
1035
|
#
|
1023
1036
|
# Valid values for `Name` include the following:
|
1024
1037
|
#
|
1025
|
-
# * `Name
|
1038
|
+
# * `Name`: The name of the Resolver rule association.
|
1026
1039
|
#
|
1027
|
-
# * `ResolverRuleId
|
1040
|
+
# * `ResolverRuleId`: The ID of the Resolver rule that is associated
|
1028
1041
|
# with one or more VPCs.
|
1029
1042
|
#
|
1030
|
-
# * `Status
|
1043
|
+
# * `Status`: The status of the Resolver rule association. If you
|
1031
1044
|
# specify `Status` for `Name`, specify one of the following status
|
1032
|
-
# codes for `Values
|
1045
|
+
# codes for `Values`: `CREATING`, `COMPLETE`, `DELETING`, or
|
1033
1046
|
# `FAILED`.
|
1034
1047
|
#
|
1035
|
-
# * `VPCId
|
1048
|
+
# * `VPCId`: The ID of the VPC that the Resolver rule is associated
|
1036
1049
|
# with.
|
1037
1050
|
#
|
1038
1051
|
# **ListResolverQueryLogConfigs**
|
1039
1052
|
#
|
1040
1053
|
# Valid values for `Name` include the following:
|
1041
1054
|
#
|
1042
|
-
# * `Arn
|
1055
|
+
# * `Arn`: The ARN for the query logging configuration.
|
1043
1056
|
#
|
1044
|
-
# * `AssociationCount
|
1057
|
+
# * `AssociationCount`: The number of VPCs that are associated with
|
1045
1058
|
# the query logging configuration.
|
1046
1059
|
#
|
1047
|
-
# * `CreationTime
|
1060
|
+
# * `CreationTime`: The date and time that the query logging
|
1048
1061
|
# configuration was created, in Unix time format and Coordinated
|
1049
1062
|
# Universal Time (UTC).
|
1050
1063
|
#
|
1051
|
-
# * `CreatorRequestId
|
1064
|
+
# * `CreatorRequestId`: A unique string that identifies the request
|
1052
1065
|
# that created the query logging configuration.
|
1053
1066
|
#
|
1054
|
-
# * `Destination
|
1067
|
+
# * `Destination`: The Amazon Web Services service that you want to
|
1055
1068
|
# forward query logs to. Valid values include the following:
|
1056
1069
|
#
|
1057
1070
|
# * `S3`
|
@@ -1060,51 +1073,51 @@ module Aws::Route53Resolver
|
|
1060
1073
|
#
|
1061
1074
|
# * `KinesisFirehose`
|
1062
1075
|
#
|
1063
|
-
# * `DestinationArn
|
1064
|
-
#
|
1065
|
-
#
|
1076
|
+
# * `DestinationArn`: The ARN of the location that Resolver is sending
|
1077
|
+
# query logs to. This value can be the ARN for an S3 bucket, a
|
1078
|
+
# CloudWatch Logs log group, or a Kinesis Data Firehose delivery
|
1066
1079
|
# stream.
|
1067
1080
|
#
|
1068
|
-
# * `Id
|
1081
|
+
# * `Id`: The ID of the query logging configuration
|
1069
1082
|
#
|
1070
|
-
# * `Name
|
1083
|
+
# * `Name`: The name of the query logging configuration
|
1071
1084
|
#
|
1072
|
-
# * `OwnerId
|
1073
|
-
#
|
1085
|
+
# * `OwnerId`: The Amazon Web Services account ID for the account that
|
1086
|
+
# created the query logging configuration.
|
1074
1087
|
#
|
1075
|
-
# * `ShareStatus
|
1088
|
+
# * `ShareStatus`: An indication of whether the query logging
|
1076
1089
|
# configuration is shared with other Amazon Web Services accounts,
|
1077
1090
|
# or was shared with the current account by another Amazon Web
|
1078
1091
|
# Services account. Valid values include: `NOT_SHARED`,
|
1079
1092
|
# `SHARED_WITH_ME`, or `SHARED_BY_ME`.
|
1080
1093
|
#
|
1081
|
-
# * `Status
|
1094
|
+
# * `Status`: The status of the query logging configuration. If you
|
1082
1095
|
# specify `Status` for `Name`, specify the applicable status code
|
1083
|
-
# for `Values
|
1096
|
+
# for `Values`: `CREATING`, `CREATED`, `DELETING`, or `FAILED`. For
|
1084
1097
|
# more information, see [Status][9].
|
1085
1098
|
#
|
1086
1099
|
# **ListResolverQueryLogConfigAssociations**
|
1087
1100
|
#
|
1088
1101
|
# Valid values for `Name` include the following:
|
1089
1102
|
#
|
1090
|
-
# * `CreationTime
|
1091
|
-
#
|
1103
|
+
# * `CreationTime`: The date and time that the VPC was associated with
|
1104
|
+
# the query logging configuration, in Unix time format and
|
1092
1105
|
# Coordinated Universal Time (UTC).
|
1093
1106
|
#
|
1094
|
-
# * `Error
|
1107
|
+
# * `Error`: If the value of `Status` is `FAILED`, specify the cause:
|
1095
1108
|
# `DESTINATION_NOT_FOUND` or `ACCESS_DENIED`.
|
1096
1109
|
#
|
1097
|
-
# * `Id
|
1110
|
+
# * `Id`: The ID of the query logging association.
|
1098
1111
|
#
|
1099
|
-
# * `ResolverQueryLogConfigId
|
1112
|
+
# * `ResolverQueryLogConfigId`: The ID of the query logging
|
1100
1113
|
# configuration that a VPC is associated with.
|
1101
1114
|
#
|
1102
|
-
# * `ResourceId
|
1103
|
-
#
|
1115
|
+
# * `ResourceId`: The ID of the Amazon VPC that is associated with the
|
1116
|
+
# query logging configuration.
|
1104
1117
|
#
|
1105
|
-
# * `Status
|
1118
|
+
# * `Status`: The status of the query logging association. If you
|
1106
1119
|
# specify `Status` for `Name`, specify the applicable status code
|
1107
|
-
# for `Values
|
1120
|
+
# for `Values`: `CREATING`, `CREATED`, `DELETING`, or `FAILED`. For
|
1108
1121
|
# more information, see [Status][10].
|
1109
1122
|
#
|
1110
1123
|
#
|
@@ -1757,7 +1770,7 @@ module Aws::Route53Resolver
|
|
1757
1770
|
end
|
1758
1771
|
|
1759
1772
|
# @!attribute [rw] resolver_config
|
1760
|
-
# Information about the behavior configuration of Route
|
1773
|
+
# Information about the behavior configuration of Route 53 Resolver
|
1761
1774
|
# behavior for the VPC you specified in the `GetResolverConfig`
|
1762
1775
|
# request.
|
1763
1776
|
# @return [Types::ResolverConfig]
|
@@ -2018,6 +2031,7 @@ module Aws::Route53Resolver
|
|
2018
2031
|
# @return [String]
|
2019
2032
|
#
|
2020
2033
|
# @!attribute [rw] status
|
2034
|
+
# Status of the import request.
|
2021
2035
|
# @return [String]
|
2022
2036
|
#
|
2023
2037
|
# @!attribute [rw] status_message
|
@@ -2134,14 +2148,19 @@ module Aws::Route53Resolver
|
|
2134
2148
|
# @return [String]
|
2135
2149
|
#
|
2136
2150
|
# @!attribute [rw] ip
|
2137
|
-
# The
|
2151
|
+
# The IPv4 address that you want to use for DNS queries.
|
2152
|
+
# @return [String]
|
2153
|
+
#
|
2154
|
+
# @!attribute [rw] ipv_6
|
2155
|
+
# The IPv6 address that you want to use for DNS queries.
|
2138
2156
|
# @return [String]
|
2139
2157
|
#
|
2140
2158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/IpAddressRequest AWS API Documentation
|
2141
2159
|
#
|
2142
2160
|
class IpAddressRequest < Struct.new(
|
2143
2161
|
:subnet_id,
|
2144
|
-
:ip
|
2162
|
+
:ip,
|
2163
|
+
:ipv_6)
|
2145
2164
|
SENSITIVE = []
|
2146
2165
|
include Aws::Structure
|
2147
2166
|
end
|
@@ -2163,7 +2182,11 @@ module Aws::Route53Resolver
|
|
2163
2182
|
# @return [String]
|
2164
2183
|
#
|
2165
2184
|
# @!attribute [rw] ip
|
2166
|
-
# One
|
2185
|
+
# One IPv4 address that the Resolver endpoint uses for DNS queries.
|
2186
|
+
# @return [String]
|
2187
|
+
#
|
2188
|
+
# @!attribute [rw] ipv_6
|
2189
|
+
# One IPv6 address that the Resolver endpoint uses for DNS queries.
|
2167
2190
|
# @return [String]
|
2168
2191
|
#
|
2169
2192
|
# @!attribute [rw] status
|
@@ -2191,6 +2214,7 @@ module Aws::Route53Resolver
|
|
2191
2214
|
:ip_id,
|
2192
2215
|
:subnet_id,
|
2193
2216
|
:ip,
|
2217
|
+
:ipv_6,
|
2194
2218
|
:status,
|
2195
2219
|
:status_message,
|
2196
2220
|
:creation_time,
|
@@ -2207,7 +2231,7 @@ module Aws::Route53Resolver
|
|
2207
2231
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverEndpoint.html
|
2208
2232
|
#
|
2209
2233
|
# @!attribute [rw] ip_id
|
2210
|
-
# *Only when removing an IP address from a Resolver endpoint
|
2234
|
+
# *Only when removing an IP address from a Resolver endpoint*: The ID
|
2211
2235
|
# of the IP address that you want to remove. To get this ID, use
|
2212
2236
|
# [GetResolverEndpoint][1].
|
2213
2237
|
#
|
@@ -2226,7 +2250,11 @@ module Aws::Route53Resolver
|
|
2226
2250
|
# @return [String]
|
2227
2251
|
#
|
2228
2252
|
# @!attribute [rw] ip
|
2229
|
-
# The new
|
2253
|
+
# The new IPv4 address.
|
2254
|
+
# @return [String]
|
2255
|
+
#
|
2256
|
+
# @!attribute [rw] ipv_6
|
2257
|
+
# The new IPv6 address.
|
2230
2258
|
# @return [String]
|
2231
2259
|
#
|
2232
2260
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/IpAddressUpdate AWS API Documentation
|
@@ -2234,7 +2262,8 @@ module Aws::Route53Resolver
|
|
2234
2262
|
class IpAddressUpdate < Struct.new(
|
2235
2263
|
:ip_id,
|
2236
2264
|
:subnet_id,
|
2237
|
-
:ip
|
2265
|
+
:ip,
|
2266
|
+
:ipv_6)
|
2238
2267
|
SENSITIVE = []
|
2239
2268
|
include Aws::Structure
|
2240
2269
|
end
|
@@ -2664,7 +2693,7 @@ module Aws::Route53Resolver
|
|
2664
2693
|
# If a response doesn't include the last of the configurations, you
|
2665
2694
|
# can get more configurations by submitting another
|
2666
2695
|
# `ListResolverConfigs` request. Get the value of `NextToken` that
|
2667
|
-
# Amazon Route
|
2696
|
+
# Amazon Route 53 returned in the previous response and include it in
|
2668
2697
|
# `NextToken` in the next request.
|
2669
2698
|
# @return [String]
|
2670
2699
|
#
|
@@ -2684,7 +2713,7 @@ module Aws::Route53Resolver
|
|
2684
2713
|
end
|
2685
2714
|
|
2686
2715
|
# @!attribute [rw] max_results
|
2687
|
-
# *Optional
|
2716
|
+
# *Optional*: An integer that specifies the maximum number of DNSSEC
|
2688
2717
|
# configuration results that you want Amazon Route 53 to return. If
|
2689
2718
|
# you don't specify a value for `MaxResults`, Route 53 returns up to
|
2690
2719
|
# 100 configuration per page.
|
@@ -2916,41 +2945,40 @@ module Aws::Route53Resolver
|
|
2916
2945
|
#
|
2917
2946
|
# Valid values include the following elements:
|
2918
2947
|
#
|
2919
|
-
# * `CreationTime
|
2948
|
+
# * `CreationTime`: The ID of the query logging association.
|
2920
2949
|
#
|
2921
|
-
# * `Error
|
2950
|
+
# * `Error`: If the value of `Status` is `FAILED`, the value of
|
2922
2951
|
# `Error` indicates the cause:
|
2923
2952
|
#
|
2924
|
-
# * `DESTINATION_NOT_FOUND
|
2925
|
-
#
|
2953
|
+
# * `DESTINATION_NOT_FOUND`: The specified destination (for example,
|
2954
|
+
# an Amazon S3 bucket) was deleted.
|
2926
2955
|
#
|
2927
|
-
# * `ACCESS_DENIED
|
2956
|
+
# * `ACCESS_DENIED`: Permissions don't allow sending logs to the
|
2928
2957
|
# destination.
|
2929
2958
|
#
|
2930
2959
|
# If `Status` is a value other than `FAILED`, `ERROR` is null.
|
2931
2960
|
#
|
2932
|
-
# * `Id
|
2961
|
+
# * `Id`: The ID of the query logging association
|
2933
2962
|
#
|
2934
|
-
# * `ResolverQueryLogConfigId
|
2963
|
+
# * `ResolverQueryLogConfigId`: The ID of the query logging
|
2935
2964
|
# configuration
|
2936
2965
|
#
|
2937
|
-
# * `ResourceId
|
2966
|
+
# * `ResourceId`: The ID of the VPC that is associated with the query
|
2938
2967
|
# logging configuration
|
2939
2968
|
#
|
2940
|
-
# * `Status
|
2969
|
+
# * `Status`: The current status of the configuration. Valid values
|
2941
2970
|
# include the following:
|
2942
2971
|
#
|
2943
|
-
# * `CREATING
|
2972
|
+
# * `CREATING`: Resolver is creating an association between an
|
2944
2973
|
# Amazon VPC and a query logging configuration.
|
2945
2974
|
#
|
2946
|
-
# * `CREATED
|
2975
|
+
# * `CREATED`: The association between an Amazon VPC and a query
|
2947
2976
|
# logging configuration was successfully created. Resolver is
|
2948
2977
|
# logging queries that originate in the specified VPC.
|
2949
2978
|
#
|
2950
|
-
# * `DELETING
|
2951
|
-
# association.
|
2979
|
+
# * `DELETING`: Resolver is deleting this query logging association.
|
2952
2980
|
#
|
2953
|
-
# * `FAILED
|
2981
|
+
# * `FAILED`: Resolver either couldn't create or couldn't delete
|
2954
2982
|
# the query logging association. Here are two common causes:
|
2955
2983
|
#
|
2956
2984
|
# * The specified destination (for example, an Amazon S3 bucket)
|
@@ -3065,45 +3093,45 @@ module Aws::Route53Resolver
|
|
3065
3093
|
#
|
3066
3094
|
# Valid values include the following elements:
|
3067
3095
|
#
|
3068
|
-
# * `Arn
|
3096
|
+
# * `Arn`: The ARN of the query logging configuration
|
3069
3097
|
#
|
3070
|
-
# * `AssociationCount
|
3098
|
+
# * `AssociationCount`: The number of VPCs that are associated with
|
3071
3099
|
# the specified configuration
|
3072
3100
|
#
|
3073
|
-
# * `CreationTime
|
3101
|
+
# * `CreationTime`: The date and time that Resolver returned when the
|
3074
3102
|
# configuration was created
|
3075
3103
|
#
|
3076
|
-
# * `CreatorRequestId
|
3104
|
+
# * `CreatorRequestId`: The value that was specified for
|
3077
3105
|
# `CreatorRequestId` when the configuration was created
|
3078
3106
|
#
|
3079
|
-
# * `DestinationArn
|
3107
|
+
# * `DestinationArn`: The location that logs are sent to
|
3080
3108
|
#
|
3081
|
-
# * `Id
|
3109
|
+
# * `Id`: The ID of the configuration
|
3082
3110
|
#
|
3083
|
-
# * `Name
|
3111
|
+
# * `Name`: The name of the configuration
|
3084
3112
|
#
|
3085
|
-
# * `OwnerId
|
3113
|
+
# * `OwnerId`: The Amazon Web Services account number of the account
|
3086
3114
|
# that created the configuration
|
3087
3115
|
#
|
3088
|
-
# * `ShareStatus
|
3116
|
+
# * `ShareStatus`: Whether the configuration is shared with other
|
3089
3117
|
# Amazon Web Services accounts or shared with the current account by
|
3090
3118
|
# another Amazon Web Services account. Sharing is configured through
|
3091
3119
|
# Resource Access Manager (RAM).
|
3092
3120
|
#
|
3093
|
-
# * `Status
|
3121
|
+
# * `Status`: The current status of the configuration. Valid values
|
3094
3122
|
# include the following:
|
3095
3123
|
#
|
3096
|
-
# * `CREATING
|
3124
|
+
# * `CREATING`: Resolver is creating the query logging
|
3097
3125
|
# configuration.
|
3098
3126
|
#
|
3099
|
-
# * `CREATED
|
3127
|
+
# * `CREATED`: The query logging configuration was successfully
|
3100
3128
|
# created. Resolver is logging queries that originate in the
|
3101
3129
|
# specified VPC.
|
3102
3130
|
#
|
3103
|
-
# * `DELETING
|
3131
|
+
# * `DELETING`: Resolver is deleting this query logging
|
3104
3132
|
# configuration.
|
3105
3133
|
#
|
3106
|
-
# * `FAILED
|
3134
|
+
# * `FAILED`: Resolver either couldn't create or couldn't delete
|
3107
3135
|
# the query logging configuration. Here are two common causes:
|
3108
3136
|
#
|
3109
3137
|
# * The specified destination (for example, an Amazon S3 bucket)
|
@@ -3505,9 +3533,6 @@ module Aws::Route53Resolver
|
|
3505
3533
|
# rules for reverse DNS lookups. This is enabled by default. The
|
3506
3534
|
# status can be one of following:
|
3507
3535
|
#
|
3508
|
-
# Status of the rules generated by VPCs based on CIDR/Region for
|
3509
|
-
# reverse DNS resolution. The status can be one of following:
|
3510
|
-
#
|
3511
3536
|
# * **ENABLING:** Autodefined rules for reverse DNS lookups are being
|
3512
3537
|
# enabled but are not complete.
|
3513
3538
|
#
|
@@ -3576,18 +3601,17 @@ module Aws::Route53Resolver
|
|
3576
3601
|
end
|
3577
3602
|
|
3578
3603
|
# In the response to a [CreateResolverEndpoint][1],
|
3579
|
-
# [DeleteResolverEndpoint][2], [GetResolverEndpoint][3],
|
3580
|
-
#
|
3581
|
-
# complex type that contains
|
3582
|
-
# outbound Resolver endpoint.
|
3604
|
+
# [DeleteResolverEndpoint][2], [GetResolverEndpoint][3], Updates the
|
3605
|
+
# name, or ResolverEndpointType for an endpoint, or
|
3606
|
+
# [UpdateResolverEndpoint][4] request, a complex type that contains
|
3607
|
+
# settings for an existing inbound or outbound Resolver endpoint.
|
3583
3608
|
#
|
3584
3609
|
#
|
3585
3610
|
#
|
3586
3611
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverEndpoint.html
|
3587
3612
|
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DeleteResolverEndpoint.html
|
3588
3613
|
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_GetResolverEndpoint.html
|
3589
|
-
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/
|
3590
|
-
# [5]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverEndpoint.html
|
3614
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverEndpoint.html
|
3591
3615
|
#
|
3592
3616
|
# @!attribute [rw] id
|
3593
3617
|
# The ID of the Resolver endpoint.
|
@@ -3625,9 +3649,9 @@ module Aws::Route53Resolver
|
|
3625
3649
|
# Indicates whether the Resolver endpoint allows inbound or outbound
|
3626
3650
|
# DNS queries:
|
3627
3651
|
#
|
3628
|
-
# * `INBOUND
|
3652
|
+
# * `INBOUND`: allows DNS queries to your VPC from your network
|
3629
3653
|
#
|
3630
|
-
# * `OUTBOUND
|
3654
|
+
# * `OUTBOUND`: allows DNS queries from your VPC to your network
|
3631
3655
|
# @return [String]
|
3632
3656
|
#
|
3633
3657
|
# @!attribute [rw] ip_address_count
|
@@ -3643,24 +3667,24 @@ module Aws::Route53Resolver
|
|
3643
3667
|
# A code that specifies the current status of the Resolver endpoint.
|
3644
3668
|
# Valid values include the following:
|
3645
3669
|
#
|
3646
|
-
# * `CREATING
|
3670
|
+
# * `CREATING`: Resolver is creating and configuring one or more
|
3647
3671
|
# Amazon VPC network interfaces for this endpoint.
|
3648
3672
|
#
|
3649
|
-
# * `OPERATIONAL
|
3650
|
-
#
|
3651
|
-
#
|
3673
|
+
# * `OPERATIONAL`: The Amazon VPC network interfaces for this endpoint
|
3674
|
+
# are correctly configured and able to pass inbound or outbound DNS
|
3675
|
+
# queries between your network and Resolver.
|
3652
3676
|
#
|
3653
|
-
# * `UPDATING
|
3677
|
+
# * `UPDATING`: Resolver is associating or disassociating one or more
|
3654
3678
|
# network interfaces with this endpoint.
|
3655
3679
|
#
|
3656
|
-
# * `AUTO_RECOVERING
|
3680
|
+
# * `AUTO_RECOVERING`: Resolver is trying to recover one or more of
|
3657
3681
|
# the network interfaces that are associated with this endpoint.
|
3658
3682
|
# During the recovery process, the endpoint functions with limited
|
3659
3683
|
# capacity because of the limit on the number of DNS queries per IP
|
3660
3684
|
# address (per network interface). For the current limit, see
|
3661
3685
|
# [Limits on Route 53 Resolver][1].
|
3662
3686
|
#
|
3663
|
-
# * `ACTION_NEEDED
|
3687
|
+
# * `ACTION_NEEDED`: This endpoint is unhealthy, and Resolver can't
|
3664
3688
|
# automatically recover it. To resolve the problem, we recommend
|
3665
3689
|
# that you check each IP address that you associated with the
|
3666
3690
|
# endpoint. For each IP address that isn't available, add another
|
@@ -3675,7 +3699,7 @@ module Aws::Route53Resolver
|
|
3675
3699
|
# * The network interface couldn't be created for some reason
|
3676
3700
|
# that's outside the control of Resolver.
|
3677
3701
|
#
|
3678
|
-
# * `DELETING
|
3702
|
+
# * `DELETING`: Resolver is deleting this endpoint and the associated
|
3679
3703
|
# network interfaces.
|
3680
3704
|
#
|
3681
3705
|
#
|
@@ -3697,6 +3721,10 @@ module Aws::Route53Resolver
|
|
3697
3721
|
# format and Coordinated Universal Time (UTC).
|
3698
3722
|
# @return [String]
|
3699
3723
|
#
|
3724
|
+
# @!attribute [rw] resolver_endpoint_type
|
3725
|
+
# The Resolver endpoint IP address type.
|
3726
|
+
# @return [String]
|
3727
|
+
#
|
3700
3728
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverEndpoint AWS API Documentation
|
3701
3729
|
#
|
3702
3730
|
class ResolverEndpoint < Struct.new(
|
@@ -3711,7 +3739,8 @@ module Aws::Route53Resolver
|
|
3711
3739
|
:status,
|
3712
3740
|
:status_message,
|
3713
3741
|
:creation_time,
|
3714
|
-
:modification_time
|
3742
|
+
:modification_time,
|
3743
|
+
:resolver_endpoint_type)
|
3715
3744
|
SENSITIVE = []
|
3716
3745
|
include Aws::Structure
|
3717
3746
|
end
|
@@ -3741,16 +3770,15 @@ module Aws::Route53Resolver
|
|
3741
3770
|
# The status of the specified query logging configuration. Valid
|
3742
3771
|
# values include the following:
|
3743
3772
|
#
|
3744
|
-
# * `CREATING
|
3773
|
+
# * `CREATING`: Resolver is creating the query logging configuration.
|
3745
3774
|
#
|
3746
|
-
# * `CREATED
|
3775
|
+
# * `CREATED`: The query logging configuration was successfully
|
3747
3776
|
# created. Resolver is logging queries that originate in the
|
3748
3777
|
# specified VPC.
|
3749
3778
|
#
|
3750
|
-
# * `DELETING
|
3751
|
-
# configuration.
|
3779
|
+
# * `DELETING`: Resolver is deleting this query logging configuration.
|
3752
3780
|
#
|
3753
|
-
# * `FAILED
|
3781
|
+
# * `FAILED`: Resolver can't deliver logs to the location that is
|
3754
3782
|
# specified in the query logging configuration. Here are two common
|
3755
3783
|
# causes:
|
3756
3784
|
#
|
@@ -3846,27 +3874,27 @@ module Aws::Route53Resolver
|
|
3846
3874
|
# The status of the specified query logging association. Valid values
|
3847
3875
|
# include the following:
|
3848
3876
|
#
|
3849
|
-
# * `CREATING
|
3877
|
+
# * `CREATING`: Resolver is creating an association between an Amazon
|
3850
3878
|
# VPC and a query logging configuration.
|
3851
3879
|
#
|
3852
|
-
# * `CREATED
|
3880
|
+
# * `CREATED`: The association between an Amazon VPC and a query
|
3853
3881
|
# logging configuration was successfully created. Resolver is
|
3854
3882
|
# logging queries that originate in the specified VPC.
|
3855
3883
|
#
|
3856
|
-
# * `DELETING
|
3884
|
+
# * `DELETING`: Resolver is deleting this query logging association.
|
3857
3885
|
#
|
3858
|
-
# * `FAILED
|
3859
|
-
#
|
3886
|
+
# * `FAILED`: Resolver either couldn't create or couldn't delete the
|
3887
|
+
# query logging association.
|
3860
3888
|
# @return [String]
|
3861
3889
|
#
|
3862
3890
|
# @!attribute [rw] error
|
3863
3891
|
# If the value of `Status` is `FAILED`, the value of `Error` indicates
|
3864
3892
|
# the cause:
|
3865
3893
|
#
|
3866
|
-
# * `DESTINATION_NOT_FOUND
|
3894
|
+
# * `DESTINATION_NOT_FOUND`: The specified destination (for example,
|
3867
3895
|
# an Amazon S3 bucket) was deleted.
|
3868
3896
|
#
|
3869
|
-
# * `ACCESS_DENIED
|
3897
|
+
# * `ACCESS_DENIED`: Permissions don't allow sending logs to the
|
3870
3898
|
# destination.
|
3871
3899
|
#
|
3872
3900
|
# If the value of `Status` is a value other than `FAILED`, `Error` is
|
@@ -4265,19 +4293,23 @@ module Aws::Route53Resolver
|
|
4265
4293
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverRule.html
|
4266
4294
|
#
|
4267
4295
|
# @!attribute [rw] ip
|
4268
|
-
# One
|
4269
|
-
# specify only IPv4 addresses.
|
4296
|
+
# One IPv4 address that you want to forward DNS queries to.
|
4270
4297
|
# @return [String]
|
4271
4298
|
#
|
4272
4299
|
# @!attribute [rw] port
|
4273
4300
|
# The port at `Ip` that you want to forward DNS queries to.
|
4274
4301
|
# @return [Integer]
|
4275
4302
|
#
|
4303
|
+
# @!attribute [rw] ipv_6
|
4304
|
+
# One IPv6 address that you want to forward DNS queries to.
|
4305
|
+
# @return [String]
|
4306
|
+
#
|
4276
4307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/TargetAddress AWS API Documentation
|
4277
4308
|
#
|
4278
4309
|
class TargetAddress < Struct.new(
|
4279
4310
|
:ip,
|
4280
|
-
:port
|
4311
|
+
:port,
|
4312
|
+
:ipv_6)
|
4281
4313
|
SENSITIVE = []
|
4282
4314
|
include Aws::Structure
|
4283
4315
|
end
|
@@ -4416,6 +4448,8 @@ module Aws::Route53Resolver
|
|
4416
4448
|
# @!attribute [rw] domains
|
4417
4449
|
# A list of domains to use in the update operation.
|
4418
4450
|
#
|
4451
|
+
# There is a limit of 1000 domains per request.
|
4452
|
+
#
|
4419
4453
|
# Each domain specification in your domain list must satisfy the
|
4420
4454
|
# following requirements:
|
4421
4455
|
#
|
@@ -4447,6 +4481,7 @@ module Aws::Route53Resolver
|
|
4447
4481
|
# @return [String]
|
4448
4482
|
#
|
4449
4483
|
# @!attribute [rw] status
|
4484
|
+
# Status of the `UpdateFirewallDomains` request.
|
4450
4485
|
# @return [String]
|
4451
4486
|
#
|
4452
4487
|
# @!attribute [rw] status_message
|
@@ -4611,6 +4646,30 @@ module Aws::Route53Resolver
|
|
4611
4646
|
include Aws::Structure
|
4612
4647
|
end
|
4613
4648
|
|
4649
|
+
# Provides information about the IP address type in response to
|
4650
|
+
# [UpdateResolverEndpoint][1].
|
4651
|
+
#
|
4652
|
+
#
|
4653
|
+
#
|
4654
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_UpdateResolverEndpoint.html
|
4655
|
+
#
|
4656
|
+
# @!attribute [rw] ip_id
|
4657
|
+
# The ID of the IP address, specified by the `ResolverEndpointId`.
|
4658
|
+
# @return [String]
|
4659
|
+
#
|
4660
|
+
# @!attribute [rw] ipv_6
|
4661
|
+
# The IPv6 address that you want to use for DNS queries.
|
4662
|
+
# @return [String]
|
4663
|
+
#
|
4664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateIpAddress AWS API Documentation
|
4665
|
+
#
|
4666
|
+
class UpdateIpAddress < Struct.new(
|
4667
|
+
:ip_id,
|
4668
|
+
:ipv_6)
|
4669
|
+
SENSITIVE = []
|
4670
|
+
include Aws::Structure
|
4671
|
+
end
|
4672
|
+
|
4614
4673
|
# @!attribute [rw] resource_id
|
4615
4674
|
# Resource ID of the Amazon VPC that you want to update the Resolver
|
4616
4675
|
# configuration for.
|
@@ -4622,6 +4681,12 @@ module Aws::Route53Resolver
|
|
4622
4681
|
# option will also affect EC2-Classic instances using ClassicLink. For
|
4623
4682
|
# more information, see [ClassicLink][1] in the *Amazon EC2 guide*.
|
4624
4683
|
#
|
4684
|
+
# We are retiring EC2-Classic on August 15, 2022. We recommend that
|
4685
|
+
# you migrate from EC2-Classic to a VPC. For more information, see
|
4686
|
+
# [Migrate from EC2-Classic to a VPC][2] in the *Amazon EC2 guide* and
|
4687
|
+
# the blog [EC2-Classic Networking is Retiring – Here’s How to
|
4688
|
+
# Prepare][3].
|
4689
|
+
#
|
4625
4690
|
# <note markdown="1"> It can take some time for the status change to be completed.
|
4626
4691
|
#
|
4627
4692
|
# </note>
|
@@ -4631,6 +4696,8 @@ module Aws::Route53Resolver
|
|
4631
4696
|
#
|
4632
4697
|
#
|
4633
4698
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html
|
4699
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
4700
|
+
# [3]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
4634
4701
|
# @return [String]
|
4635
4702
|
#
|
4636
4703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverConfigRequest AWS API Documentation
|
@@ -4696,11 +4763,22 @@ module Aws::Route53Resolver
|
|
4696
4763
|
# The name of the Resolver endpoint that you want to update.
|
4697
4764
|
# @return [String]
|
4698
4765
|
#
|
4766
|
+
# @!attribute [rw] resolver_endpoint_type
|
4767
|
+
# Specifies the endpoint type for what type of IP address the endpoint
|
4768
|
+
# uses to forward DNS queries.
|
4769
|
+
# @return [String]
|
4770
|
+
#
|
4771
|
+
# @!attribute [rw] update_ip_addresses
|
4772
|
+
# Updates the Resolver endpoint type to IpV4, Ipv6, or dual-stack.
|
4773
|
+
# @return [Array<Types::UpdateIpAddress>]
|
4774
|
+
#
|
4699
4775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpointRequest AWS API Documentation
|
4700
4776
|
#
|
4701
4777
|
class UpdateResolverEndpointRequest < Struct.new(
|
4702
4778
|
:resolver_endpoint_id,
|
4703
|
-
:name
|
4779
|
+
:name,
|
4780
|
+
:resolver_endpoint_type,
|
4781
|
+
:update_ip_addresses)
|
4704
4782
|
SENSITIVE = []
|
4705
4783
|
include Aws::Structure
|
4706
4784
|
end
|
@@ -4746,6 +4824,9 @@ module Aws::Route53Resolver
|
|
4746
4824
|
include Aws::Structure
|
4747
4825
|
end
|
4748
4826
|
|
4827
|
+
# You have provided an invalid command. Supported values are `ADD`,
|
4828
|
+
# `REMOVE`, or `REPLACE` a domain.
|
4829
|
+
#
|
4749
4830
|
# @!attribute [rw] message
|
4750
4831
|
# @return [String]
|
4751
4832
|
#
|