@aws-sdk/client-route53resolver 3.312.0 → 3.316.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.
@@ -63,594 +63,415 @@ import { UpdateResolverDnssecConfigCommandInput, UpdateResolverDnssecConfigComma
63
63
  import { UpdateResolverEndpointCommandInput, UpdateResolverEndpointCommandOutput } from "./commands/UpdateResolverEndpointCommand";
64
64
  import { UpdateResolverRuleCommandInput, UpdateResolverRuleCommandOutput } from "./commands/UpdateResolverRuleCommand";
65
65
  import { Route53ResolverClient } from "./Route53ResolverClient";
66
- /**
67
- * @public
68
- * <p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC
69
- * from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names
70
- * such as domain names for EC2 instances or Elastic Load Balancing load balancers.
71
- * Resolver performs recursive lookups against public name servers for all other domain
72
- * names.</p>
73
- * <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p>
74
- * <p>
75
- * <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b>
76
- * </p>
77
- * <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers
78
- * to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone.
79
- * For more information, see
80
- * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers
81
- * on Your Network Forward DNS Queries to Route 53 Resolver</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
82
- * <p>
83
- * <b>Conditionally forward queries from a VPC to resolvers on your network</b>
84
- * </p>
85
- * <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network.
86
- * To forward selected queries, you create Resolver rules that specify the domain names for the DNS queries that you want to forward
87
- * (such as example.com), and the IP addresses of the DNS resolvers on your network that you want to forward the queries to.
88
- * If a query matches multiple rules (example.com, acme.example.com), Resolver chooses the rule with the most specific match
89
- * (acme.example.com) and forwards the query to the IP addresses that you specified in that rule. For more information, see
90
- * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-vpc-to-network">How Route 53 Resolver
91
- * Forwards DNS Queries from Your VPCs to Your Network</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
92
- * <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose
93
- * whether to forward queries from your VPCs to your network (outbound queries), from your
94
- * network to your VPCs (inbound queries), or both.</p>
95
- */
96
- export declare class Route53Resolver extends Route53ResolverClient {
66
+ export interface Route53Resolver {
97
67
  /**
98
- * @public
99
- * <p>Associates a <a>FirewallRuleGroup</a> with a VPC, to provide DNS filtering for the VPC. </p>
68
+ * @see {@link AssociateFirewallRuleGroupCommand}
100
69
  */
101
70
  associateFirewallRuleGroup(args: AssociateFirewallRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateFirewallRuleGroupCommandOutput>;
102
71
  associateFirewallRuleGroup(args: AssociateFirewallRuleGroupCommandInput, cb: (err: any, data?: AssociateFirewallRuleGroupCommandOutput) => void): void;
103
72
  associateFirewallRuleGroup(args: AssociateFirewallRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateFirewallRuleGroupCommandOutput) => void): void;
104
73
  /**
105
- * @public
106
- * <p>Adds IP addresses to an inbound or an outbound Resolver endpoint. If you want to add more than one IP address,
107
- * submit one <code>AssociateResolverEndpointIpAddress</code> request for each IP address.</p>
108
- * <p>To remove an IP address from an endpoint, see
109
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverEndpointIpAddress.html">DisassociateResolverEndpointIpAddress</a>.
110
- * </p>
74
+ * @see {@link AssociateResolverEndpointIpAddressCommand}
111
75
  */
112
76
  associateResolverEndpointIpAddress(args: AssociateResolverEndpointIpAddressCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResolverEndpointIpAddressCommandOutput>;
113
77
  associateResolverEndpointIpAddress(args: AssociateResolverEndpointIpAddressCommandInput, cb: (err: any, data?: AssociateResolverEndpointIpAddressCommandOutput) => void): void;
114
78
  associateResolverEndpointIpAddress(args: AssociateResolverEndpointIpAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResolverEndpointIpAddressCommandOutput) => void): void;
115
79
  /**
116
- * @public
117
- * <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
118
- * that are associated with a specified query logging configuration. To associate more than one VPC with a configuration, submit one <code>AssociateResolverQueryLogConfig</code>
119
- * request for each VPC.</p>
120
- * <note>
121
- * <p>The VPCs that you associate with a query logging configuration must be in the same Region as the configuration.</p>
122
- * </note>
123
- * <p>To remove a VPC from a query logging configuration, see
124
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverQueryLogConfig.html">DisassociateResolverQueryLogConfig</a>.
125
- * </p>
80
+ * @see {@link AssociateResolverQueryLogConfigCommand}
126
81
  */
127
82
  associateResolverQueryLogConfig(args: AssociateResolverQueryLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResolverQueryLogConfigCommandOutput>;
128
83
  associateResolverQueryLogConfig(args: AssociateResolverQueryLogConfigCommandInput, cb: (err: any, data?: AssociateResolverQueryLogConfigCommandOutput) => void): void;
129
84
  associateResolverQueryLogConfig(args: AssociateResolverQueryLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResolverQueryLogConfigCommandOutput) => void): void;
130
85
  /**
131
- * @public
132
- * <p>Associates a Resolver rule with a VPC. When you associate a rule with a VPC, Resolver forwards all DNS queries
133
- * for the domain name that is specified in the rule and that originate in the VPC. The queries are forwarded to the
134
- * IP addresses for the DNS resolvers that are specified in the rule. For more information about rules, see
135
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverRule.html">CreateResolverRule</a>. </p>
86
+ * @see {@link AssociateResolverRuleCommand}
136
87
  */
137
88
  associateResolverRule(args: AssociateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResolverRuleCommandOutput>;
138
89
  associateResolverRule(args: AssociateResolverRuleCommandInput, cb: (err: any, data?: AssociateResolverRuleCommandOutput) => void): void;
139
90
  associateResolverRule(args: AssociateResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResolverRuleCommandOutput) => void): void;
140
91
  /**
141
- * @public
142
- * <p>Creates an empty firewall domain list for use in DNS Firewall rules. You can populate the domains for the new list with a file, using <a>ImportFirewallDomains</a>, or with domain strings, using <a>UpdateFirewallDomains</a>. </p>
92
+ * @see {@link CreateFirewallDomainListCommand}
143
93
  */
144
94
  createFirewallDomainList(args: CreateFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<CreateFirewallDomainListCommandOutput>;
145
95
  createFirewallDomainList(args: CreateFirewallDomainListCommandInput, cb: (err: any, data?: CreateFirewallDomainListCommandOutput) => void): void;
146
96
  createFirewallDomainList(args: CreateFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallDomainListCommandOutput) => void): void;
147
97
  /**
148
- * @public
149
- * <p>Creates a single DNS Firewall rule in the specified rule group, using the specified domain list.</p>
98
+ * @see {@link CreateFirewallRuleCommand}
150
99
  */
151
100
  createFirewallRule(args: CreateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateFirewallRuleCommandOutput>;
152
101
  createFirewallRule(args: CreateFirewallRuleCommandInput, cb: (err: any, data?: CreateFirewallRuleCommandOutput) => void): void;
153
102
  createFirewallRule(args: CreateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallRuleCommandOutput) => void): void;
154
103
  /**
155
- * @public
156
- * <p>Creates an empty DNS Firewall rule group for filtering DNS network traffic in a VPC. You can add rules to the new rule group
157
- * by calling <a>CreateFirewallRule</a>. </p>
104
+ * @see {@link CreateFirewallRuleGroupCommand}
158
105
  */
159
106
  createFirewallRuleGroup(args: CreateFirewallRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateFirewallRuleGroupCommandOutput>;
160
107
  createFirewallRuleGroup(args: CreateFirewallRuleGroupCommandInput, cb: (err: any, data?: CreateFirewallRuleGroupCommandOutput) => void): void;
161
108
  createFirewallRuleGroup(args: CreateFirewallRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallRuleGroupCommandOutput) => void): void;
162
109
  /**
163
- * @public
164
- * <p>Creates a Resolver endpoint. There are two types of Resolver endpoints, inbound and outbound:</p>
165
- * <ul>
166
- * <li>
167
- * <p>An <i>inbound Resolver endpoint</i> forwards DNS queries to the DNS service for a VPC
168
- * from your network.</p>
169
- * </li>
170
- * <li>
171
- * <p>An <i>outbound Resolver endpoint</i> forwards DNS queries from the DNS service for a VPC
172
- * to your network.</p>
173
- * </li>
174
- * </ul>
110
+ * @see {@link CreateResolverEndpointCommand}
175
111
  */
176
112
  createResolverEndpoint(args: CreateResolverEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateResolverEndpointCommandOutput>;
177
113
  createResolverEndpoint(args: CreateResolverEndpointCommandInput, cb: (err: any, data?: CreateResolverEndpointCommandOutput) => void): void;
178
114
  createResolverEndpoint(args: CreateResolverEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResolverEndpointCommandOutput) => void): void;
179
115
  /**
180
- * @public
181
- * <p>Creates a Resolver query logging configuration, which defines where you want Resolver to save DNS query logs that originate in your VPCs.
182
- * Resolver can log queries only for VPCs that are in the same Region as the query logging configuration.</p>
183
- * <p>To specify which VPCs you want to log queries for, you use <code>AssociateResolverQueryLogConfig</code>. For more information, see
184
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverQueryLogConfig.html">AssociateResolverQueryLogConfig</a>. </p>
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
186
- * 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
- * VPCs that are associated with the configuration.</p>
116
+ * @see {@link CreateResolverQueryLogConfigCommand}
188
117
  */
189
118
  createResolverQueryLogConfig(args: CreateResolverQueryLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateResolverQueryLogConfigCommandOutput>;
190
119
  createResolverQueryLogConfig(args: CreateResolverQueryLogConfigCommandInput, cb: (err: any, data?: CreateResolverQueryLogConfigCommandOutput) => void): void;
191
120
  createResolverQueryLogConfig(args: CreateResolverQueryLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResolverQueryLogConfigCommandOutput) => void): void;
192
121
  /**
193
- * @public
194
- * <p>For DNS queries that originate in your VPCs, specifies which Resolver endpoint the queries pass through,
195
- * one domain name that you want to forward to your network, and the IP addresses of the DNS resolvers in your network.</p>
122
+ * @see {@link CreateResolverRuleCommand}
196
123
  */
197
124
  createResolverRule(args: CreateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateResolverRuleCommandOutput>;
198
125
  createResolverRule(args: CreateResolverRuleCommandInput, cb: (err: any, data?: CreateResolverRuleCommandOutput) => void): void;
199
126
  createResolverRule(args: CreateResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResolverRuleCommandOutput) => void): void;
200
127
  /**
201
- * @public
202
- * <p>Deletes the specified domain list. </p>
128
+ * @see {@link DeleteFirewallDomainListCommand}
203
129
  */
204
130
  deleteFirewallDomainList(args: DeleteFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFirewallDomainListCommandOutput>;
205
131
  deleteFirewallDomainList(args: DeleteFirewallDomainListCommandInput, cb: (err: any, data?: DeleteFirewallDomainListCommandOutput) => void): void;
206
132
  deleteFirewallDomainList(args: DeleteFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallDomainListCommandOutput) => void): void;
207
133
  /**
208
- * @public
209
- * <p>Deletes the specified firewall rule.</p>
134
+ * @see {@link DeleteFirewallRuleCommand}
210
135
  */
211
136
  deleteFirewallRule(args: DeleteFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFirewallRuleCommandOutput>;
212
137
  deleteFirewallRule(args: DeleteFirewallRuleCommandInput, cb: (err: any, data?: DeleteFirewallRuleCommandOutput) => void): void;
213
138
  deleteFirewallRule(args: DeleteFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallRuleCommandOutput) => void): void;
214
139
  /**
215
- * @public
216
- * <p>Deletes the specified firewall rule group. </p>
140
+ * @see {@link DeleteFirewallRuleGroupCommand}
217
141
  */
218
142
  deleteFirewallRuleGroup(args: DeleteFirewallRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFirewallRuleGroupCommandOutput>;
219
143
  deleteFirewallRuleGroup(args: DeleteFirewallRuleGroupCommandInput, cb: (err: any, data?: DeleteFirewallRuleGroupCommandOutput) => void): void;
220
144
  deleteFirewallRuleGroup(args: DeleteFirewallRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallRuleGroupCommandOutput) => void): void;
221
145
  /**
222
- * @public
223
- * <p>Deletes a Resolver endpoint. The effect of deleting a Resolver endpoint depends on whether it's an inbound or an outbound
224
- * Resolver endpoint:</p>
225
- * <ul>
226
- * <li>
227
- * <p>
228
- * <b>Inbound</b>: DNS queries from your network are no longer routed
229
- * to the DNS service for the specified VPC.</p>
230
- * </li>
231
- * <li>
232
- * <p>
233
- * <b>Outbound</b>: DNS queries from a VPC are no longer routed to your network.</p>
234
- * </li>
235
- * </ul>
146
+ * @see {@link DeleteResolverEndpointCommand}
236
147
  */
237
148
  deleteResolverEndpoint(args: DeleteResolverEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResolverEndpointCommandOutput>;
238
149
  deleteResolverEndpoint(args: DeleteResolverEndpointCommandInput, cb: (err: any, data?: DeleteResolverEndpointCommandOutput) => void): void;
239
150
  deleteResolverEndpoint(args: DeleteResolverEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResolverEndpointCommandOutput) => void): void;
240
151
  /**
241
- * @public
242
- * <p>Deletes a query logging configuration. When you delete a configuration, Resolver stops logging DNS queries for all of the Amazon VPCs that are
243
- * associated with the configuration. This also applies if the query logging configuration is shared with other Amazon Web Services accounts, and
244
- * the other accounts have associated VPCs with the shared configuration.</p>
245
- * <p>Before you can delete a query logging configuration, you must first disassociate all VPCs from the configuration. See
246
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverQueryLogConfig.html">DisassociateResolverQueryLogConfig</a>.</p>
247
- * <p>If you used Resource Access Manager (RAM) to share a query logging configuration with other accounts, you must stop sharing
248
- * the configuration before you can delete a configuration. The accounts that you shared the configuration with can first disassociate VPCs
249
- * that they associated with the configuration, but that's not necessary. If you stop sharing the configuration, those VPCs are automatically
250
- * disassociated from the configuration.</p>
152
+ * @see {@link DeleteResolverQueryLogConfigCommand}
251
153
  */
252
154
  deleteResolverQueryLogConfig(args: DeleteResolverQueryLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResolverQueryLogConfigCommandOutput>;
253
155
  deleteResolverQueryLogConfig(args: DeleteResolverQueryLogConfigCommandInput, cb: (err: any, data?: DeleteResolverQueryLogConfigCommandOutput) => void): void;
254
156
  deleteResolverQueryLogConfig(args: DeleteResolverQueryLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResolverQueryLogConfigCommandOutput) => void): void;
255
157
  /**
256
- * @public
257
- * <p>Deletes a Resolver rule. Before you can delete a Resolver rule, you must disassociate it from all the VPCs that you
258
- * associated the Resolver rule with. For more information, see
259
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_DisassociateResolverRule.html">DisassociateResolverRule</a>.</p>
158
+ * @see {@link DeleteResolverRuleCommand}
260
159
  */
261
160
  deleteResolverRule(args: DeleteResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResolverRuleCommandOutput>;
262
161
  deleteResolverRule(args: DeleteResolverRuleCommandInput, cb: (err: any, data?: DeleteResolverRuleCommandOutput) => void): void;
263
162
  deleteResolverRule(args: DeleteResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResolverRuleCommandOutput) => void): void;
264
163
  /**
265
- * @public
266
- * <p>Disassociates a <a>FirewallRuleGroup</a> from a VPC, to remove DNS filtering from the VPC. </p>
164
+ * @see {@link DisassociateFirewallRuleGroupCommand}
267
165
  */
268
166
  disassociateFirewallRuleGroup(args: DisassociateFirewallRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateFirewallRuleGroupCommandOutput>;
269
167
  disassociateFirewallRuleGroup(args: DisassociateFirewallRuleGroupCommandInput, cb: (err: any, data?: DisassociateFirewallRuleGroupCommandOutput) => void): void;
270
168
  disassociateFirewallRuleGroup(args: DisassociateFirewallRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFirewallRuleGroupCommandOutput) => void): void;
271
169
  /**
272
- * @public
273
- * <p>Removes IP addresses from an inbound or an outbound Resolver endpoint. If you want to remove more than one IP address,
274
- * submit one <code>DisassociateResolverEndpointIpAddress</code> request for each IP address.</p>
275
- * <p>To add an IP address to an endpoint, see
276
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverEndpointIpAddress.html">AssociateResolverEndpointIpAddress</a>.
277
- * </p>
170
+ * @see {@link DisassociateResolverEndpointIpAddressCommand}
278
171
  */
279
172
  disassociateResolverEndpointIpAddress(args: DisassociateResolverEndpointIpAddressCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResolverEndpointIpAddressCommandOutput>;
280
173
  disassociateResolverEndpointIpAddress(args: DisassociateResolverEndpointIpAddressCommandInput, cb: (err: any, data?: DisassociateResolverEndpointIpAddressCommandOutput) => void): void;
281
174
  disassociateResolverEndpointIpAddress(args: DisassociateResolverEndpointIpAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResolverEndpointIpAddressCommandOutput) => void): void;
282
175
  /**
283
- * @public
284
- * <p>Disassociates a VPC from a query logging configuration.</p>
285
- * <note>
286
- * <p>Before you can delete a query logging configuration, you must first disassociate all VPCs
287
- * from the configuration. If you used Resource Access Manager (RAM) to share a
288
- * query logging configuration with other accounts, VPCs can be disassociated from the
289
- * configuration in the following ways:</p>
290
- * <ul>
291
- * <li>
292
- * <p>The accounts that you shared the configuration with can disassociate VPCs from the configuration.</p>
293
- * </li>
294
- * <li>
295
- * <p>You can stop sharing the configuration.</p>
296
- * </li>
297
- * </ul>
298
- * </note>
176
+ * @see {@link DisassociateResolverQueryLogConfigCommand}
299
177
  */
300
178
  disassociateResolverQueryLogConfig(args: DisassociateResolverQueryLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResolverQueryLogConfigCommandOutput>;
301
179
  disassociateResolverQueryLogConfig(args: DisassociateResolverQueryLogConfigCommandInput, cb: (err: any, data?: DisassociateResolverQueryLogConfigCommandOutput) => void): void;
302
180
  disassociateResolverQueryLogConfig(args: DisassociateResolverQueryLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResolverQueryLogConfigCommandOutput) => void): void;
303
181
  /**
304
- * @public
305
- * <p>Removes the association between a specified Resolver rule and a specified VPC.</p>
306
- * <important>
307
- * <p>If you disassociate a Resolver rule from a VPC, Resolver stops forwarding DNS queries for the
308
- * domain name that you specified in the Resolver rule. </p>
309
- * </important>
182
+ * @see {@link DisassociateResolverRuleCommand}
310
183
  */
311
184
  disassociateResolverRule(args: DisassociateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResolverRuleCommandOutput>;
312
185
  disassociateResolverRule(args: DisassociateResolverRuleCommandInput, cb: (err: any, data?: DisassociateResolverRuleCommandOutput) => void): void;
313
186
  disassociateResolverRule(args: DisassociateResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResolverRuleCommandOutput) => void): void;
314
187
  /**
315
- * @public
316
- * <p>Retrieves the configuration of the firewall behavior provided by DNS Firewall for a
317
- * single VPC from Amazon Virtual Private Cloud (Amazon VPC). </p>
188
+ * @see {@link GetFirewallConfigCommand}
318
189
  */
319
190
  getFirewallConfig(args: GetFirewallConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallConfigCommandOutput>;
320
191
  getFirewallConfig(args: GetFirewallConfigCommandInput, cb: (err: any, data?: GetFirewallConfigCommandOutput) => void): void;
321
192
  getFirewallConfig(args: GetFirewallConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallConfigCommandOutput) => void): void;
322
193
  /**
323
- * @public
324
- * <p>Retrieves the specified firewall domain list.</p>
194
+ * @see {@link GetFirewallDomainListCommand}
325
195
  */
326
196
  getFirewallDomainList(args: GetFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallDomainListCommandOutput>;
327
197
  getFirewallDomainList(args: GetFirewallDomainListCommandInput, cb: (err: any, data?: GetFirewallDomainListCommandOutput) => void): void;
328
198
  getFirewallDomainList(args: GetFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallDomainListCommandOutput) => void): void;
329
199
  /**
330
- * @public
331
- * <p>Retrieves the specified firewall rule group. </p>
200
+ * @see {@link GetFirewallRuleGroupCommand}
332
201
  */
333
202
  getFirewallRuleGroup(args: GetFirewallRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallRuleGroupCommandOutput>;
334
203
  getFirewallRuleGroup(args: GetFirewallRuleGroupCommandInput, cb: (err: any, data?: GetFirewallRuleGroupCommandOutput) => void): void;
335
204
  getFirewallRuleGroup(args: GetFirewallRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallRuleGroupCommandOutput) => void): void;
336
205
  /**
337
- * @public
338
- * <p>Retrieves a firewall rule group association, which enables DNS filtering for a VPC with one rule group. A VPC can have more than one firewall rule group association, and a rule group can be associated with more than one VPC.</p>
206
+ * @see {@link GetFirewallRuleGroupAssociationCommand}
339
207
  */
340
208
  getFirewallRuleGroupAssociation(args: GetFirewallRuleGroupAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallRuleGroupAssociationCommandOutput>;
341
209
  getFirewallRuleGroupAssociation(args: GetFirewallRuleGroupAssociationCommandInput, cb: (err: any, data?: GetFirewallRuleGroupAssociationCommandOutput) => void): void;
342
210
  getFirewallRuleGroupAssociation(args: GetFirewallRuleGroupAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallRuleGroupAssociationCommandOutput) => void): void;
343
211
  /**
344
- * @public
345
- * <p>Returns the Identity and Access Management (Amazon Web Services IAM) policy for sharing the
346
- * specified rule group. You can use the policy to share the rule group using Resource Access Manager (RAM). </p>
212
+ * @see {@link GetFirewallRuleGroupPolicyCommand}
347
213
  */
348
214
  getFirewallRuleGroupPolicy(args: GetFirewallRuleGroupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallRuleGroupPolicyCommandOutput>;
349
215
  getFirewallRuleGroupPolicy(args: GetFirewallRuleGroupPolicyCommandInput, cb: (err: any, data?: GetFirewallRuleGroupPolicyCommandOutput) => void): void;
350
216
  getFirewallRuleGroupPolicy(args: GetFirewallRuleGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallRuleGroupPolicyCommandOutput) => void): void;
351
217
  /**
352
- * @public
353
- * <p>Retrieves the behavior configuration of Route 53 Resolver behavior for a single VPC from
354
- * Amazon Virtual Private Cloud.</p>
218
+ * @see {@link GetResolverConfigCommand}
355
219
  */
356
220
  getResolverConfig(args: GetResolverConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverConfigCommandOutput>;
357
221
  getResolverConfig(args: GetResolverConfigCommandInput, cb: (err: any, data?: GetResolverConfigCommandOutput) => void): void;
358
222
  getResolverConfig(args: GetResolverConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverConfigCommandOutput) => void): void;
359
223
  /**
360
- * @public
361
- * <p>Gets DNSSEC validation information for a specified resource.</p>
224
+ * @see {@link GetResolverDnssecConfigCommand}
362
225
  */
363
226
  getResolverDnssecConfig(args: GetResolverDnssecConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverDnssecConfigCommandOutput>;
364
227
  getResolverDnssecConfig(args: GetResolverDnssecConfigCommandInput, cb: (err: any, data?: GetResolverDnssecConfigCommandOutput) => void): void;
365
228
  getResolverDnssecConfig(args: GetResolverDnssecConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverDnssecConfigCommandOutput) => void): void;
366
229
  /**
367
- * @public
368
- * <p>Gets information about a specified Resolver endpoint, such as whether it's an inbound or an outbound Resolver endpoint, and the
369
- * current status of the endpoint.</p>
230
+ * @see {@link GetResolverEndpointCommand}
370
231
  */
371
232
  getResolverEndpoint(args: GetResolverEndpointCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverEndpointCommandOutput>;
372
233
  getResolverEndpoint(args: GetResolverEndpointCommandInput, cb: (err: any, data?: GetResolverEndpointCommandOutput) => void): void;
373
234
  getResolverEndpoint(args: GetResolverEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverEndpointCommandOutput) => void): void;
374
235
  /**
375
- * @public
376
- * <p>Gets information about a specified Resolver query logging configuration, such as the number of VPCs that the configuration
377
- * is logging queries for and the location that logs are sent to. </p>
236
+ * @see {@link GetResolverQueryLogConfigCommand}
378
237
  */
379
238
  getResolverQueryLogConfig(args: GetResolverQueryLogConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverQueryLogConfigCommandOutput>;
380
239
  getResolverQueryLogConfig(args: GetResolverQueryLogConfigCommandInput, cb: (err: any, data?: GetResolverQueryLogConfigCommandOutput) => void): void;
381
240
  getResolverQueryLogConfig(args: GetResolverQueryLogConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverQueryLogConfigCommandOutput) => void): void;
382
241
  /**
383
- * @public
384
- * <p>Gets information about a specified association between a Resolver query logging configuration and an Amazon VPC. When you associate a VPC
385
- * with a query logging configuration, Resolver logs DNS queries that originate in that VPC.</p>
242
+ * @see {@link GetResolverQueryLogConfigAssociationCommand}
386
243
  */
387
244
  getResolverQueryLogConfigAssociation(args: GetResolverQueryLogConfigAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverQueryLogConfigAssociationCommandOutput>;
388
245
  getResolverQueryLogConfigAssociation(args: GetResolverQueryLogConfigAssociationCommandInput, cb: (err: any, data?: GetResolverQueryLogConfigAssociationCommandOutput) => void): void;
389
246
  getResolverQueryLogConfigAssociation(args: GetResolverQueryLogConfigAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverQueryLogConfigAssociationCommandOutput) => void): void;
390
247
  /**
391
- * @public
392
- * <p>Gets information about a query logging policy. A query logging policy specifies the Resolver query logging
393
- * operations and resources that you want to allow another Amazon Web Services account to be able to use.</p>
248
+ * @see {@link GetResolverQueryLogConfigPolicyCommand}
394
249
  */
395
250
  getResolverQueryLogConfigPolicy(args: GetResolverQueryLogConfigPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverQueryLogConfigPolicyCommandOutput>;
396
251
  getResolverQueryLogConfigPolicy(args: GetResolverQueryLogConfigPolicyCommandInput, cb: (err: any, data?: GetResolverQueryLogConfigPolicyCommandOutput) => void): void;
397
252
  getResolverQueryLogConfigPolicy(args: GetResolverQueryLogConfigPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverQueryLogConfigPolicyCommandOutput) => void): void;
398
253
  /**
399
- * @public
400
- * <p>Gets information about a specified Resolver rule, such as the domain name that the rule forwards DNS queries for and the ID of the
401
- * outbound Resolver endpoint that the rule is associated with.</p>
254
+ * @see {@link GetResolverRuleCommand}
402
255
  */
403
256
  getResolverRule(args: GetResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverRuleCommandOutput>;
404
257
  getResolverRule(args: GetResolverRuleCommandInput, cb: (err: any, data?: GetResolverRuleCommandOutput) => void): void;
405
258
  getResolverRule(args: GetResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverRuleCommandOutput) => void): void;
406
259
  /**
407
- * @public
408
- * <p>Gets information about an association between a specified Resolver rule and a VPC. You associate a Resolver rule and a VPC using
409
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_AssociateResolverRule.html">AssociateResolverRule</a>. </p>
260
+ * @see {@link GetResolverRuleAssociationCommand}
410
261
  */
411
262
  getResolverRuleAssociation(args: GetResolverRuleAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverRuleAssociationCommandOutput>;
412
263
  getResolverRuleAssociation(args: GetResolverRuleAssociationCommandInput, cb: (err: any, data?: GetResolverRuleAssociationCommandOutput) => void): void;
413
264
  getResolverRuleAssociation(args: GetResolverRuleAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverRuleAssociationCommandOutput) => void): void;
414
265
  /**
415
- * @public
416
- * <p>Gets information about the Resolver rule policy for a specified rule. A Resolver rule policy includes the rule that you want to share
417
- * with another account, the account that you want to share the rule with, and the Resolver operations that you want to allow the account to use. </p>
266
+ * @see {@link GetResolverRulePolicyCommand}
418
267
  */
419
268
  getResolverRulePolicy(args: GetResolverRulePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResolverRulePolicyCommandOutput>;
420
269
  getResolverRulePolicy(args: GetResolverRulePolicyCommandInput, cb: (err: any, data?: GetResolverRulePolicyCommandOutput) => void): void;
421
270
  getResolverRulePolicy(args: GetResolverRulePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResolverRulePolicyCommandOutput) => void): void;
422
271
  /**
423
- * @public
424
- * <p>Imports domain names from a file into a domain list, for use in a DNS firewall rule group. </p>
425
- * <p>Each domain specification in your domain list must satisfy the following
426
- * requirements: </p>
427
- * <ul>
428
- * <li>
429
- * <p>It can optionally start with <code>*</code> (asterisk).</p>
430
- * </li>
431
- * <li>
432
- * <p>With the exception of the optional starting asterisk, it must only contain
433
- * the following characters: <code>A-Z</code>, <code>a-z</code>,
434
- * <code>0-9</code>, <code>-</code> (hyphen).</p>
435
- * </li>
436
- * <li>
437
- * <p>It must be from 1-255 characters in length. </p>
438
- * </li>
439
- * </ul>
272
+ * @see {@link ImportFirewallDomainsCommand}
440
273
  */
441
274
  importFirewallDomains(args: ImportFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ImportFirewallDomainsCommandOutput>;
442
275
  importFirewallDomains(args: ImportFirewallDomainsCommandInput, cb: (err: any, data?: ImportFirewallDomainsCommandOutput) => void): void;
443
276
  importFirewallDomains(args: ImportFirewallDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportFirewallDomainsCommandOutput) => void): void;
444
277
  /**
445
- * @public
446
- * <p>Retrieves the firewall configurations that you have defined. DNS Firewall uses the configurations to manage firewall behavior for your VPCs. </p>
447
- * <p>A single call might return only a partial list of the configurations. For information, see <code>MaxResults</code>. </p>
278
+ * @see {@link ListFirewallConfigsCommand}
448
279
  */
449
280
  listFirewallConfigs(args: ListFirewallConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallConfigsCommandOutput>;
450
281
  listFirewallConfigs(args: ListFirewallConfigsCommandInput, cb: (err: any, data?: ListFirewallConfigsCommandOutput) => void): void;
451
282
  listFirewallConfigs(args: ListFirewallConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallConfigsCommandOutput) => void): void;
452
283
  /**
453
- * @public
454
- * <p>Retrieves the firewall domain lists that you have defined. For each firewall domain list, you can retrieve the domains that are defined for a list by calling <a>ListFirewallDomains</a>. </p>
455
- * <p>A single call to this list operation might return only a partial list of the domain lists. For information, see <code>MaxResults</code>. </p>
284
+ * @see {@link ListFirewallDomainListsCommand}
456
285
  */
457
286
  listFirewallDomainLists(args: ListFirewallDomainListsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallDomainListsCommandOutput>;
458
287
  listFirewallDomainLists(args: ListFirewallDomainListsCommandInput, cb: (err: any, data?: ListFirewallDomainListsCommandOutput) => void): void;
459
288
  listFirewallDomainLists(args: ListFirewallDomainListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallDomainListsCommandOutput) => void): void;
460
289
  /**
461
- * @public
462
- * <p>Retrieves the domains that you have defined for the specified firewall domain list. </p>
463
- * <p>A single call might return only a partial list of the domains. For information, see <code>MaxResults</code>. </p>
290
+ * @see {@link ListFirewallDomainsCommand}
464
291
  */
465
292
  listFirewallDomains(args: ListFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallDomainsCommandOutput>;
466
293
  listFirewallDomains(args: ListFirewallDomainsCommandInput, cb: (err: any, data?: ListFirewallDomainsCommandOutput) => void): void;
467
294
  listFirewallDomains(args: ListFirewallDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallDomainsCommandOutput) => void): void;
468
295
  /**
469
- * @public
470
- * <p>Retrieves the firewall rule group associations that you have defined. Each association enables DNS filtering for a VPC with one rule group. </p>
471
- * <p>A single call might return only a partial list of the associations. For information, see <code>MaxResults</code>. </p>
296
+ * @see {@link ListFirewallRuleGroupAssociationsCommand}
472
297
  */
473
298
  listFirewallRuleGroupAssociations(args: ListFirewallRuleGroupAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallRuleGroupAssociationsCommandOutput>;
474
299
  listFirewallRuleGroupAssociations(args: ListFirewallRuleGroupAssociationsCommandInput, cb: (err: any, data?: ListFirewallRuleGroupAssociationsCommandOutput) => void): void;
475
300
  listFirewallRuleGroupAssociations(args: ListFirewallRuleGroupAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRuleGroupAssociationsCommandOutput) => void): void;
476
301
  /**
477
- * @public
478
- * <p>Retrieves the minimal high-level information for the rule groups that you have defined. </p>
479
- * <p>A single call might return only a partial list of the rule groups. For information, see <code>MaxResults</code>. </p>
302
+ * @see {@link ListFirewallRuleGroupsCommand}
480
303
  */
481
304
  listFirewallRuleGroups(args: ListFirewallRuleGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallRuleGroupsCommandOutput>;
482
305
  listFirewallRuleGroups(args: ListFirewallRuleGroupsCommandInput, cb: (err: any, data?: ListFirewallRuleGroupsCommandOutput) => void): void;
483
306
  listFirewallRuleGroups(args: ListFirewallRuleGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRuleGroupsCommandOutput) => void): void;
484
307
  /**
485
- * @public
486
- * <p>Retrieves the firewall rules that you have defined for the specified firewall rule group. DNS Firewall uses the rules in a rule group to filter DNS network traffic for a VPC. </p>
487
- * <p>A single call might return only a partial list of the rules. For information, see <code>MaxResults</code>. </p>
308
+ * @see {@link ListFirewallRulesCommand}
488
309
  */
489
310
  listFirewallRules(args: ListFirewallRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallRulesCommandOutput>;
490
311
  listFirewallRules(args: ListFirewallRulesCommandInput, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
491
312
  listFirewallRules(args: ListFirewallRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
492
313
  /**
493
- * @public
494
- * <p>Retrieves the Resolver configurations that you have defined.
495
- * Route 53 Resolver uses the configurations to manage DNS resolution behavior for your VPCs.</p>
314
+ * @see {@link ListResolverConfigsCommand}
496
315
  */
497
316
  listResolverConfigs(args: ListResolverConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverConfigsCommandOutput>;
498
317
  listResolverConfigs(args: ListResolverConfigsCommandInput, cb: (err: any, data?: ListResolverConfigsCommandOutput) => void): void;
499
318
  listResolverConfigs(args: ListResolverConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverConfigsCommandOutput) => void): void;
500
319
  /**
501
- * @public
502
- * <p>Lists the configurations for DNSSEC validation that are associated with the current Amazon Web Services account.</p>
320
+ * @see {@link ListResolverDnssecConfigsCommand}
503
321
  */
504
322
  listResolverDnssecConfigs(args: ListResolverDnssecConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverDnssecConfigsCommandOutput>;
505
323
  listResolverDnssecConfigs(args: ListResolverDnssecConfigsCommandInput, cb: (err: any, data?: ListResolverDnssecConfigsCommandOutput) => void): void;
506
324
  listResolverDnssecConfigs(args: ListResolverDnssecConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverDnssecConfigsCommandOutput) => void): void;
507
325
  /**
508
- * @public
509
- * <p>Gets the IP addresses for a specified Resolver endpoint.</p>
326
+ * @see {@link ListResolverEndpointIpAddressesCommand}
510
327
  */
511
328
  listResolverEndpointIpAddresses(args: ListResolverEndpointIpAddressesCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverEndpointIpAddressesCommandOutput>;
512
329
  listResolverEndpointIpAddresses(args: ListResolverEndpointIpAddressesCommandInput, cb: (err: any, data?: ListResolverEndpointIpAddressesCommandOutput) => void): void;
513
330
  listResolverEndpointIpAddresses(args: ListResolverEndpointIpAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverEndpointIpAddressesCommandOutput) => void): void;
514
331
  /**
515
- * @public
516
- * <p>Lists all the Resolver endpoints that were created using the current Amazon Web Services account.</p>
332
+ * @see {@link ListResolverEndpointsCommand}
517
333
  */
518
334
  listResolverEndpoints(args: ListResolverEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverEndpointsCommandOutput>;
519
335
  listResolverEndpoints(args: ListResolverEndpointsCommandInput, cb: (err: any, data?: ListResolverEndpointsCommandOutput) => void): void;
520
336
  listResolverEndpoints(args: ListResolverEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverEndpointsCommandOutput) => void): void;
521
337
  /**
522
- * @public
523
- * <p>Lists information about associations between Amazon VPCs and query logging configurations.</p>
338
+ * @see {@link ListResolverQueryLogConfigAssociationsCommand}
524
339
  */
525
340
  listResolverQueryLogConfigAssociations(args: ListResolverQueryLogConfigAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverQueryLogConfigAssociationsCommandOutput>;
526
341
  listResolverQueryLogConfigAssociations(args: ListResolverQueryLogConfigAssociationsCommandInput, cb: (err: any, data?: ListResolverQueryLogConfigAssociationsCommandOutput) => void): void;
527
342
  listResolverQueryLogConfigAssociations(args: ListResolverQueryLogConfigAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverQueryLogConfigAssociationsCommandOutput) => void): void;
528
343
  /**
529
- * @public
530
- * <p>Lists information about the specified query logging configurations. Each configuration defines where you want Resolver to save
531
- * DNS query logs and specifies the VPCs that you want to log queries for.</p>
344
+ * @see {@link ListResolverQueryLogConfigsCommand}
532
345
  */
533
346
  listResolverQueryLogConfigs(args: ListResolverQueryLogConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverQueryLogConfigsCommandOutput>;
534
347
  listResolverQueryLogConfigs(args: ListResolverQueryLogConfigsCommandInput, cb: (err: any, data?: ListResolverQueryLogConfigsCommandOutput) => void): void;
535
348
  listResolverQueryLogConfigs(args: ListResolverQueryLogConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverQueryLogConfigsCommandOutput) => void): void;
536
349
  /**
537
- * @public
538
- * <p>Lists the associations that were created between Resolver rules and VPCs using the current Amazon Web Services account.</p>
350
+ * @see {@link ListResolverRuleAssociationsCommand}
539
351
  */
540
352
  listResolverRuleAssociations(args: ListResolverRuleAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverRuleAssociationsCommandOutput>;
541
353
  listResolverRuleAssociations(args: ListResolverRuleAssociationsCommandInput, cb: (err: any, data?: ListResolverRuleAssociationsCommandOutput) => void): void;
542
354
  listResolverRuleAssociations(args: ListResolverRuleAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverRuleAssociationsCommandOutput) => void): void;
543
355
  /**
544
- * @public
545
- * <p>Lists the Resolver rules that were created using the current Amazon Web Services account.</p>
356
+ * @see {@link ListResolverRulesCommand}
546
357
  */
547
358
  listResolverRules(args: ListResolverRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListResolverRulesCommandOutput>;
548
359
  listResolverRules(args: ListResolverRulesCommandInput, cb: (err: any, data?: ListResolverRulesCommandOutput) => void): void;
549
360
  listResolverRules(args: ListResolverRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResolverRulesCommandOutput) => void): void;
550
361
  /**
551
- * @public
552
- * <p>Lists the tags that you associated with the specified resource.</p>
362
+ * @see {@link ListTagsForResourceCommand}
553
363
  */
554
364
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
555
365
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
556
366
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
557
367
  /**
558
- * @public
559
- * <p>Attaches an Identity and Access Management (Amazon Web Services IAM) policy for sharing the rule
560
- * group. You can use the policy to share the rule group using Resource Access Manager
561
- * (RAM). </p>
368
+ * @see {@link PutFirewallRuleGroupPolicyCommand}
562
369
  */
563
370
  putFirewallRuleGroupPolicy(args: PutFirewallRuleGroupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutFirewallRuleGroupPolicyCommandOutput>;
564
371
  putFirewallRuleGroupPolicy(args: PutFirewallRuleGroupPolicyCommandInput, cb: (err: any, data?: PutFirewallRuleGroupPolicyCommandOutput) => void): void;
565
372
  putFirewallRuleGroupPolicy(args: PutFirewallRuleGroupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFirewallRuleGroupPolicyCommandOutput) => void): void;
566
373
  /**
567
- * @public
568
- * <p>Specifies an Amazon Web Services account that you want to share a query logging configuration with, the query logging configuration that you want to share,
569
- * and the operations that you want the account to be able to perform on the configuration.</p>
374
+ * @see {@link PutResolverQueryLogConfigPolicyCommand}
570
375
  */
571
376
  putResolverQueryLogConfigPolicy(args: PutResolverQueryLogConfigPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResolverQueryLogConfigPolicyCommandOutput>;
572
377
  putResolverQueryLogConfigPolicy(args: PutResolverQueryLogConfigPolicyCommandInput, cb: (err: any, data?: PutResolverQueryLogConfigPolicyCommandOutput) => void): void;
573
378
  putResolverQueryLogConfigPolicy(args: PutResolverQueryLogConfigPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResolverQueryLogConfigPolicyCommandOutput) => void): void;
574
379
  /**
575
- * @public
576
- * <p>Specifies an Amazon Web Services rule that you want to share with another account, the account that you want to share the rule with,
577
- * and the operations that you want the account to be able to perform on the rule.</p>
380
+ * @see {@link PutResolverRulePolicyCommand}
578
381
  */
579
382
  putResolverRulePolicy(args: PutResolverRulePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResolverRulePolicyCommandOutput>;
580
383
  putResolverRulePolicy(args: PutResolverRulePolicyCommandInput, cb: (err: any, data?: PutResolverRulePolicyCommandOutput) => void): void;
581
384
  putResolverRulePolicy(args: PutResolverRulePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResolverRulePolicyCommandOutput) => void): void;
582
385
  /**
583
- * @public
584
- * <p>Adds one or more tags to a specified resource.</p>
386
+ * @see {@link TagResourceCommand}
585
387
  */
586
388
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
587
389
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
588
390
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
589
391
  /**
590
- * @public
591
- * <p>Removes one or more tags from a specified resource.</p>
392
+ * @see {@link UntagResourceCommand}
592
393
  */
593
394
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
594
395
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
595
396
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
596
397
  /**
597
- * @public
598
- * <p>Updates the configuration of the firewall behavior provided by DNS Firewall for a single
599
- * VPC from Amazon Virtual Private Cloud (Amazon VPC). </p>
398
+ * @see {@link UpdateFirewallConfigCommand}
600
399
  */
601
400
  updateFirewallConfig(args: UpdateFirewallConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallConfigCommandOutput>;
602
401
  updateFirewallConfig(args: UpdateFirewallConfigCommandInput, cb: (err: any, data?: UpdateFirewallConfigCommandOutput) => void): void;
603
402
  updateFirewallConfig(args: UpdateFirewallConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallConfigCommandOutput) => void): void;
604
403
  /**
605
- * @public
606
- * <p>Updates the firewall domain list from an array of domain specifications. </p>
404
+ * @see {@link UpdateFirewallDomainsCommand}
607
405
  */
608
406
  updateFirewallDomains(args: UpdateFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallDomainsCommandOutput>;
609
407
  updateFirewallDomains(args: UpdateFirewallDomainsCommandInput, cb: (err: any, data?: UpdateFirewallDomainsCommandOutput) => void): void;
610
408
  updateFirewallDomains(args: UpdateFirewallDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallDomainsCommandOutput) => void): void;
611
409
  /**
612
- * @public
613
- * <p>Updates the specified firewall rule. </p>
410
+ * @see {@link UpdateFirewallRuleCommand}
614
411
  */
615
412
  updateFirewallRule(args: UpdateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallRuleCommandOutput>;
616
413
  updateFirewallRule(args: UpdateFirewallRuleCommandInput, cb: (err: any, data?: UpdateFirewallRuleCommandOutput) => void): void;
617
414
  updateFirewallRule(args: UpdateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallRuleCommandOutput) => void): void;
618
415
  /**
619
- * @public
620
- * <p>Changes the association of a <a>FirewallRuleGroup</a> with a VPC. The association enables DNS filtering for the VPC. </p>
416
+ * @see {@link UpdateFirewallRuleGroupAssociationCommand}
621
417
  */
622
418
  updateFirewallRuleGroupAssociation(args: UpdateFirewallRuleGroupAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallRuleGroupAssociationCommandOutput>;
623
419
  updateFirewallRuleGroupAssociation(args: UpdateFirewallRuleGroupAssociationCommandInput, cb: (err: any, data?: UpdateFirewallRuleGroupAssociationCommandOutput) => void): void;
624
420
  updateFirewallRuleGroupAssociation(args: UpdateFirewallRuleGroupAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallRuleGroupAssociationCommandOutput) => void): void;
625
421
  /**
626
- * @public
627
- * <p>Updates the behavior configuration of Route 53 Resolver behavior for a single VPC from
628
- * Amazon Virtual Private Cloud.</p>
422
+ * @see {@link UpdateResolverConfigCommand}
629
423
  */
630
424
  updateResolverConfig(args: UpdateResolverConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverConfigCommandOutput>;
631
425
  updateResolverConfig(args: UpdateResolverConfigCommandInput, cb: (err: any, data?: UpdateResolverConfigCommandOutput) => void): void;
632
426
  updateResolverConfig(args: UpdateResolverConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResolverConfigCommandOutput) => void): void;
633
427
  /**
634
- * @public
635
- * <p>Updates an existing DNSSEC validation configuration. If there is no existing DNSSEC validation configuration, one is created.</p>
428
+ * @see {@link UpdateResolverDnssecConfigCommand}
636
429
  */
637
430
  updateResolverDnssecConfig(args: UpdateResolverDnssecConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverDnssecConfigCommandOutput>;
638
431
  updateResolverDnssecConfig(args: UpdateResolverDnssecConfigCommandInput, cb: (err: any, data?: UpdateResolverDnssecConfigCommandOutput) => void): void;
639
432
  updateResolverDnssecConfig(args: UpdateResolverDnssecConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResolverDnssecConfigCommandOutput) => void): void;
640
433
  /**
641
- * @public
642
- * <p>Updates the name, or enpoint type for an inbound or an outbound Resolver endpoint.
643
- * You can only update between IPV4 and DUALSTACK, IPV6 endpoint type can't be updated to other type. </p>
434
+ * @see {@link UpdateResolverEndpointCommand}
644
435
  */
645
436
  updateResolverEndpoint(args: UpdateResolverEndpointCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverEndpointCommandOutput>;
646
437
  updateResolverEndpoint(args: UpdateResolverEndpointCommandInput, cb: (err: any, data?: UpdateResolverEndpointCommandOutput) => void): void;
647
438
  updateResolverEndpoint(args: UpdateResolverEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResolverEndpointCommandOutput) => void): void;
648
439
  /**
649
- * @public
650
- * <p>Updates settings for a specified Resolver rule. <code>ResolverRuleId</code> is required, and all other parameters are optional.
651
- * If you don't specify a parameter, it retains its current value.</p>
440
+ * @see {@link UpdateResolverRuleCommand}
652
441
  */
653
442
  updateResolverRule(args: UpdateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverRuleCommandOutput>;
654
443
  updateResolverRule(args: UpdateResolverRuleCommandInput, cb: (err: any, data?: UpdateResolverRuleCommandOutput) => void): void;
655
444
  updateResolverRule(args: UpdateResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResolverRuleCommandOutput) => void): void;
656
445
  }
446
+ /**
447
+ * @public
448
+ * <p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC
449
+ * from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names
450
+ * such as domain names for EC2 instances or Elastic Load Balancing load balancers.
451
+ * Resolver performs recursive lookups against public name servers for all other domain
452
+ * names.</p>
453
+ * <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p>
454
+ * <p>
455
+ * <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b>
456
+ * </p>
457
+ * <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers
458
+ * to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone.
459
+ * For more information, see
460
+ * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers
461
+ * on Your Network Forward DNS Queries to Route 53 Resolver</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
462
+ * <p>
463
+ * <b>Conditionally forward queries from a VPC to resolvers on your network</b>
464
+ * </p>
465
+ * <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network.
466
+ * To forward selected queries, you create Resolver rules that specify the domain names for the DNS queries that you want to forward
467
+ * (such as example.com), and the IP addresses of the DNS resolvers on your network that you want to forward the queries to.
468
+ * If a query matches multiple rules (example.com, acme.example.com), Resolver chooses the rule with the most specific match
469
+ * (acme.example.com) and forwards the query to the IP addresses that you specified in that rule. For more information, see
470
+ * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-vpc-to-network">How Route 53 Resolver
471
+ * Forwards DNS Queries from Your VPCs to Your Network</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
472
+ * <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose
473
+ * whether to forward queries from your VPCs to your network (outbound queries), from your
474
+ * network to your VPCs (inbound queries), or both.</p>
475
+ */
476
+ export declare class Route53Resolver extends Route53ResolverClient implements Route53Resolver {
477
+ }