@aws-sdk/client-route53resolver 3.281.0 → 3.287.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.
- package/README.md +0 -6
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +22 -4
- package/dist-cjs/pagination/ListFirewallConfigsPaginator.js +1 -8
- package/dist-cjs/pagination/ListFirewallDomainListsPaginator.js +1 -8
- package/dist-cjs/pagination/ListFirewallDomainsPaginator.js +1 -8
- package/dist-cjs/pagination/ListFirewallRuleGroupAssociationsPaginator.js +1 -8
- package/dist-cjs/pagination/ListFirewallRuleGroupsPaginator.js +1 -8
- package/dist-cjs/pagination/ListFirewallRulesPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverConfigsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverDnssecConfigsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverEndpointIpAddressesPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverEndpointsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverQueryLogConfigAssociationsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverQueryLogConfigsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverRuleAssociationsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResolverRulesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -8
- package/dist-cjs/protocols/Aws_json1_1.js +39 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +17 -0
- package/dist-es/pagination/ListFirewallConfigsPaginator.js +1 -8
- package/dist-es/pagination/ListFirewallDomainListsPaginator.js +1 -8
- package/dist-es/pagination/ListFirewallDomainsPaginator.js +1 -8
- package/dist-es/pagination/ListFirewallRuleGroupAssociationsPaginator.js +1 -8
- package/dist-es/pagination/ListFirewallRuleGroupsPaginator.js +1 -8
- package/dist-es/pagination/ListFirewallRulesPaginator.js +1 -8
- package/dist-es/pagination/ListResolverConfigsPaginator.js +1 -8
- package/dist-es/pagination/ListResolverDnssecConfigsPaginator.js +1 -8
- package/dist-es/pagination/ListResolverEndpointIpAddressesPaginator.js +1 -8
- package/dist-es/pagination/ListResolverEndpointsPaginator.js +1 -8
- package/dist-es/pagination/ListResolverQueryLogConfigAssociationsPaginator.js +1 -8
- package/dist-es/pagination/ListResolverQueryLogConfigsPaginator.js +1 -8
- package/dist-es/pagination/ListResolverRuleAssociationsPaginator.js +1 -8
- package/dist-es/pagination/ListResolverRulesPaginator.js +1 -8
- package/dist-es/pagination/ListTagsForResourcePaginator.js +1 -8
- package/dist-es/protocols/Aws_json1_1.js +39 -0
- package/dist-types/Route53Resolver.d.ts +34 -46
- package/dist-types/Route53ResolverClient.d.ts +6 -12
- package/dist-types/commands/AssociateResolverEndpointIpAddressCommand.d.ts +1 -1
- package/dist-types/commands/AssociateResolverQueryLogConfigCommand.d.ts +2 -4
- package/dist-types/commands/CreateResolverEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreateResolverQueryLogConfigCommand.d.ts +2 -4
- package/dist-types/commands/DeleteResolverEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResolverQueryLogConfigCommand.d.ts +2 -4
- package/dist-types/commands/DisassociateResolverEndpointIpAddressCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateResolverQueryLogConfigCommand.d.ts +4 -5
- package/dist-types/commands/DisassociateResolverRuleCommand.d.ts +3 -3
- package/dist-types/commands/GetResolverConfigCommand.d.ts +1 -1
- package/dist-types/commands/ImportFirewallDomainsCommand.d.ts +6 -6
- package/dist-types/commands/ListResolverConfigsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResolverConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResolverEndpointCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +264 -188
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +29 -1
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/package.json +19 -19
|
@@ -1787,6 +1787,9 @@ const deserializeAws_json1_1GetResolverConfigCommandError = async (output, conte
|
|
|
1787
1787
|
case "ThrottlingException":
|
|
1788
1788
|
case "com.amazonaws.route53resolver#ThrottlingException":
|
|
1789
1789
|
throw await deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context);
|
|
1790
|
+
case "ValidationException":
|
|
1791
|
+
case "com.amazonaws.route53resolver#ValidationException":
|
|
1792
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1790
1793
|
default:
|
|
1791
1794
|
const parsedBody = parsedOutput.body;
|
|
1792
1795
|
throwDefaultError({
|
|
@@ -2132,6 +2135,9 @@ const deserializeAws_json1_1GetResolverRulePolicyCommandError = async (output, c
|
|
|
2132
2135
|
};
|
|
2133
2136
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2134
2137
|
switch (errorCode) {
|
|
2138
|
+
case "AccessDeniedException":
|
|
2139
|
+
case "com.amazonaws.route53resolver#AccessDeniedException":
|
|
2140
|
+
throw await deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context);
|
|
2135
2141
|
case "InternalServiceErrorException":
|
|
2136
2142
|
case "com.amazonaws.route53resolver#InternalServiceErrorException":
|
|
2137
2143
|
throw await deserializeAws_json1_1InternalServiceErrorExceptionResponse(parsedOutput, context);
|
|
@@ -2498,6 +2504,9 @@ const deserializeAws_json1_1ListResolverConfigsCommandError = async (output, con
|
|
|
2498
2504
|
case "ThrottlingException":
|
|
2499
2505
|
case "com.amazonaws.route53resolver#ThrottlingException":
|
|
2500
2506
|
throw await deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context);
|
|
2507
|
+
case "ValidationException":
|
|
2508
|
+
case "com.amazonaws.route53resolver#ValidationException":
|
|
2509
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
2501
2510
|
default:
|
|
2502
2511
|
const parsedBody = parsedOutput.body;
|
|
2503
2512
|
throwDefaultError({
|
|
@@ -2993,6 +3002,9 @@ const deserializeAws_json1_1PutResolverRulePolicyCommandError = async (output, c
|
|
|
2993
3002
|
};
|
|
2994
3003
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2995
3004
|
switch (errorCode) {
|
|
3005
|
+
case "AccessDeniedException":
|
|
3006
|
+
case "com.amazonaws.route53resolver#AccessDeniedException":
|
|
3007
|
+
throw await deserializeAws_json1_1AccessDeniedExceptionResponse(parsedOutput, context);
|
|
2996
3008
|
case "InternalServiceErrorException":
|
|
2997
3009
|
case "com.amazonaws.route53resolver#InternalServiceErrorException":
|
|
2998
3010
|
throw await deserializeAws_json1_1InternalServiceErrorExceptionResponse(parsedOutput, context);
|
|
@@ -3347,6 +3359,9 @@ const deserializeAws_json1_1UpdateResolverConfigCommandError = async (output, co
|
|
|
3347
3359
|
case "ThrottlingException":
|
|
3348
3360
|
case "com.amazonaws.route53resolver#ThrottlingException":
|
|
3349
3361
|
throw await deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context);
|
|
3362
|
+
case "ValidationException":
|
|
3363
|
+
case "com.amazonaws.route53resolver#ValidationException":
|
|
3364
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
3350
3365
|
default:
|
|
3351
3366
|
const parsedBody = parsedOutput.body;
|
|
3352
3367
|
throwDefaultError({
|
|
@@ -3711,6 +3726,7 @@ const serializeAws_json1_1CreateResolverEndpointRequest = (input, context) => {
|
|
|
3711
3726
|
IpAddresses: serializeAws_json1_1IpAddressesRequest(input.IpAddresses, context),
|
|
3712
3727
|
}),
|
|
3713
3728
|
...(input.Name != null && { Name: input.Name }),
|
|
3729
|
+
...(input.ResolverEndpointType != null && { ResolverEndpointType: input.ResolverEndpointType }),
|
|
3714
3730
|
...(input.SecurityGroupIds != null && {
|
|
3715
3731
|
SecurityGroupIds: serializeAws_json1_1SecurityGroupIds(input.SecurityGroupIds, context),
|
|
3716
3732
|
}),
|
|
@@ -3910,6 +3926,7 @@ const serializeAws_json1_1IpAddressesRequest = (input, context) => {
|
|
|
3910
3926
|
const serializeAws_json1_1IpAddressRequest = (input, context) => {
|
|
3911
3927
|
return {
|
|
3912
3928
|
...(input.Ip != null && { Ip: input.Ip }),
|
|
3929
|
+
...(input.Ipv6 != null && { Ipv6: input.Ipv6 }),
|
|
3913
3930
|
...(input.SubnetId != null && { SubnetId: input.SubnetId }),
|
|
3914
3931
|
};
|
|
3915
3932
|
};
|
|
@@ -3917,6 +3934,7 @@ const serializeAws_json1_1IpAddressUpdate = (input, context) => {
|
|
|
3917
3934
|
return {
|
|
3918
3935
|
...(input.Ip != null && { Ip: input.Ip }),
|
|
3919
3936
|
...(input.IpId != null && { IpId: input.IpId }),
|
|
3937
|
+
...(input.Ipv6 != null && { Ipv6: input.Ipv6 }),
|
|
3920
3938
|
...(input.SubnetId != null && { SubnetId: input.SubnetId }),
|
|
3921
3939
|
};
|
|
3922
3940
|
};
|
|
@@ -4093,6 +4111,7 @@ const serializeAws_json1_1TagResourceRequest = (input, context) => {
|
|
|
4093
4111
|
const serializeAws_json1_1TargetAddress = (input, context) => {
|
|
4094
4112
|
return {
|
|
4095
4113
|
...(input.Ip != null && { Ip: input.Ip }),
|
|
4114
|
+
...(input.Ipv6 != null && { Ipv6: input.Ipv6 }),
|
|
4096
4115
|
...(input.Port != null && { Port: input.Port }),
|
|
4097
4116
|
};
|
|
4098
4117
|
};
|
|
@@ -4145,6 +4164,19 @@ const serializeAws_json1_1UpdateFirewallRuleRequest = (input, context) => {
|
|
|
4145
4164
|
...(input.Priority != null && { Priority: input.Priority }),
|
|
4146
4165
|
};
|
|
4147
4166
|
};
|
|
4167
|
+
const serializeAws_json1_1UpdateIpAddress = (input, context) => {
|
|
4168
|
+
return {
|
|
4169
|
+
...(input.IpId != null && { IpId: input.IpId }),
|
|
4170
|
+
...(input.Ipv6 != null && { Ipv6: input.Ipv6 }),
|
|
4171
|
+
};
|
|
4172
|
+
};
|
|
4173
|
+
const serializeAws_json1_1UpdateIpAddresses = (input, context) => {
|
|
4174
|
+
return input
|
|
4175
|
+
.filter((e) => e != null)
|
|
4176
|
+
.map((entry) => {
|
|
4177
|
+
return serializeAws_json1_1UpdateIpAddress(entry, context);
|
|
4178
|
+
});
|
|
4179
|
+
};
|
|
4148
4180
|
const serializeAws_json1_1UpdateResolverConfigRequest = (input, context) => {
|
|
4149
4181
|
return {
|
|
4150
4182
|
...(input.AutodefinedReverseFlag != null && { AutodefinedReverseFlag: input.AutodefinedReverseFlag }),
|
|
@@ -4161,6 +4193,10 @@ const serializeAws_json1_1UpdateResolverEndpointRequest = (input, context) => {
|
|
|
4161
4193
|
return {
|
|
4162
4194
|
...(input.Name != null && { Name: input.Name }),
|
|
4163
4195
|
...(input.ResolverEndpointId != null && { ResolverEndpointId: input.ResolverEndpointId }),
|
|
4196
|
+
...(input.ResolverEndpointType != null && { ResolverEndpointType: input.ResolverEndpointType }),
|
|
4197
|
+
...(input.UpdateIpAddresses != null && {
|
|
4198
|
+
UpdateIpAddresses: serializeAws_json1_1UpdateIpAddresses(input.UpdateIpAddresses, context),
|
|
4199
|
+
}),
|
|
4164
4200
|
};
|
|
4165
4201
|
};
|
|
4166
4202
|
const serializeAws_json1_1UpdateResolverRuleRequest = (input, context) => {
|
|
@@ -4607,6 +4643,7 @@ const deserializeAws_json1_1IpAddressResponse = (output, context) => {
|
|
|
4607
4643
|
CreationTime: __expectString(output.CreationTime),
|
|
4608
4644
|
Ip: __expectString(output.Ip),
|
|
4609
4645
|
IpId: __expectString(output.IpId),
|
|
4646
|
+
Ipv6: __expectString(output.Ipv6),
|
|
4610
4647
|
ModificationTime: __expectString(output.ModificationTime),
|
|
4611
4648
|
Status: __expectString(output.Status),
|
|
4612
4649
|
StatusMessage: __expectString(output.StatusMessage),
|
|
@@ -4801,6 +4838,7 @@ const deserializeAws_json1_1ResolverEndpoint = (output, context) => {
|
|
|
4801
4838
|
IpAddressCount: __expectInt32(output.IpAddressCount),
|
|
4802
4839
|
ModificationTime: __expectString(output.ModificationTime),
|
|
4803
4840
|
Name: __expectString(output.Name),
|
|
4841
|
+
ResolverEndpointType: __expectString(output.ResolverEndpointType),
|
|
4804
4842
|
SecurityGroupIds: output.SecurityGroupIds != null
|
|
4805
4843
|
? deserializeAws_json1_1SecurityGroupIds(output.SecurityGroupIds, context)
|
|
4806
4844
|
: undefined,
|
|
@@ -4974,6 +5012,7 @@ const deserializeAws_json1_1TagResourceResponse = (output, context) => {
|
|
|
4974
5012
|
const deserializeAws_json1_1TargetAddress = (output, context) => {
|
|
4975
5013
|
return {
|
|
4976
5014
|
Ip: __expectString(output.Ip),
|
|
5015
|
+
Ipv6: __expectString(output.Ipv6),
|
|
4977
5016
|
Port: __expectInt32(output.Port),
|
|
4978
5017
|
};
|
|
4979
5018
|
};
|
|
@@ -69,32 +69,26 @@ import { Route53ResolverClient } from "./Route53ResolverClient";
|
|
|
69
69
|
* such as domain names for EC2 instances or Elastic Load Balancing load balancers.
|
|
70
70
|
* Resolver performs recursive lookups against public name servers for all other domain
|
|
71
71
|
* names.</p>
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
* <p>
|
|
72
|
+
* <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p>
|
|
73
|
+
* <p>
|
|
76
74
|
* <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b>
|
|
77
75
|
* </p>
|
|
78
|
-
*
|
|
79
|
-
* <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers
|
|
76
|
+
* <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers
|
|
80
77
|
* to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone.
|
|
81
78
|
* For more information, see
|
|
82
79
|
* <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers
|
|
83
80
|
* on Your Network Forward DNS Queries to Route 53 Resolver</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
84
|
-
*
|
|
85
|
-
* <p>
|
|
81
|
+
* <p>
|
|
86
82
|
* <b>Conditionally forward queries from a VPC to resolvers on your network</b>
|
|
87
83
|
* </p>
|
|
88
|
-
*
|
|
89
|
-
* <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network.
|
|
84
|
+
* <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network.
|
|
90
85
|
* To forward selected queries, you create Resolver rules that specify the domain names for the DNS queries that you want to forward
|
|
91
86
|
* (such as example.com), and the IP addresses of the DNS resolvers on your network that you want to forward the queries to.
|
|
92
87
|
* If a query matches multiple rules (example.com, acme.example.com), Resolver chooses the rule with the most specific match
|
|
93
88
|
* (acme.example.com) and forwards the query to the IP addresses that you specified in that rule. For more information, see
|
|
94
89
|
* <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-vpc-to-network">How Route 53 Resolver
|
|
95
90
|
* Forwards DNS Queries from Your VPCs to Your Network</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
96
|
-
*
|
|
97
|
-
* <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose
|
|
91
|
+
* <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose
|
|
98
92
|
* whether to forward queries from your VPCs to your network (outbound queries), from your
|
|
99
93
|
* network to your VPCs (inbound queries), or both.</p>
|
|
100
94
|
*/
|
|
@@ -108,7 +102,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
108
102
|
/**
|
|
109
103
|
* <p>Adds IP addresses to an inbound or an outbound Resolver endpoint. If you want to add more than one IP address,
|
|
110
104
|
* submit one <code>AssociateResolverEndpointIpAddress</code> request for each IP address.</p>
|
|
111
|
-
*
|
|
105
|
+
* <p>To remove an IP address from an endpoint, see
|
|
112
106
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverEndpointIpAddress.html">DisassociateResolverEndpointIpAddress</a>.
|
|
113
107
|
* </p>
|
|
114
108
|
*/
|
|
@@ -119,12 +113,10 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
119
113
|
* <p>Associates an Amazon VPC with a specified query logging configuration. Route 53 Resolver logs DNS queries that originate in all of the Amazon VPCs
|
|
120
114
|
* that are associated with a specified query logging configuration. To associate more than one VPC with a configuration, submit one <code>AssociateResolverQueryLogConfig</code>
|
|
121
115
|
* request for each VPC.</p>
|
|
122
|
-
*
|
|
123
|
-
* <note>
|
|
116
|
+
* <note>
|
|
124
117
|
* <p>The VPCs that you associate with a query logging configuration must be in the same Region as the configuration.</p>
|
|
125
118
|
* </note>
|
|
126
|
-
*
|
|
127
|
-
* <p>To remove a VPC from a query logging configuration, see
|
|
119
|
+
* <p>To remove a VPC from a query logging configuration, see
|
|
128
120
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverQueryLogConfig.html">DisassociateResolverQueryLogConfig</a>.
|
|
129
121
|
* </p>
|
|
130
122
|
*/
|
|
@@ -161,7 +153,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
161
153
|
createFirewallRuleGroup(args: CreateFirewallRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallRuleGroupCommandOutput) => void): void;
|
|
162
154
|
/**
|
|
163
155
|
* <p>Creates a Resolver endpoint. There are two types of Resolver endpoints, inbound and outbound:</p>
|
|
164
|
-
*
|
|
156
|
+
* <ul>
|
|
165
157
|
* <li>
|
|
166
158
|
* <p>An <i>inbound Resolver endpoint</i> forwards DNS queries to the DNS service for a VPC
|
|
167
159
|
* from your network.</p>
|
|
@@ -178,11 +170,9 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
178
170
|
/**
|
|
179
171
|
* <p>Creates a Resolver query logging configuration, which defines where you want Resolver to save DNS query logs that originate in your VPCs.
|
|
180
172
|
* Resolver can log queries only for VPCs that are in the same Region as the query logging configuration.</p>
|
|
181
|
-
*
|
|
182
|
-
* <p>To specify which VPCs you want to log queries for, you use <code>AssociateResolverQueryLogConfig</code>. For more information, see
|
|
173
|
+
* <p>To specify which VPCs you want to log queries for, you use <code>AssociateResolverQueryLogConfig</code>. For more information, see
|
|
183
174
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverQueryLogConfig.html">AssociateResolverQueryLogConfig</a>. </p>
|
|
184
|
-
*
|
|
185
|
-
* <p>You can optionally use Resource Access Manager (RAM) to share a query logging configuration with other Amazon Web Services accounts. The other accounts
|
|
175
|
+
* <p>You can optionally use Resource Access Manager (RAM) to share a query logging configuration with other Amazon Web Services accounts. The other accounts
|
|
186
176
|
* can then associate VPCs with the configuration. The query logs that Resolver creates for a configuration include all DNS queries that originate in all
|
|
187
177
|
* VPCs that are associated with the configuration.</p>
|
|
188
178
|
*/
|
|
@@ -217,7 +207,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
217
207
|
/**
|
|
218
208
|
* <p>Deletes a Resolver endpoint. The effect of deleting a Resolver endpoint depends on whether it's an inbound or an outbound
|
|
219
209
|
* Resolver endpoint:</p>
|
|
220
|
-
*
|
|
210
|
+
* <ul>
|
|
221
211
|
* <li>
|
|
222
212
|
* <p>
|
|
223
213
|
* <b>Inbound</b>: DNS queries from your network are no longer routed
|
|
@@ -236,11 +226,9 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
236
226
|
* <p>Deletes a query logging configuration. When you delete a configuration, Resolver stops logging DNS queries for all of the Amazon VPCs that are
|
|
237
227
|
* associated with the configuration. This also applies if the query logging configuration is shared with other Amazon Web Services accounts, and
|
|
238
228
|
* the other accounts have associated VPCs with the shared configuration.</p>
|
|
239
|
-
*
|
|
240
|
-
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs from the configuration. See
|
|
229
|
+
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs from the configuration. See
|
|
241
230
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverQueryLogConfig.html">DisassociateResolverQueryLogConfig</a>.</p>
|
|
242
|
-
*
|
|
243
|
-
* <p>If you used Resource Access Manager (RAM) to share a query logging configuration with other accounts, you must stop sharing
|
|
231
|
+
* <p>If you used Resource Access Manager (RAM) to share a query logging configuration with other accounts, you must stop sharing
|
|
244
232
|
* the configuration before you can delete a configuration. The accounts that you shared the configuration with can first disassociate VPCs
|
|
245
233
|
* that they associated with the configuration, but that's not necessary. If you stop sharing the configuration, those VPCs are automatically
|
|
246
234
|
* disassociated from the configuration.</p>
|
|
@@ -265,7 +253,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
265
253
|
/**
|
|
266
254
|
* <p>Removes IP addresses from an inbound or an outbound Resolver endpoint. If you want to remove more than one IP address,
|
|
267
255
|
* submit one <code>DisassociateResolverEndpointIpAddress</code> request for each IP address.</p>
|
|
268
|
-
*
|
|
256
|
+
* <p>To add an IP address to an endpoint, see
|
|
269
257
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverEndpointIpAddress.html">AssociateResolverEndpointIpAddress</a>.
|
|
270
258
|
* </p>
|
|
271
259
|
*/
|
|
@@ -274,13 +262,12 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
274
262
|
disassociateResolverEndpointIpAddress(args: DisassociateResolverEndpointIpAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResolverEndpointIpAddressCommandOutput) => void): void;
|
|
275
263
|
/**
|
|
276
264
|
* <p>Disassociates a VPC from a query logging configuration.</p>
|
|
277
|
-
*
|
|
278
|
-
*
|
|
279
|
-
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs
|
|
265
|
+
* <note>
|
|
266
|
+
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs
|
|
280
267
|
* from the configuration. If you used Resource Access Manager (RAM) to share a
|
|
281
268
|
* query logging configuration with other accounts, VPCs can be disassociated from the
|
|
282
269
|
* configuration in the following ways:</p>
|
|
283
|
-
*
|
|
270
|
+
* <ul>
|
|
284
271
|
* <li>
|
|
285
272
|
* <p>The accounts that you shared the configuration with can disassociate VPCs from the configuration.</p>
|
|
286
273
|
* </li>
|
|
@@ -288,17 +275,17 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
288
275
|
* <p>You can stop sharing the configuration.</p>
|
|
289
276
|
* </li>
|
|
290
277
|
* </ul>
|
|
291
|
-
*
|
|
278
|
+
* </note>
|
|
292
279
|
*/
|
|
293
280
|
disassociateResolverQueryLogConfig(args: DisassociateResolverQueryLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResolverQueryLogConfigCommandOutput>;
|
|
294
281
|
disassociateResolverQueryLogConfig(args: DisassociateResolverQueryLogConfigCommandInput, cb: (err: any, data?: DisassociateResolverQueryLogConfigCommandOutput) => void): void;
|
|
295
282
|
disassociateResolverQueryLogConfig(args: DisassociateResolverQueryLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResolverQueryLogConfigCommandOutput) => void): void;
|
|
296
283
|
/**
|
|
297
284
|
* <p>Removes the association between a specified Resolver rule and a specified VPC.</p>
|
|
298
|
-
*
|
|
299
|
-
*
|
|
285
|
+
* <important>
|
|
286
|
+
* <p>If you disassociate a Resolver rule from a VPC, Resolver stops forwarding DNS queries for the
|
|
300
287
|
* domain name that you specified in the Resolver rule. </p>
|
|
301
|
-
*
|
|
288
|
+
* </important>
|
|
302
289
|
*/
|
|
303
290
|
disassociateResolverRule(args: DisassociateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResolverRuleCommandOutput>;
|
|
304
291
|
disassociateResolverRule(args: DisassociateResolverRuleCommandInput, cb: (err: any, data?: DisassociateResolverRuleCommandOutput) => void): void;
|
|
@@ -336,7 +323,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
336
323
|
getFirewallRuleGroupPolicy(args: GetFirewallRuleGroupPolicyCommandInput, cb: (err: any, data?: GetFirewallRuleGroupPolicyCommandOutput) => void): void;
|
|
337
324
|
getFirewallRuleGroupPolicy(args: GetFirewallRuleGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallRuleGroupPolicyCommandOutput) => void): void;
|
|
338
325
|
/**
|
|
339
|
-
* <p>Retrieves the behavior configuration of Route
|
|
326
|
+
* <p>Retrieves the behavior configuration of Route 53 Resolver behavior for a single VPC from
|
|
340
327
|
* Amazon Virtual Private Cloud.</p>
|
|
341
328
|
*/
|
|
342
329
|
getResolverConfig(args: GetResolverConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverConfigCommandOutput>;
|
|
@@ -403,16 +390,16 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
403
390
|
* requirements: </p>
|
|
404
391
|
* <ul>
|
|
405
392
|
* <li>
|
|
406
|
-
*
|
|
407
|
-
*
|
|
393
|
+
* <p>It can optionally start with <code>*</code> (asterisk).</p>
|
|
394
|
+
* </li>
|
|
408
395
|
* <li>
|
|
409
|
-
*
|
|
396
|
+
* <p>With the exception of the optional starting asterisk, it must only contain
|
|
410
397
|
* the following characters: <code>A-Z</code>, <code>a-z</code>,
|
|
411
398
|
* <code>0-9</code>, <code>-</code> (hyphen).</p>
|
|
412
|
-
*
|
|
399
|
+
* </li>
|
|
413
400
|
* <li>
|
|
414
|
-
*
|
|
415
|
-
*
|
|
401
|
+
* <p>It must be from 1-255 characters in length. </p>
|
|
402
|
+
* </li>
|
|
416
403
|
* </ul>
|
|
417
404
|
*/
|
|
418
405
|
importFirewallDomains(args: ImportFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ImportFirewallDomainsCommandOutput>;
|
|
@@ -462,7 +449,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
462
449
|
listFirewallRules(args: ListFirewallRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
|
|
463
450
|
/**
|
|
464
451
|
* <p>Retrieves the Resolver configurations that you have defined.
|
|
465
|
-
* Route
|
|
452
|
+
* Route 53 Resolver uses the configurations to manage DNS resolution behavior for your VPCs.</p>
|
|
466
453
|
*/
|
|
467
454
|
listResolverConfigs(args: ListResolverConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverConfigsCommandOutput>;
|
|
468
455
|
listResolverConfigs(args: ListResolverConfigsCommandInput, cb: (err: any, data?: ListResolverConfigsCommandOutput) => void): void;
|
|
@@ -576,7 +563,7 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
576
563
|
updateFirewallRuleGroupAssociation(args: UpdateFirewallRuleGroupAssociationCommandInput, cb: (err: any, data?: UpdateFirewallRuleGroupAssociationCommandOutput) => void): void;
|
|
577
564
|
updateFirewallRuleGroupAssociation(args: UpdateFirewallRuleGroupAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallRuleGroupAssociationCommandOutput) => void): void;
|
|
578
565
|
/**
|
|
579
|
-
* <p>Updates the behavior configuration of Route
|
|
566
|
+
* <p>Updates the behavior configuration of Route 53 Resolver behavior for a single VPC from
|
|
580
567
|
* Amazon Virtual Private Cloud.</p>
|
|
581
568
|
*/
|
|
582
569
|
updateResolverConfig(args: UpdateResolverConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverConfigCommandOutput>;
|
|
@@ -589,7 +576,8 @@ export declare class Route53Resolver extends Route53ResolverClient {
|
|
|
589
576
|
updateResolverDnssecConfig(args: UpdateResolverDnssecConfigCommandInput, cb: (err: any, data?: UpdateResolverDnssecConfigCommandOutput) => void): void;
|
|
590
577
|
updateResolverDnssecConfig(args: UpdateResolverDnssecConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResolverDnssecConfigCommandOutput) => void): void;
|
|
591
578
|
/**
|
|
592
|
-
* <p>Updates the name
|
|
579
|
+
* <p>Updates the name, or enpoint type for an inbound or an outbound Resolver endpoint.
|
|
580
|
+
* You can only update between IPV4 and DUALSTACK, IPV6 endpoint type can't be updated to other type. </p>
|
|
593
581
|
*/
|
|
594
582
|
updateResolverEndpoint(args: UpdateResolverEndpointCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverEndpointCommandOutput>;
|
|
595
583
|
updateResolverEndpoint(args: UpdateResolverEndpointCommandInput, cb: (err: any, data?: UpdateResolverEndpointCommandOutput) => void): void;
|
|
@@ -191,32 +191,26 @@ export interface Route53ResolverClientResolvedConfig extends Route53ResolverClie
|
|
|
191
191
|
* such as domain names for EC2 instances or Elastic Load Balancing load balancers.
|
|
192
192
|
* Resolver performs recursive lookups against public name servers for all other domain
|
|
193
193
|
* names.</p>
|
|
194
|
-
*
|
|
195
|
-
*
|
|
196
|
-
*
|
|
197
|
-
* <p>
|
|
194
|
+
* <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p>
|
|
195
|
+
* <p>
|
|
198
196
|
* <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b>
|
|
199
197
|
* </p>
|
|
200
|
-
*
|
|
201
|
-
* <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers
|
|
198
|
+
* <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers
|
|
202
199
|
* to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone.
|
|
203
200
|
* For more information, see
|
|
204
201
|
* <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers
|
|
205
202
|
* on Your Network Forward DNS Queries to Route 53 Resolver</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
206
|
-
*
|
|
207
|
-
* <p>
|
|
203
|
+
* <p>
|
|
208
204
|
* <b>Conditionally forward queries from a VPC to resolvers on your network</b>
|
|
209
205
|
* </p>
|
|
210
|
-
*
|
|
211
|
-
* <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network.
|
|
206
|
+
* <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network.
|
|
212
207
|
* To forward selected queries, you create Resolver rules that specify the domain names for the DNS queries that you want to forward
|
|
213
208
|
* (such as example.com), and the IP addresses of the DNS resolvers on your network that you want to forward the queries to.
|
|
214
209
|
* If a query matches multiple rules (example.com, acme.example.com), Resolver chooses the rule with the most specific match
|
|
215
210
|
* (acme.example.com) and forwards the query to the IP addresses that you specified in that rule. For more information, see
|
|
216
211
|
* <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-vpc-to-network">How Route 53 Resolver
|
|
217
212
|
* Forwards DNS Queries from Your VPCs to Your Network</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
218
|
-
*
|
|
219
|
-
* <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose
|
|
213
|
+
* <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose
|
|
220
214
|
* whether to forward queries from your VPCs to your network (outbound queries), from your
|
|
221
215
|
* network to your VPCs (inbound queries), or both.</p>
|
|
222
216
|
*/
|
|
@@ -16,7 +16,7 @@ export interface AssociateResolverEndpointIpAddressCommandOutput extends Associa
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Adds IP addresses to an inbound or an outbound Resolver endpoint. If you want to add more than one IP address,
|
|
18
18
|
* submit one <code>AssociateResolverEndpointIpAddress</code> request for each IP address.</p>
|
|
19
|
-
*
|
|
19
|
+
* <p>To remove an IP address from an endpoint, see
|
|
20
20
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverEndpointIpAddress.html">DisassociateResolverEndpointIpAddress</a>.
|
|
21
21
|
* </p>
|
|
22
22
|
* @example
|
|
@@ -17,12 +17,10 @@ export interface AssociateResolverQueryLogConfigCommandOutput extends AssociateR
|
|
|
17
17
|
* <p>Associates an Amazon VPC with a specified query logging configuration. Route 53 Resolver logs DNS queries that originate in all of the Amazon VPCs
|
|
18
18
|
* that are associated with a specified query logging configuration. To associate more than one VPC with a configuration, submit one <code>AssociateResolverQueryLogConfig</code>
|
|
19
19
|
* request for each VPC.</p>
|
|
20
|
-
*
|
|
21
|
-
* <note>
|
|
20
|
+
* <note>
|
|
22
21
|
* <p>The VPCs that you associate with a query logging configuration must be in the same Region as the configuration.</p>
|
|
23
22
|
* </note>
|
|
24
|
-
*
|
|
25
|
-
* <p>To remove a VPC from a query logging configuration, see
|
|
23
|
+
* <p>To remove a VPC from a query logging configuration, see
|
|
26
24
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverQueryLogConfig.html">DisassociateResolverQueryLogConfig</a>.
|
|
27
25
|
* </p>
|
|
28
26
|
* @example
|
|
@@ -15,7 +15,7 @@ export interface CreateResolverEndpointCommandOutput extends CreateResolverEndpo
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Creates a Resolver endpoint. There are two types of Resolver endpoints, inbound and outbound:</p>
|
|
18
|
-
*
|
|
18
|
+
* <ul>
|
|
19
19
|
* <li>
|
|
20
20
|
* <p>An <i>inbound Resolver endpoint</i> forwards DNS queries to the DNS service for a VPC
|
|
21
21
|
* from your network.</p>
|
|
@@ -16,11 +16,9 @@ export interface CreateResolverQueryLogConfigCommandOutput extends CreateResolve
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Creates a Resolver query logging configuration, which defines where you want Resolver to save DNS query logs that originate in your VPCs.
|
|
18
18
|
* Resolver can log queries only for VPCs that are in the same Region as the query logging configuration.</p>
|
|
19
|
-
*
|
|
20
|
-
* <p>To specify which VPCs you want to log queries for, you use <code>AssociateResolverQueryLogConfig</code>. For more information, see
|
|
19
|
+
* <p>To specify which VPCs you want to log queries for, you use <code>AssociateResolverQueryLogConfig</code>. For more information, see
|
|
21
20
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverQueryLogConfig.html">AssociateResolverQueryLogConfig</a>. </p>
|
|
22
|
-
*
|
|
23
|
-
* <p>You can optionally use Resource Access Manager (RAM) to share a query logging configuration with other Amazon Web Services accounts. The other accounts
|
|
21
|
+
* <p>You can optionally use Resource Access Manager (RAM) to share a query logging configuration with other Amazon Web Services accounts. The other accounts
|
|
24
22
|
* can then associate VPCs with the configuration. The query logs that Resolver creates for a configuration include all DNS queries that originate in all
|
|
25
23
|
* VPCs that are associated with the configuration.</p>
|
|
26
24
|
* @example
|
|
@@ -16,7 +16,7 @@ export interface DeleteResolverEndpointCommandOutput extends DeleteResolverEndpo
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Deletes a Resolver endpoint. The effect of deleting a Resolver endpoint depends on whether it's an inbound or an outbound
|
|
18
18
|
* Resolver endpoint:</p>
|
|
19
|
-
*
|
|
19
|
+
* <ul>
|
|
20
20
|
* <li>
|
|
21
21
|
* <p>
|
|
22
22
|
* <b>Inbound</b>: DNS queries from your network are no longer routed
|
|
@@ -17,11 +17,9 @@ export interface DeleteResolverQueryLogConfigCommandOutput extends DeleteResolve
|
|
|
17
17
|
* <p>Deletes a query logging configuration. When you delete a configuration, Resolver stops logging DNS queries for all of the Amazon VPCs that are
|
|
18
18
|
* associated with the configuration. This also applies if the query logging configuration is shared with other Amazon Web Services accounts, and
|
|
19
19
|
* the other accounts have associated VPCs with the shared configuration.</p>
|
|
20
|
-
*
|
|
21
|
-
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs from the configuration. See
|
|
20
|
+
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs from the configuration. See
|
|
22
21
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverQueryLogConfig.html">DisassociateResolverQueryLogConfig</a>.</p>
|
|
23
|
-
*
|
|
24
|
-
* <p>If you used Resource Access Manager (RAM) to share a query logging configuration with other accounts, you must stop sharing
|
|
22
|
+
* <p>If you used Resource Access Manager (RAM) to share a query logging configuration with other accounts, you must stop sharing
|
|
25
23
|
* the configuration before you can delete a configuration. The accounts that you shared the configuration with can first disassociate VPCs
|
|
26
24
|
* that they associated with the configuration, but that's not necessary. If you stop sharing the configuration, those VPCs are automatically
|
|
27
25
|
* disassociated from the configuration.</p>
|
|
@@ -16,7 +16,7 @@ export interface DisassociateResolverEndpointIpAddressCommandOutput extends Disa
|
|
|
16
16
|
/**
|
|
17
17
|
* <p>Removes IP addresses from an inbound or an outbound Resolver endpoint. If you want to remove more than one IP address,
|
|
18
18
|
* submit one <code>DisassociateResolverEndpointIpAddress</code> request for each IP address.</p>
|
|
19
|
-
*
|
|
19
|
+
* <p>To add an IP address to an endpoint, see
|
|
20
20
|
* <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverEndpointIpAddress.html">AssociateResolverEndpointIpAddress</a>.
|
|
21
21
|
* </p>
|
|
22
22
|
* @example
|
|
@@ -15,13 +15,12 @@ export interface DisassociateResolverQueryLogConfigCommandOutput extends Disasso
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Disassociates a VPC from a query logging configuration.</p>
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs
|
|
18
|
+
* <note>
|
|
19
|
+
* <p>Before you can delete a query logging configuration, you must first disassociate all VPCs
|
|
21
20
|
* from the configuration. If you used Resource Access Manager (RAM) to share a
|
|
22
21
|
* query logging configuration with other accounts, VPCs can be disassociated from the
|
|
23
22
|
* configuration in the following ways:</p>
|
|
24
|
-
*
|
|
23
|
+
* <ul>
|
|
25
24
|
* <li>
|
|
26
25
|
* <p>The accounts that you shared the configuration with can disassociate VPCs from the configuration.</p>
|
|
27
26
|
* </li>
|
|
@@ -29,7 +28,7 @@ export interface DisassociateResolverQueryLogConfigCommandOutput extends Disasso
|
|
|
29
28
|
* <p>You can stop sharing the configuration.</p>
|
|
30
29
|
* </li>
|
|
31
30
|
* </ul>
|
|
32
|
-
*
|
|
31
|
+
* </note>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -15,10 +15,10 @@ export interface DisassociateResolverRuleCommandOutput extends DisassociateResol
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Removes the association between a specified Resolver rule and a specified VPC.</p>
|
|
18
|
-
*
|
|
19
|
-
*
|
|
18
|
+
* <important>
|
|
19
|
+
* <p>If you disassociate a Resolver rule from a VPC, Resolver stops forwarding DNS queries for the
|
|
20
20
|
* domain name that you specified in the Resolver rule. </p>
|
|
21
|
-
*
|
|
21
|
+
* </important>
|
|
22
22
|
* @example
|
|
23
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
24
24
|
* ```javascript
|
|
@@ -14,7 +14,7 @@ export interface GetResolverConfigCommandInput extends GetResolverConfigRequest
|
|
|
14
14
|
export interface GetResolverConfigCommandOutput extends GetResolverConfigResponse, __MetadataBearer {
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* <p>Retrieves the behavior configuration of Route
|
|
17
|
+
* <p>Retrieves the behavior configuration of Route 53 Resolver behavior for a single VPC from
|
|
18
18
|
* Amazon Virtual Private Cloud.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -19,16 +19,16 @@ export interface ImportFirewallDomainsCommandOutput extends ImportFirewallDomain
|
|
|
19
19
|
* requirements: </p>
|
|
20
20
|
* <ul>
|
|
21
21
|
* <li>
|
|
22
|
-
*
|
|
23
|
-
*
|
|
22
|
+
* <p>It can optionally start with <code>*</code> (asterisk).</p>
|
|
23
|
+
* </li>
|
|
24
24
|
* <li>
|
|
25
|
-
*
|
|
25
|
+
* <p>With the exception of the optional starting asterisk, it must only contain
|
|
26
26
|
* the following characters: <code>A-Z</code>, <code>a-z</code>,
|
|
27
27
|
* <code>0-9</code>, <code>-</code> (hyphen).</p>
|
|
28
|
-
*
|
|
28
|
+
* </li>
|
|
29
29
|
* <li>
|
|
30
|
-
*
|
|
31
|
-
*
|
|
30
|
+
* <p>It must be from 1-255 characters in length. </p>
|
|
31
|
+
* </li>
|
|
32
32
|
* </ul>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -15,7 +15,7 @@ export interface ListResolverConfigsCommandOutput extends ListResolverConfigsRes
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* <p>Retrieves the Resolver configurations that you have defined.
|
|
18
|
-
* Route
|
|
18
|
+
* Route 53 Resolver uses the configurations to manage DNS resolution behavior for your VPCs.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
21
21
|
* ```javascript
|
|
@@ -14,7 +14,7 @@ export interface UpdateResolverConfigCommandInput extends UpdateResolverConfigRe
|
|
|
14
14
|
export interface UpdateResolverConfigCommandOutput extends UpdateResolverConfigResponse, __MetadataBearer {
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* <p>Updates the behavior configuration of Route
|
|
17
|
+
* <p>Updates the behavior configuration of Route 53 Resolver behavior for a single VPC from
|
|
18
18
|
* Amazon Virtual Private Cloud.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -14,7 +14,8 @@ export interface UpdateResolverEndpointCommandInput extends UpdateResolverEndpoi
|
|
|
14
14
|
export interface UpdateResolverEndpointCommandOutput extends UpdateResolverEndpointResponse, __MetadataBearer {
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* <p>Updates the name
|
|
17
|
+
* <p>Updates the name, or enpoint type for an inbound or an outbound Resolver endpoint.
|
|
18
|
+
* You can only update between IPV4 and DUALSTACK, IPV6 endpoint type can't be updated to other type. </p>
|
|
18
19
|
* @example
|
|
19
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
20
21
|
* ```javascript
|