aws-sdk-route53globalresolver 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-route53globalresolver/client.rb +3227 -0
- data/lib/aws-sdk-route53globalresolver/client_api.rb +1843 -0
- data/lib/aws-sdk-route53globalresolver/customizations.rb +0 -0
- data/lib/aws-sdk-route53globalresolver/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-route53globalresolver/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-route53globalresolver/endpoints.rb +20 -0
- data/lib/aws-sdk-route53globalresolver/errors.rb +232 -0
- data/lib/aws-sdk-route53globalresolver/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-route53globalresolver/resource.rb +26 -0
- data/lib/aws-sdk-route53globalresolver/types.rb +4505 -0
- data/lib/aws-sdk-route53globalresolver/waiters.rb +15 -0
- data/lib/aws-sdk-route53globalresolver.rb +62 -0
- data/sig/client.rbs +977 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +1147 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
|
@@ -0,0 +1,4505 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
module Aws::Route53GlobalResolver
|
|
11
|
+
module Types
|
|
12
|
+
|
|
13
|
+
# You don't have permission to perform this operation. Check your IAM
|
|
14
|
+
# permissions and try again.
|
|
15
|
+
#
|
|
16
|
+
# @!attribute [rw] message
|
|
17
|
+
# @return [String]
|
|
18
|
+
#
|
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/AccessDeniedException AWS API Documentation
|
|
20
|
+
#
|
|
21
|
+
class AccessDeniedException < Struct.new(
|
|
22
|
+
:message)
|
|
23
|
+
SENSITIVE = []
|
|
24
|
+
include Aws::Structure
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
# Summary information about an access source.
|
|
28
|
+
#
|
|
29
|
+
# @!attribute [rw] arn
|
|
30
|
+
# The Amazon Resource Name (ARN) of the access source.
|
|
31
|
+
# @return [String]
|
|
32
|
+
#
|
|
33
|
+
# @!attribute [rw] cidr
|
|
34
|
+
# The CIDR block that defines the IP address range for the access
|
|
35
|
+
# source.
|
|
36
|
+
# @return [String]
|
|
37
|
+
#
|
|
38
|
+
# @!attribute [rw] created_at
|
|
39
|
+
# The date and time when the access source was created.
|
|
40
|
+
# @return [Time]
|
|
41
|
+
#
|
|
42
|
+
# @!attribute [rw] id
|
|
43
|
+
# The unique identifier of the access source.
|
|
44
|
+
# @return [String]
|
|
45
|
+
#
|
|
46
|
+
# @!attribute [rw] ip_address_type
|
|
47
|
+
# The IP address type of the access source.
|
|
48
|
+
# @return [String]
|
|
49
|
+
#
|
|
50
|
+
# @!attribute [rw] name
|
|
51
|
+
# The name of the access source.
|
|
52
|
+
# @return [String]
|
|
53
|
+
#
|
|
54
|
+
# @!attribute [rw] dns_view_id
|
|
55
|
+
# The ID of the DNS view that the access source is associated with.
|
|
56
|
+
# @return [String]
|
|
57
|
+
#
|
|
58
|
+
# @!attribute [rw] protocol
|
|
59
|
+
# The protocol used by the access source.
|
|
60
|
+
# @return [String]
|
|
61
|
+
#
|
|
62
|
+
# @!attribute [rw] status
|
|
63
|
+
# The current status of the access source.
|
|
64
|
+
# @return [String]
|
|
65
|
+
#
|
|
66
|
+
# @!attribute [rw] updated_at
|
|
67
|
+
# The date and time when the access source was last updated.
|
|
68
|
+
# @return [Time]
|
|
69
|
+
#
|
|
70
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/AccessSourcesItem AWS API Documentation
|
|
71
|
+
#
|
|
72
|
+
class AccessSourcesItem < Struct.new(
|
|
73
|
+
:arn,
|
|
74
|
+
:cidr,
|
|
75
|
+
:created_at,
|
|
76
|
+
:id,
|
|
77
|
+
:ip_address_type,
|
|
78
|
+
:name,
|
|
79
|
+
:dns_view_id,
|
|
80
|
+
:protocol,
|
|
81
|
+
:status,
|
|
82
|
+
:updated_at)
|
|
83
|
+
SENSITIVE = []
|
|
84
|
+
include Aws::Structure
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# Summary information about a token.
|
|
88
|
+
#
|
|
89
|
+
# @!attribute [rw] id
|
|
90
|
+
# The unique identifier of the token.
|
|
91
|
+
# @return [String]
|
|
92
|
+
#
|
|
93
|
+
# @!attribute [rw] arn
|
|
94
|
+
# The Amazon Resource Name (ARN) of the token.
|
|
95
|
+
# @return [String]
|
|
96
|
+
#
|
|
97
|
+
# @!attribute [rw] created_at
|
|
98
|
+
# The date and time when the token was created.
|
|
99
|
+
# @return [Time]
|
|
100
|
+
#
|
|
101
|
+
# @!attribute [rw] dns_view_id
|
|
102
|
+
# The ID of the DNS view associated with the token.
|
|
103
|
+
# @return [String]
|
|
104
|
+
#
|
|
105
|
+
# @!attribute [rw] expires_at
|
|
106
|
+
# The date and time when the token expires.
|
|
107
|
+
# @return [Time]
|
|
108
|
+
#
|
|
109
|
+
# @!attribute [rw] global_resolver_id
|
|
110
|
+
# The ID of the global resolver associated with the token.
|
|
111
|
+
# @return [String]
|
|
112
|
+
#
|
|
113
|
+
# @!attribute [rw] name
|
|
114
|
+
# The name of the token.
|
|
115
|
+
# @return [String]
|
|
116
|
+
#
|
|
117
|
+
# @!attribute [rw] status
|
|
118
|
+
# The current status of the token.
|
|
119
|
+
# @return [String]
|
|
120
|
+
#
|
|
121
|
+
# @!attribute [rw] updated_at
|
|
122
|
+
# The date and time when the token was last updated.
|
|
123
|
+
# @return [Time]
|
|
124
|
+
#
|
|
125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/AccessTokenItem AWS API Documentation
|
|
126
|
+
#
|
|
127
|
+
class AccessTokenItem < Struct.new(
|
|
128
|
+
:id,
|
|
129
|
+
:arn,
|
|
130
|
+
:created_at,
|
|
131
|
+
:dns_view_id,
|
|
132
|
+
:expires_at,
|
|
133
|
+
:global_resolver_id,
|
|
134
|
+
:name,
|
|
135
|
+
:status,
|
|
136
|
+
:updated_at)
|
|
137
|
+
SENSITIVE = []
|
|
138
|
+
include Aws::Structure
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# @!attribute [rw] hosted_zone_id
|
|
142
|
+
# The ID of the Route 53 private hosted zone to associate with the
|
|
143
|
+
# Route 53 Global Resolver resource.
|
|
144
|
+
# @return [String]
|
|
145
|
+
#
|
|
146
|
+
# @!attribute [rw] resource_arn
|
|
147
|
+
# An Amazon Resource Name (ARN) of the Route 53 Global Resolver the
|
|
148
|
+
# private hosted zone will be associated to.
|
|
149
|
+
# @return [String]
|
|
150
|
+
#
|
|
151
|
+
# @!attribute [rw] name
|
|
152
|
+
# Name for the private hosted zone association.
|
|
153
|
+
# @return [String]
|
|
154
|
+
#
|
|
155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/AssociateHostedZoneInput AWS API Documentation
|
|
156
|
+
#
|
|
157
|
+
class AssociateHostedZoneInput < Struct.new(
|
|
158
|
+
:hosted_zone_id,
|
|
159
|
+
:resource_arn,
|
|
160
|
+
:name)
|
|
161
|
+
SENSITIVE = []
|
|
162
|
+
include Aws::Structure
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
# @!attribute [rw] id
|
|
166
|
+
# ID of the association.
|
|
167
|
+
# @return [String]
|
|
168
|
+
#
|
|
169
|
+
# @!attribute [rw] resource_arn
|
|
170
|
+
# An Amazon Resource Name (ARN) of the Route 53 Global Resolver the
|
|
171
|
+
# private hosted zone is associated to.
|
|
172
|
+
# @return [String]
|
|
173
|
+
#
|
|
174
|
+
# @!attribute [rw] hosted_zone_id
|
|
175
|
+
# ID of the private hosted zone.
|
|
176
|
+
# @return [String]
|
|
177
|
+
#
|
|
178
|
+
# @!attribute [rw] hosted_zone_name
|
|
179
|
+
# Name of the hosted zone (also the domain associated with the hosted
|
|
180
|
+
# zone).
|
|
181
|
+
# @return [String]
|
|
182
|
+
#
|
|
183
|
+
# @!attribute [rw] name
|
|
184
|
+
# Name for the private hosted zone association.
|
|
185
|
+
# @return [String]
|
|
186
|
+
#
|
|
187
|
+
# @!attribute [rw] created_at
|
|
188
|
+
# The date and time the private hosted zone association was created.
|
|
189
|
+
# @return [Time]
|
|
190
|
+
#
|
|
191
|
+
# @!attribute [rw] updated_at
|
|
192
|
+
# The date and time the private hosted zone association was modified.
|
|
193
|
+
# @return [Time]
|
|
194
|
+
#
|
|
195
|
+
# @!attribute [rw] status
|
|
196
|
+
# Aggregate status for all the AWS Regions in which the Route 53
|
|
197
|
+
# Global Resolver exists.
|
|
198
|
+
# @return [String]
|
|
199
|
+
#
|
|
200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/AssociateHostedZoneOutput AWS API Documentation
|
|
201
|
+
#
|
|
202
|
+
class AssociateHostedZoneOutput < Struct.new(
|
|
203
|
+
:id,
|
|
204
|
+
:resource_arn,
|
|
205
|
+
:hosted_zone_id,
|
|
206
|
+
:hosted_zone_name,
|
|
207
|
+
:name,
|
|
208
|
+
:created_at,
|
|
209
|
+
:updated_at,
|
|
210
|
+
:status)
|
|
211
|
+
SENSITIVE = []
|
|
212
|
+
include Aws::Structure
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# @!attribute [rw] firewall_rules
|
|
216
|
+
# The `BatchCreateFirewallRuleInputItem` objects contain the
|
|
217
|
+
# information for each Firewall rule.
|
|
218
|
+
# @return [Array<Types::BatchCreateFirewallRuleInputItem>]
|
|
219
|
+
#
|
|
220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchCreateFirewallRuleInput AWS API Documentation
|
|
221
|
+
#
|
|
222
|
+
class BatchCreateFirewallRuleInput < Struct.new(
|
|
223
|
+
:firewall_rules)
|
|
224
|
+
SENSITIVE = []
|
|
225
|
+
include Aws::Structure
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# Information about a DNS Firewall rule to create in a batch operation.
|
|
229
|
+
#
|
|
230
|
+
# @!attribute [rw] action
|
|
231
|
+
# The action to take when a DNS query matches the firewall rule.
|
|
232
|
+
# @return [String]
|
|
233
|
+
#
|
|
234
|
+
# @!attribute [rw] block_override_dns_type
|
|
235
|
+
# The DNS record type for the custom response when the action is
|
|
236
|
+
# BLOCK.
|
|
237
|
+
# @return [String]
|
|
238
|
+
#
|
|
239
|
+
# @!attribute [rw] block_override_domain
|
|
240
|
+
# The custom domain name for the BLOCK response.
|
|
241
|
+
# @return [String]
|
|
242
|
+
#
|
|
243
|
+
# @!attribute [rw] block_override_ttl
|
|
244
|
+
# The TTL value for the custom response when the action is BLOCK.
|
|
245
|
+
# @return [Integer]
|
|
246
|
+
#
|
|
247
|
+
# @!attribute [rw] block_response
|
|
248
|
+
# The type of block response to return when the action is BLOCK.
|
|
249
|
+
# @return [String]
|
|
250
|
+
#
|
|
251
|
+
# @!attribute [rw] client_token
|
|
252
|
+
# A unique string that identifies the request and ensures idempotency.
|
|
253
|
+
# @return [String]
|
|
254
|
+
#
|
|
255
|
+
# @!attribute [rw] confidence_threshold
|
|
256
|
+
# The confidence threshold for advanced threat detection.
|
|
257
|
+
# @return [String]
|
|
258
|
+
#
|
|
259
|
+
# @!attribute [rw] description
|
|
260
|
+
# A description of the firewall rule.
|
|
261
|
+
# @return [String]
|
|
262
|
+
#
|
|
263
|
+
# @!attribute [rw] dns_advanced_protection
|
|
264
|
+
# Whether to enable advanced DNS threat protection for the firewall
|
|
265
|
+
# rule.
|
|
266
|
+
# @return [String]
|
|
267
|
+
#
|
|
268
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
269
|
+
# The ID of the firewall domain list to associate with the rule.
|
|
270
|
+
# @return [String]
|
|
271
|
+
#
|
|
272
|
+
# @!attribute [rw] name
|
|
273
|
+
# A name for the firewall rule.
|
|
274
|
+
# @return [String]
|
|
275
|
+
#
|
|
276
|
+
# @!attribute [rw] priority
|
|
277
|
+
# The priority of the firewall rule.
|
|
278
|
+
# @return [Integer]
|
|
279
|
+
#
|
|
280
|
+
# @!attribute [rw] dns_view_id
|
|
281
|
+
# The ID of the DNS view to associate the firewall rule with.
|
|
282
|
+
# @return [String]
|
|
283
|
+
#
|
|
284
|
+
# @!attribute [rw] q_type
|
|
285
|
+
# The DNS query type that the firewall rule should match.
|
|
286
|
+
# @return [String]
|
|
287
|
+
#
|
|
288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchCreateFirewallRuleInputItem AWS API Documentation
|
|
289
|
+
#
|
|
290
|
+
class BatchCreateFirewallRuleInputItem < Struct.new(
|
|
291
|
+
:action,
|
|
292
|
+
:block_override_dns_type,
|
|
293
|
+
:block_override_domain,
|
|
294
|
+
:block_override_ttl,
|
|
295
|
+
:block_response,
|
|
296
|
+
:client_token,
|
|
297
|
+
:confidence_threshold,
|
|
298
|
+
:description,
|
|
299
|
+
:dns_advanced_protection,
|
|
300
|
+
:firewall_domain_list_id,
|
|
301
|
+
:name,
|
|
302
|
+
:priority,
|
|
303
|
+
:dns_view_id,
|
|
304
|
+
:q_type)
|
|
305
|
+
SENSITIVE = []
|
|
306
|
+
include Aws::Structure
|
|
307
|
+
end
|
|
308
|
+
|
|
309
|
+
# @!attribute [rw] failures
|
|
310
|
+
# High level information about the DNS Firewall rules that failed to
|
|
311
|
+
# create.
|
|
312
|
+
# @return [Array<Types::BatchCreateFirewallRuleOutputItem>]
|
|
313
|
+
#
|
|
314
|
+
# @!attribute [rw] successes
|
|
315
|
+
# High level information about the DNS Firewall rules that were
|
|
316
|
+
# created.
|
|
317
|
+
# @return [Array<Types::BatchCreateFirewallRuleOutputItem>]
|
|
318
|
+
#
|
|
319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchCreateFirewallRuleOutput AWS API Documentation
|
|
320
|
+
#
|
|
321
|
+
class BatchCreateFirewallRuleOutput < Struct.new(
|
|
322
|
+
:failures,
|
|
323
|
+
:successes)
|
|
324
|
+
SENSITIVE = []
|
|
325
|
+
include Aws::Structure
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
# Information about the result of creating a DNS Firewall rule in a
|
|
329
|
+
# batch operation.
|
|
330
|
+
#
|
|
331
|
+
# @!attribute [rw] firewall_rule
|
|
332
|
+
# The firewall rule that was created in the batch operation.
|
|
333
|
+
# @return [Types::BatchCreateFirewallRuleResult]
|
|
334
|
+
#
|
|
335
|
+
# @!attribute [rw] code
|
|
336
|
+
# The HTTP response code for the batch operation result.
|
|
337
|
+
# @return [Integer]
|
|
338
|
+
#
|
|
339
|
+
# @!attribute [rw] message
|
|
340
|
+
# A message describing the result of the batch operation, including
|
|
341
|
+
# error details if applicable.
|
|
342
|
+
# @return [String]
|
|
343
|
+
#
|
|
344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchCreateFirewallRuleOutputItem AWS API Documentation
|
|
345
|
+
#
|
|
346
|
+
class BatchCreateFirewallRuleOutputItem < Struct.new(
|
|
347
|
+
:firewall_rule,
|
|
348
|
+
:code,
|
|
349
|
+
:message)
|
|
350
|
+
SENSITIVE = []
|
|
351
|
+
include Aws::Structure
|
|
352
|
+
end
|
|
353
|
+
|
|
354
|
+
# The result of creating a firewall rule in a batch operation.
|
|
355
|
+
#
|
|
356
|
+
# @!attribute [rw] action
|
|
357
|
+
# The action configured for the created firewall rule.
|
|
358
|
+
# @return [String]
|
|
359
|
+
#
|
|
360
|
+
# @!attribute [rw] block_override_dns_type
|
|
361
|
+
# The DNS record type configured for the created firewall rule's
|
|
362
|
+
# custom response.
|
|
363
|
+
# @return [String]
|
|
364
|
+
#
|
|
365
|
+
# @!attribute [rw] block_override_domain
|
|
366
|
+
# The custom domain name configured for the created firewall rule's
|
|
367
|
+
# BLOCK response.
|
|
368
|
+
# @return [String]
|
|
369
|
+
#
|
|
370
|
+
# @!attribute [rw] block_override_ttl
|
|
371
|
+
# The TTL value configured for the created firewall rule's custom
|
|
372
|
+
# response.
|
|
373
|
+
# @return [Integer]
|
|
374
|
+
#
|
|
375
|
+
# @!attribute [rw] block_response
|
|
376
|
+
# The type of block response configured for the created firewall rule.
|
|
377
|
+
# @return [String]
|
|
378
|
+
#
|
|
379
|
+
# @!attribute [rw] client_token
|
|
380
|
+
# The unique string that identified the request and ensured
|
|
381
|
+
# idempotency.
|
|
382
|
+
# @return [String]
|
|
383
|
+
#
|
|
384
|
+
# @!attribute [rw] confidence_threshold
|
|
385
|
+
# The confidence threshold configured for the created firewall rule's
|
|
386
|
+
# advanced threat detection.
|
|
387
|
+
# @return [String]
|
|
388
|
+
#
|
|
389
|
+
# @!attribute [rw] created_at
|
|
390
|
+
# The date and time when the firewall rule was created.
|
|
391
|
+
# @return [Time]
|
|
392
|
+
#
|
|
393
|
+
# @!attribute [rw] description
|
|
394
|
+
# The description of the created firewall rule.
|
|
395
|
+
# @return [String]
|
|
396
|
+
#
|
|
397
|
+
# @!attribute [rw] dns_advanced_protection
|
|
398
|
+
# Whether advanced DNS threat protection is enabled for the created
|
|
399
|
+
# firewall rule.
|
|
400
|
+
# @return [String]
|
|
401
|
+
#
|
|
402
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
403
|
+
# The ID of the firewall domain list associated with the created
|
|
404
|
+
# firewall rule.
|
|
405
|
+
# @return [String]
|
|
406
|
+
#
|
|
407
|
+
# @!attribute [rw] id
|
|
408
|
+
# The unique identifier of the created firewall rule.
|
|
409
|
+
# @return [String]
|
|
410
|
+
#
|
|
411
|
+
# @!attribute [rw] managed_domain_list_name
|
|
412
|
+
# The name of the managed domain list associated with the created
|
|
413
|
+
# firewall rule.
|
|
414
|
+
# @return [String]
|
|
415
|
+
#
|
|
416
|
+
# @!attribute [rw] name
|
|
417
|
+
# The name of the created firewall rule.
|
|
418
|
+
# @return [String]
|
|
419
|
+
#
|
|
420
|
+
# @!attribute [rw] priority
|
|
421
|
+
# The priority of the created firewall rule.
|
|
422
|
+
# @return [Integer]
|
|
423
|
+
#
|
|
424
|
+
# @!attribute [rw] dns_view_id
|
|
425
|
+
# The ID of the DNS view associated with the created firewall rule.
|
|
426
|
+
# @return [String]
|
|
427
|
+
#
|
|
428
|
+
# @!attribute [rw] query_type
|
|
429
|
+
# The DNS query type that the created firewall rule matches.
|
|
430
|
+
# @return [String]
|
|
431
|
+
#
|
|
432
|
+
# @!attribute [rw] status
|
|
433
|
+
# The current status of the created firewall rule.
|
|
434
|
+
# @return [String]
|
|
435
|
+
#
|
|
436
|
+
# @!attribute [rw] updated_at
|
|
437
|
+
# The date and time when the firewall rule was last updated.
|
|
438
|
+
# @return [Time]
|
|
439
|
+
#
|
|
440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchCreateFirewallRuleResult AWS API Documentation
|
|
441
|
+
#
|
|
442
|
+
class BatchCreateFirewallRuleResult < Struct.new(
|
|
443
|
+
:action,
|
|
444
|
+
:block_override_dns_type,
|
|
445
|
+
:block_override_domain,
|
|
446
|
+
:block_override_ttl,
|
|
447
|
+
:block_response,
|
|
448
|
+
:client_token,
|
|
449
|
+
:confidence_threshold,
|
|
450
|
+
:created_at,
|
|
451
|
+
:description,
|
|
452
|
+
:dns_advanced_protection,
|
|
453
|
+
:firewall_domain_list_id,
|
|
454
|
+
:id,
|
|
455
|
+
:managed_domain_list_name,
|
|
456
|
+
:name,
|
|
457
|
+
:priority,
|
|
458
|
+
:dns_view_id,
|
|
459
|
+
:query_type,
|
|
460
|
+
:status,
|
|
461
|
+
:updated_at)
|
|
462
|
+
SENSITIVE = []
|
|
463
|
+
include Aws::Structure
|
|
464
|
+
end
|
|
465
|
+
|
|
466
|
+
# @!attribute [rw] firewall_rules
|
|
467
|
+
# An array of the DNS Firewall IDs to be deleted.
|
|
468
|
+
# @return [Array<Types::BatchDeleteFirewallRuleInputItem>]
|
|
469
|
+
#
|
|
470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchDeleteFirewallRuleInput AWS API Documentation
|
|
471
|
+
#
|
|
472
|
+
class BatchDeleteFirewallRuleInput < Struct.new(
|
|
473
|
+
:firewall_rules)
|
|
474
|
+
SENSITIVE = []
|
|
475
|
+
include Aws::Structure
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
# Information about a DNS Firewall rule to delete in a batch operation.
|
|
479
|
+
#
|
|
480
|
+
# @!attribute [rw] firewall_rule_id
|
|
481
|
+
# The ID of the DNS Firewall rule to delete.
|
|
482
|
+
# @return [String]
|
|
483
|
+
#
|
|
484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchDeleteFirewallRuleInputItem AWS API Documentation
|
|
485
|
+
#
|
|
486
|
+
class BatchDeleteFirewallRuleInputItem < Struct.new(
|
|
487
|
+
:firewall_rule_id)
|
|
488
|
+
SENSITIVE = []
|
|
489
|
+
include Aws::Structure
|
|
490
|
+
end
|
|
491
|
+
|
|
492
|
+
# @!attribute [rw] failures
|
|
493
|
+
# High level information about the DNS Firewall rules that failed to
|
|
494
|
+
# delete.
|
|
495
|
+
# @return [Array<Types::BatchDeleteFirewallRuleOutputItem>]
|
|
496
|
+
#
|
|
497
|
+
# @!attribute [rw] successes
|
|
498
|
+
# High level information about the DNS Firewall rules that were
|
|
499
|
+
# deleted successfully.
|
|
500
|
+
# @return [Array<Types::BatchDeleteFirewallRuleOutputItem>]
|
|
501
|
+
#
|
|
502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchDeleteFirewallRuleOutput AWS API Documentation
|
|
503
|
+
#
|
|
504
|
+
class BatchDeleteFirewallRuleOutput < Struct.new(
|
|
505
|
+
:failures,
|
|
506
|
+
:successes)
|
|
507
|
+
SENSITIVE = []
|
|
508
|
+
include Aws::Structure
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
# The result of deleting a firewall rule in a batch operation.
|
|
512
|
+
#
|
|
513
|
+
# @!attribute [rw] firewall_rule
|
|
514
|
+
# The firewall rule that was deleted in the batch operation.
|
|
515
|
+
# @return [Types::BatchDeleteFirewallRuleResult]
|
|
516
|
+
#
|
|
517
|
+
# @!attribute [rw] code
|
|
518
|
+
# The response code for the delete operation.
|
|
519
|
+
# @return [Integer]
|
|
520
|
+
#
|
|
521
|
+
# @!attribute [rw] message
|
|
522
|
+
# The response message for the delete operation.
|
|
523
|
+
# @return [String]
|
|
524
|
+
#
|
|
525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchDeleteFirewallRuleOutputItem AWS API Documentation
|
|
526
|
+
#
|
|
527
|
+
class BatchDeleteFirewallRuleOutputItem < Struct.new(
|
|
528
|
+
:firewall_rule,
|
|
529
|
+
:code,
|
|
530
|
+
:message)
|
|
531
|
+
SENSITIVE = []
|
|
532
|
+
include Aws::Structure
|
|
533
|
+
end
|
|
534
|
+
|
|
535
|
+
# Information about a firewall rule that was deleted in a batch
|
|
536
|
+
# operation.
|
|
537
|
+
#
|
|
538
|
+
# @!attribute [rw] client_token
|
|
539
|
+
# The unique string that identified the request and ensured
|
|
540
|
+
# idempotency.
|
|
541
|
+
# @return [String]
|
|
542
|
+
#
|
|
543
|
+
# @!attribute [rw] id
|
|
544
|
+
# The unique identifier of the deleted firewall rule.
|
|
545
|
+
# @return [String]
|
|
546
|
+
#
|
|
547
|
+
# @!attribute [rw] name
|
|
548
|
+
# The name of the deleted firewall rule.
|
|
549
|
+
# @return [String]
|
|
550
|
+
#
|
|
551
|
+
# @!attribute [rw] status
|
|
552
|
+
# The final status of the deleted firewall rule.
|
|
553
|
+
# @return [String]
|
|
554
|
+
#
|
|
555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchDeleteFirewallRuleResult AWS API Documentation
|
|
556
|
+
#
|
|
557
|
+
class BatchDeleteFirewallRuleResult < Struct.new(
|
|
558
|
+
:client_token,
|
|
559
|
+
:id,
|
|
560
|
+
:name,
|
|
561
|
+
:status)
|
|
562
|
+
SENSITIVE = []
|
|
563
|
+
include Aws::Structure
|
|
564
|
+
end
|
|
565
|
+
|
|
566
|
+
# @!attribute [rw] firewall_rules
|
|
567
|
+
# The DNS Firewall rule IDs to be updated.
|
|
568
|
+
# @return [Array<Types::BatchUpdateFirewallRuleInputItem>]
|
|
569
|
+
#
|
|
570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchUpdateFirewallRuleInput AWS API Documentation
|
|
571
|
+
#
|
|
572
|
+
class BatchUpdateFirewallRuleInput < Struct.new(
|
|
573
|
+
:firewall_rules)
|
|
574
|
+
SENSITIVE = []
|
|
575
|
+
include Aws::Structure
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
# Information for updating a firewall rule in a batch operation.
|
|
579
|
+
#
|
|
580
|
+
# @!attribute [rw] action
|
|
581
|
+
# The action to take when a DNS query matches the firewall rule.
|
|
582
|
+
# @return [String]
|
|
583
|
+
#
|
|
584
|
+
# @!attribute [rw] block_override_dns_type
|
|
585
|
+
# The DNS record type for the custom response when the action is
|
|
586
|
+
# BLOCK.
|
|
587
|
+
# @return [String]
|
|
588
|
+
#
|
|
589
|
+
# @!attribute [rw] block_override_domain
|
|
590
|
+
# The custom domain name for the BLOCK response.
|
|
591
|
+
# @return [String]
|
|
592
|
+
#
|
|
593
|
+
# @!attribute [rw] block_override_ttl
|
|
594
|
+
# The TTL value for the custom response when the action is BLOCK.
|
|
595
|
+
# @return [Integer]
|
|
596
|
+
#
|
|
597
|
+
# @!attribute [rw] block_response
|
|
598
|
+
# The type of block response to return when the action is BLOCK.
|
|
599
|
+
# @return [String]
|
|
600
|
+
#
|
|
601
|
+
# @!attribute [rw] confidence_threshold
|
|
602
|
+
# The confidence threshold for advanced threat detection.
|
|
603
|
+
# @return [String]
|
|
604
|
+
#
|
|
605
|
+
# @!attribute [rw] description
|
|
606
|
+
# A description of the firewall rule.
|
|
607
|
+
# @return [String]
|
|
608
|
+
#
|
|
609
|
+
# @!attribute [rw] dns_advanced_protection
|
|
610
|
+
# Whether to enable advanced DNS threat protection for the firewall
|
|
611
|
+
# rule.
|
|
612
|
+
# @return [String]
|
|
613
|
+
#
|
|
614
|
+
# @!attribute [rw] firewall_rule_id
|
|
615
|
+
# The unique identifier of the firewall rule to update.
|
|
616
|
+
# @return [String]
|
|
617
|
+
#
|
|
618
|
+
# @!attribute [rw] name
|
|
619
|
+
# A name for the firewall rule.
|
|
620
|
+
# @return [String]
|
|
621
|
+
#
|
|
622
|
+
# @!attribute [rw] priority
|
|
623
|
+
# The priority of the firewall rule.
|
|
624
|
+
# @return [Integer]
|
|
625
|
+
#
|
|
626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchUpdateFirewallRuleInputItem AWS API Documentation
|
|
627
|
+
#
|
|
628
|
+
class BatchUpdateFirewallRuleInputItem < Struct.new(
|
|
629
|
+
:action,
|
|
630
|
+
:block_override_dns_type,
|
|
631
|
+
:block_override_domain,
|
|
632
|
+
:block_override_ttl,
|
|
633
|
+
:block_response,
|
|
634
|
+
:confidence_threshold,
|
|
635
|
+
:description,
|
|
636
|
+
:dns_advanced_protection,
|
|
637
|
+
:firewall_rule_id,
|
|
638
|
+
:name,
|
|
639
|
+
:priority)
|
|
640
|
+
SENSITIVE = []
|
|
641
|
+
include Aws::Structure
|
|
642
|
+
end
|
|
643
|
+
|
|
644
|
+
# @!attribute [rw] failures
|
|
645
|
+
# High level information about the DNS Firewall rules that failed to
|
|
646
|
+
# update.
|
|
647
|
+
# @return [Array<Types::BatchUpdateFirewallRuleOutputItem>]
|
|
648
|
+
#
|
|
649
|
+
# @!attribute [rw] successes
|
|
650
|
+
# High level information about the DNS Firewall rules that were
|
|
651
|
+
# successfully updated.
|
|
652
|
+
# @return [Array<Types::BatchUpdateFirewallRuleOutputItem>]
|
|
653
|
+
#
|
|
654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchUpdateFirewallRuleOutput AWS API Documentation
|
|
655
|
+
#
|
|
656
|
+
class BatchUpdateFirewallRuleOutput < Struct.new(
|
|
657
|
+
:failures,
|
|
658
|
+
:successes)
|
|
659
|
+
SENSITIVE = []
|
|
660
|
+
include Aws::Structure
|
|
661
|
+
end
|
|
662
|
+
|
|
663
|
+
# The result of updating a firewall rule in a batch operation.
|
|
664
|
+
#
|
|
665
|
+
# @!attribute [rw] firewall_rule
|
|
666
|
+
# The firewall rule that was updated in the batch operation.
|
|
667
|
+
# @return [Types::BatchUpdateFirewallRuleResult]
|
|
668
|
+
#
|
|
669
|
+
# @!attribute [rw] code
|
|
670
|
+
# The response code for the update operation.
|
|
671
|
+
# @return [Integer]
|
|
672
|
+
#
|
|
673
|
+
# @!attribute [rw] message
|
|
674
|
+
# The response message for the update operation.
|
|
675
|
+
# @return [String]
|
|
676
|
+
#
|
|
677
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchUpdateFirewallRuleOutputItem AWS API Documentation
|
|
678
|
+
#
|
|
679
|
+
class BatchUpdateFirewallRuleOutputItem < Struct.new(
|
|
680
|
+
:firewall_rule,
|
|
681
|
+
:code,
|
|
682
|
+
:message)
|
|
683
|
+
SENSITIVE = []
|
|
684
|
+
include Aws::Structure
|
|
685
|
+
end
|
|
686
|
+
|
|
687
|
+
# Information about a firewall rule that was updated in a batch
|
|
688
|
+
# operation.
|
|
689
|
+
#
|
|
690
|
+
# @!attribute [rw] action
|
|
691
|
+
# The action configured for the updated firewall rule.
|
|
692
|
+
# @return [String]
|
|
693
|
+
#
|
|
694
|
+
# @!attribute [rw] block_override_dns_type
|
|
695
|
+
# The DNS record type configured for the updated firewall rule's
|
|
696
|
+
# custom response.
|
|
697
|
+
# @return [String]
|
|
698
|
+
#
|
|
699
|
+
# @!attribute [rw] block_override_domain
|
|
700
|
+
# The custom domain name configured for the updated firewall rule's
|
|
701
|
+
# BLOCK response.
|
|
702
|
+
# @return [String]
|
|
703
|
+
#
|
|
704
|
+
# @!attribute [rw] block_override_ttl
|
|
705
|
+
# The TTL value configured for the updated firewall rule's custom
|
|
706
|
+
# response.
|
|
707
|
+
# @return [Integer]
|
|
708
|
+
#
|
|
709
|
+
# @!attribute [rw] block_response
|
|
710
|
+
# The type of block response configured for the updated firewall rule.
|
|
711
|
+
# @return [String]
|
|
712
|
+
#
|
|
713
|
+
# @!attribute [rw] client_token
|
|
714
|
+
# The unique string that identified the request and ensured
|
|
715
|
+
# idempotency.
|
|
716
|
+
# @return [String]
|
|
717
|
+
#
|
|
718
|
+
# @!attribute [rw] confidence_threshold
|
|
719
|
+
# The confidence threshold configured for the updated firewall rule's
|
|
720
|
+
# advanced threat detection.
|
|
721
|
+
# @return [String]
|
|
722
|
+
#
|
|
723
|
+
# @!attribute [rw] created_at
|
|
724
|
+
# The date and time when the firewall rule was originally created.
|
|
725
|
+
# @return [Time]
|
|
726
|
+
#
|
|
727
|
+
# @!attribute [rw] description
|
|
728
|
+
# The description of the updated firewall rule.
|
|
729
|
+
# @return [String]
|
|
730
|
+
#
|
|
731
|
+
# @!attribute [rw] dns_advanced_protection
|
|
732
|
+
# Whether advanced DNS threat protection is enabled for the updated
|
|
733
|
+
# firewall rule.
|
|
734
|
+
# @return [String]
|
|
735
|
+
#
|
|
736
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
737
|
+
# The ID of the firewall domain list associated with the updated
|
|
738
|
+
# firewall rule.
|
|
739
|
+
# @return [String]
|
|
740
|
+
#
|
|
741
|
+
# @!attribute [rw] id
|
|
742
|
+
# The unique identifier of the updated firewall rule.
|
|
743
|
+
# @return [String]
|
|
744
|
+
#
|
|
745
|
+
# @!attribute [rw] name
|
|
746
|
+
# The name of the updated firewall rule.
|
|
747
|
+
# @return [String]
|
|
748
|
+
#
|
|
749
|
+
# @!attribute [rw] priority
|
|
750
|
+
# The priority of the updated firewall rule.
|
|
751
|
+
# @return [Integer]
|
|
752
|
+
#
|
|
753
|
+
# @!attribute [rw] dns_view_id
|
|
754
|
+
# The ID of the DNS view associated with the updated firewall rule.
|
|
755
|
+
# @return [String]
|
|
756
|
+
#
|
|
757
|
+
# @!attribute [rw] query_type
|
|
758
|
+
# The DNS query type that the updated firewall rule matches.
|
|
759
|
+
# @return [String]
|
|
760
|
+
#
|
|
761
|
+
# @!attribute [rw] status
|
|
762
|
+
# The current status of the updated firewall rule.
|
|
763
|
+
# @return [String]
|
|
764
|
+
#
|
|
765
|
+
# @!attribute [rw] updated_at
|
|
766
|
+
# The date and time when the firewall rule was last updated.
|
|
767
|
+
# @return [Time]
|
|
768
|
+
#
|
|
769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/BatchUpdateFirewallRuleResult AWS API Documentation
|
|
770
|
+
#
|
|
771
|
+
class BatchUpdateFirewallRuleResult < Struct.new(
|
|
772
|
+
:action,
|
|
773
|
+
:block_override_dns_type,
|
|
774
|
+
:block_override_domain,
|
|
775
|
+
:block_override_ttl,
|
|
776
|
+
:block_response,
|
|
777
|
+
:client_token,
|
|
778
|
+
:confidence_threshold,
|
|
779
|
+
:created_at,
|
|
780
|
+
:description,
|
|
781
|
+
:dns_advanced_protection,
|
|
782
|
+
:firewall_domain_list_id,
|
|
783
|
+
:id,
|
|
784
|
+
:name,
|
|
785
|
+
:priority,
|
|
786
|
+
:dns_view_id,
|
|
787
|
+
:query_type,
|
|
788
|
+
:status,
|
|
789
|
+
:updated_at)
|
|
790
|
+
SENSITIVE = []
|
|
791
|
+
include Aws::Structure
|
|
792
|
+
end
|
|
793
|
+
|
|
794
|
+
# The request conflicts with the current state of the resource. This can
|
|
795
|
+
# occur when trying to modify a resource that is not in a valid state
|
|
796
|
+
# for the requested operation.
|
|
797
|
+
#
|
|
798
|
+
# @!attribute [rw] message
|
|
799
|
+
# @return [String]
|
|
800
|
+
#
|
|
801
|
+
# @!attribute [rw] resource_id
|
|
802
|
+
# The ID of the conflicting resource.
|
|
803
|
+
# @return [String]
|
|
804
|
+
#
|
|
805
|
+
# @!attribute [rw] resource_type
|
|
806
|
+
# The type of the conflicting resource.
|
|
807
|
+
# @return [String]
|
|
808
|
+
#
|
|
809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ConflictException AWS API Documentation
|
|
810
|
+
#
|
|
811
|
+
class ConflictException < Struct.new(
|
|
812
|
+
:message,
|
|
813
|
+
:resource_id,
|
|
814
|
+
:resource_type)
|
|
815
|
+
SENSITIVE = []
|
|
816
|
+
include Aws::Structure
|
|
817
|
+
end
|
|
818
|
+
|
|
819
|
+
# @!attribute [rw] cidr
|
|
820
|
+
# The IP address or CIDR range that is allowed to send DNS queries to
|
|
821
|
+
# the Route 53 Global Resolver.
|
|
822
|
+
# @return [String]
|
|
823
|
+
#
|
|
824
|
+
# @!attribute [rw] client_token
|
|
825
|
+
# A unique string that identifies the request and ensures idempotency.
|
|
826
|
+
#
|
|
827
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
828
|
+
# not need to pass this option.
|
|
829
|
+
# @return [String]
|
|
830
|
+
#
|
|
831
|
+
# @!attribute [rw] ip_address_type
|
|
832
|
+
# The IP address type for this access source. Valid values are IPv4
|
|
833
|
+
# and IPv6 (if the Route 53 Global Resolver supports dual-stack).
|
|
834
|
+
# @return [String]
|
|
835
|
+
#
|
|
836
|
+
# @!attribute [rw] name
|
|
837
|
+
# A descriptive name for the access source.
|
|
838
|
+
# @return [String]
|
|
839
|
+
#
|
|
840
|
+
# @!attribute [rw] dns_view_id
|
|
841
|
+
# The ID of the DNS view to associate with this access source.
|
|
842
|
+
# @return [String]
|
|
843
|
+
#
|
|
844
|
+
# @!attribute [rw] protocol
|
|
845
|
+
# The DNS protocol that is permitted for this access source. Valid
|
|
846
|
+
# values are Do53 (DNS over port 53), DoT (DNS over TLS), and DoH (DNS
|
|
847
|
+
# over HTTPS).
|
|
848
|
+
# @return [String]
|
|
849
|
+
#
|
|
850
|
+
# @!attribute [rw] tags
|
|
851
|
+
# Tags to associate with the access source.
|
|
852
|
+
# @return [Hash<String,String>]
|
|
853
|
+
#
|
|
854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateAccessSourceInput AWS API Documentation
|
|
855
|
+
#
|
|
856
|
+
class CreateAccessSourceInput < Struct.new(
|
|
857
|
+
:cidr,
|
|
858
|
+
:client_token,
|
|
859
|
+
:ip_address_type,
|
|
860
|
+
:name,
|
|
861
|
+
:dns_view_id,
|
|
862
|
+
:protocol,
|
|
863
|
+
:tags)
|
|
864
|
+
SENSITIVE = []
|
|
865
|
+
include Aws::Structure
|
|
866
|
+
end
|
|
867
|
+
|
|
868
|
+
# @!attribute [rw] arn
|
|
869
|
+
# The Amazon Resource Name (ARN) of the access source.
|
|
870
|
+
# @return [String]
|
|
871
|
+
#
|
|
872
|
+
# @!attribute [rw] cidr
|
|
873
|
+
# The IP address or CIDR range that is allowed to send DNS queries to
|
|
874
|
+
# the Route 53 Global Resolver.
|
|
875
|
+
# @return [String]
|
|
876
|
+
#
|
|
877
|
+
# @!attribute [rw] created_at
|
|
878
|
+
# The date and time when the access source was created.
|
|
879
|
+
# @return [Time]
|
|
880
|
+
#
|
|
881
|
+
# @!attribute [rw] id
|
|
882
|
+
# The unique identifier for the access source.
|
|
883
|
+
# @return [String]
|
|
884
|
+
#
|
|
885
|
+
# @!attribute [rw] ip_address_type
|
|
886
|
+
# The IP address type for this access source (IPv4 or IPv6).
|
|
887
|
+
# @return [String]
|
|
888
|
+
#
|
|
889
|
+
# @!attribute [rw] name
|
|
890
|
+
# The descriptive name of the access source.
|
|
891
|
+
# @return [String]
|
|
892
|
+
#
|
|
893
|
+
# @!attribute [rw] dns_view_id
|
|
894
|
+
# The ID of the DNS view associated with this access source.
|
|
895
|
+
# @return [String]
|
|
896
|
+
#
|
|
897
|
+
# @!attribute [rw] protocol
|
|
898
|
+
# The DNS protocol that is permitted for this access source (Do53,
|
|
899
|
+
# DoT, or DoH).
|
|
900
|
+
# @return [String]
|
|
901
|
+
#
|
|
902
|
+
# @!attribute [rw] status
|
|
903
|
+
# The operational status of the access source.
|
|
904
|
+
# @return [String]
|
|
905
|
+
#
|
|
906
|
+
# @!attribute [rw] updated_at
|
|
907
|
+
# The date and time when the access source was last updated.
|
|
908
|
+
# @return [Time]
|
|
909
|
+
#
|
|
910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateAccessSourceOutput AWS API Documentation
|
|
911
|
+
#
|
|
912
|
+
class CreateAccessSourceOutput < Struct.new(
|
|
913
|
+
:arn,
|
|
914
|
+
:cidr,
|
|
915
|
+
:created_at,
|
|
916
|
+
:id,
|
|
917
|
+
:ip_address_type,
|
|
918
|
+
:name,
|
|
919
|
+
:dns_view_id,
|
|
920
|
+
:protocol,
|
|
921
|
+
:status,
|
|
922
|
+
:updated_at)
|
|
923
|
+
SENSITIVE = []
|
|
924
|
+
include Aws::Structure
|
|
925
|
+
end
|
|
926
|
+
|
|
927
|
+
# @!attribute [rw] client_token
|
|
928
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
929
|
+
# means that making the same request multiple times with the same
|
|
930
|
+
# `clientToken` has the same result every time.
|
|
931
|
+
#
|
|
932
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
933
|
+
# not need to pass this option.
|
|
934
|
+
# @return [String]
|
|
935
|
+
#
|
|
936
|
+
# @!attribute [rw] dns_view_id
|
|
937
|
+
# The ID of the DNS view to associate with this token.
|
|
938
|
+
# @return [String]
|
|
939
|
+
#
|
|
940
|
+
# @!attribute [rw] expires_at
|
|
941
|
+
# The date and time when the token expires. Tokens can have a minimum
|
|
942
|
+
# expiration of 30 days and maximum of 365 days from creation.
|
|
943
|
+
# @return [Time]
|
|
944
|
+
#
|
|
945
|
+
# @!attribute [rw] name
|
|
946
|
+
# A descriptive name for the access token.
|
|
947
|
+
# @return [String]
|
|
948
|
+
#
|
|
949
|
+
# @!attribute [rw] tags
|
|
950
|
+
# An array of user-defined keys and optional values. These tags can be
|
|
951
|
+
# used for categorization and organization.
|
|
952
|
+
# @return [Hash<String,String>]
|
|
953
|
+
#
|
|
954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateAccessTokenInput AWS API Documentation
|
|
955
|
+
#
|
|
956
|
+
class CreateAccessTokenInput < Struct.new(
|
|
957
|
+
:client_token,
|
|
958
|
+
:dns_view_id,
|
|
959
|
+
:expires_at,
|
|
960
|
+
:name,
|
|
961
|
+
:tags)
|
|
962
|
+
SENSITIVE = []
|
|
963
|
+
include Aws::Structure
|
|
964
|
+
end
|
|
965
|
+
|
|
966
|
+
# @!attribute [rw] id
|
|
967
|
+
# The unique identifier for the access token.
|
|
968
|
+
# @return [String]
|
|
969
|
+
#
|
|
970
|
+
# @!attribute [rw] arn
|
|
971
|
+
# The Amazon Resource Name (ARN) of the access token.
|
|
972
|
+
# @return [String]
|
|
973
|
+
#
|
|
974
|
+
# @!attribute [rw] client_token
|
|
975
|
+
# The unique string that identifies the request and ensures
|
|
976
|
+
# idempotency.
|
|
977
|
+
# @return [String]
|
|
978
|
+
#
|
|
979
|
+
# @!attribute [rw] created_at
|
|
980
|
+
# The date and time when the access token was created.
|
|
981
|
+
# @return [Time]
|
|
982
|
+
#
|
|
983
|
+
# @!attribute [rw] dns_view_id
|
|
984
|
+
# The ID of the DNS view associated with this access token.
|
|
985
|
+
# @return [String]
|
|
986
|
+
#
|
|
987
|
+
# @!attribute [rw] expires_at
|
|
988
|
+
# The date and time when the access token expires.
|
|
989
|
+
# @return [Time]
|
|
990
|
+
#
|
|
991
|
+
# @!attribute [rw] name
|
|
992
|
+
# The name of the access token.
|
|
993
|
+
# @return [String]
|
|
994
|
+
#
|
|
995
|
+
# @!attribute [rw] status
|
|
996
|
+
# The operational status of the access token.
|
|
997
|
+
# @return [String]
|
|
998
|
+
#
|
|
999
|
+
# @!attribute [rw] value
|
|
1000
|
+
# The access token value. This token should be included in DoH and DoT
|
|
1001
|
+
# requests for authentication. Keep this value secure as it provides
|
|
1002
|
+
# access to your Route 53 Global Resolver.
|
|
1003
|
+
# @return [String]
|
|
1004
|
+
#
|
|
1005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateAccessTokenOutput AWS API Documentation
|
|
1006
|
+
#
|
|
1007
|
+
class CreateAccessTokenOutput < Struct.new(
|
|
1008
|
+
:id,
|
|
1009
|
+
:arn,
|
|
1010
|
+
:client_token,
|
|
1011
|
+
:created_at,
|
|
1012
|
+
:dns_view_id,
|
|
1013
|
+
:expires_at,
|
|
1014
|
+
:name,
|
|
1015
|
+
:status,
|
|
1016
|
+
:value)
|
|
1017
|
+
SENSITIVE = [:value]
|
|
1018
|
+
include Aws::Structure
|
|
1019
|
+
end
|
|
1020
|
+
|
|
1021
|
+
# @!attribute [rw] global_resolver_id
|
|
1022
|
+
# The ID of the Route 53 Global Resolver to associate with this DNS
|
|
1023
|
+
# view.
|
|
1024
|
+
# @return [String]
|
|
1025
|
+
#
|
|
1026
|
+
# @!attribute [rw] client_token
|
|
1027
|
+
# A unique string that identifies the request and ensures idempotency.
|
|
1028
|
+
#
|
|
1029
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1030
|
+
# not need to pass this option.
|
|
1031
|
+
# @return [String]
|
|
1032
|
+
#
|
|
1033
|
+
# @!attribute [rw] name
|
|
1034
|
+
# A descriptive name for the DNS view.
|
|
1035
|
+
# @return [String]
|
|
1036
|
+
#
|
|
1037
|
+
# @!attribute [rw] dnssec_validation
|
|
1038
|
+
# Whether to enable DNSSEC validation for DNS queries in this DNS
|
|
1039
|
+
# view. When enabled, the resolver verifies the authenticity and
|
|
1040
|
+
# integrity of DNS responses from public name servers for
|
|
1041
|
+
# DNSSEC-signed domains.
|
|
1042
|
+
# @return [String]
|
|
1043
|
+
#
|
|
1044
|
+
# @!attribute [rw] edns_client_subnet
|
|
1045
|
+
# Whether to enable EDNS Client Subnet injection for DNS queries in
|
|
1046
|
+
# this DNS view. When enabled, client subnet information is forwarded
|
|
1047
|
+
# to provide more accurate geographic-based DNS responses.
|
|
1048
|
+
# @return [String]
|
|
1049
|
+
#
|
|
1050
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
1051
|
+
# Determines the behavior when Route 53 Global Resolver cannot apply
|
|
1052
|
+
# DNS firewall rules due to service impairment. When enabled, DNS
|
|
1053
|
+
# queries are allowed through; when disabled, queries are blocked.
|
|
1054
|
+
# @return [String]
|
|
1055
|
+
#
|
|
1056
|
+
# @!attribute [rw] description
|
|
1057
|
+
# An optional description for the DNS view.
|
|
1058
|
+
# @return [String]
|
|
1059
|
+
#
|
|
1060
|
+
# @!attribute [rw] tags
|
|
1061
|
+
# Tags to associate with the DNS view.
|
|
1062
|
+
# @return [Hash<String,String>]
|
|
1063
|
+
#
|
|
1064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateDNSViewInput AWS API Documentation
|
|
1065
|
+
#
|
|
1066
|
+
class CreateDNSViewInput < Struct.new(
|
|
1067
|
+
:global_resolver_id,
|
|
1068
|
+
:client_token,
|
|
1069
|
+
:name,
|
|
1070
|
+
:dnssec_validation,
|
|
1071
|
+
:edns_client_subnet,
|
|
1072
|
+
:firewall_rules_fail_open,
|
|
1073
|
+
:description,
|
|
1074
|
+
:tags)
|
|
1075
|
+
SENSITIVE = []
|
|
1076
|
+
include Aws::Structure
|
|
1077
|
+
end
|
|
1078
|
+
|
|
1079
|
+
# @!attribute [rw] id
|
|
1080
|
+
# The unique identifier for the DNS view.
|
|
1081
|
+
# @return [String]
|
|
1082
|
+
#
|
|
1083
|
+
# @!attribute [rw] arn
|
|
1084
|
+
# The Amazon Resource Name (ARN) of the DNS view.
|
|
1085
|
+
# @return [String]
|
|
1086
|
+
#
|
|
1087
|
+
# @!attribute [rw] client_token
|
|
1088
|
+
# The unique string that identifies the request and ensures
|
|
1089
|
+
# idempotency.
|
|
1090
|
+
# @return [String]
|
|
1091
|
+
#
|
|
1092
|
+
# @!attribute [rw] dnssec_validation
|
|
1093
|
+
# Whether DNSSEC validation is enabled for DNS queries in this DNS
|
|
1094
|
+
# view.
|
|
1095
|
+
# @return [String]
|
|
1096
|
+
#
|
|
1097
|
+
# @!attribute [rw] edns_client_subnet
|
|
1098
|
+
# Whether EDNS Client Subnet injection is enabled for DNS queries in
|
|
1099
|
+
# this DNS view.
|
|
1100
|
+
# @return [String]
|
|
1101
|
+
#
|
|
1102
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
1103
|
+
# The behavior when Route 53 Global Resolver cannot apply DNS firewall
|
|
1104
|
+
# rules due to service impairment.
|
|
1105
|
+
# @return [String]
|
|
1106
|
+
#
|
|
1107
|
+
# @!attribute [rw] name
|
|
1108
|
+
# The descriptive name of the DNS view.
|
|
1109
|
+
# @return [String]
|
|
1110
|
+
#
|
|
1111
|
+
# @!attribute [rw] description
|
|
1112
|
+
# The description of the DNS view.
|
|
1113
|
+
# @return [String]
|
|
1114
|
+
#
|
|
1115
|
+
# @!attribute [rw] global_resolver_id
|
|
1116
|
+
# The ID of the Route 53 Global Resolver instance the DNS view is
|
|
1117
|
+
# created for.
|
|
1118
|
+
# @return [String]
|
|
1119
|
+
#
|
|
1120
|
+
# @!attribute [rw] created_at
|
|
1121
|
+
# The date and time when the DNS view was created.
|
|
1122
|
+
# @return [Time]
|
|
1123
|
+
#
|
|
1124
|
+
# @!attribute [rw] updated_at
|
|
1125
|
+
# The date and time when the DNS view was last updated.
|
|
1126
|
+
# @return [Time]
|
|
1127
|
+
#
|
|
1128
|
+
# @!attribute [rw] status
|
|
1129
|
+
# The operational status of the DNS view.
|
|
1130
|
+
# @return [String]
|
|
1131
|
+
#
|
|
1132
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateDNSViewOutput AWS API Documentation
|
|
1133
|
+
#
|
|
1134
|
+
class CreateDNSViewOutput < Struct.new(
|
|
1135
|
+
:id,
|
|
1136
|
+
:arn,
|
|
1137
|
+
:client_token,
|
|
1138
|
+
:dnssec_validation,
|
|
1139
|
+
:edns_client_subnet,
|
|
1140
|
+
:firewall_rules_fail_open,
|
|
1141
|
+
:name,
|
|
1142
|
+
:description,
|
|
1143
|
+
:global_resolver_id,
|
|
1144
|
+
:created_at,
|
|
1145
|
+
:updated_at,
|
|
1146
|
+
:status)
|
|
1147
|
+
SENSITIVE = []
|
|
1148
|
+
include Aws::Structure
|
|
1149
|
+
end
|
|
1150
|
+
|
|
1151
|
+
# @!attribute [rw] client_token
|
|
1152
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
1153
|
+
# means that making the same request multiple times with the same
|
|
1154
|
+
# `clientToken` has the same result every time.
|
|
1155
|
+
#
|
|
1156
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1157
|
+
# not need to pass this option.
|
|
1158
|
+
# @return [String]
|
|
1159
|
+
#
|
|
1160
|
+
# @!attribute [rw] global_resolver_id
|
|
1161
|
+
# The ID of the Route 53 Global Resolver that the domain list will be
|
|
1162
|
+
# associated with.
|
|
1163
|
+
# @return [String]
|
|
1164
|
+
#
|
|
1165
|
+
# @!attribute [rw] description
|
|
1166
|
+
# An optional description for the firewall domain list.
|
|
1167
|
+
# @return [String]
|
|
1168
|
+
#
|
|
1169
|
+
# @!attribute [rw] name
|
|
1170
|
+
# A descriptive name for the firewall domain list.
|
|
1171
|
+
# @return [String]
|
|
1172
|
+
#
|
|
1173
|
+
# @!attribute [rw] tags
|
|
1174
|
+
# An array of user-defined keys and optional values. These tags can be
|
|
1175
|
+
# used for categorization and organization.
|
|
1176
|
+
# @return [Hash<String,String>]
|
|
1177
|
+
#
|
|
1178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateFirewallDomainListInput AWS API Documentation
|
|
1179
|
+
#
|
|
1180
|
+
class CreateFirewallDomainListInput < Struct.new(
|
|
1181
|
+
:client_token,
|
|
1182
|
+
:global_resolver_id,
|
|
1183
|
+
:description,
|
|
1184
|
+
:name,
|
|
1185
|
+
:tags)
|
|
1186
|
+
SENSITIVE = []
|
|
1187
|
+
include Aws::Structure
|
|
1188
|
+
end
|
|
1189
|
+
|
|
1190
|
+
# @!attribute [rw] arn
|
|
1191
|
+
# An Amazon Resource Name (ARN) for the domain list.
|
|
1192
|
+
# @return [String]
|
|
1193
|
+
#
|
|
1194
|
+
# @!attribute [rw] global_resolver_id
|
|
1195
|
+
# The ID of the Route 53 Global Resolver that the domain list is
|
|
1196
|
+
# associated with.
|
|
1197
|
+
# @return [String]
|
|
1198
|
+
#
|
|
1199
|
+
# @!attribute [rw] created_at
|
|
1200
|
+
# The time and date the domain list was created on.
|
|
1201
|
+
# @return [Time]
|
|
1202
|
+
#
|
|
1203
|
+
# @!attribute [rw] description
|
|
1204
|
+
# Description for the domain list.
|
|
1205
|
+
# @return [String]
|
|
1206
|
+
#
|
|
1207
|
+
# @!attribute [rw] domain_count
|
|
1208
|
+
# Number of domains in the domain list.
|
|
1209
|
+
# @return [Integer]
|
|
1210
|
+
#
|
|
1211
|
+
# @!attribute [rw] id
|
|
1212
|
+
# ID of the domain list.
|
|
1213
|
+
# @return [String]
|
|
1214
|
+
#
|
|
1215
|
+
# @!attribute [rw] name
|
|
1216
|
+
# Name of the domain list.
|
|
1217
|
+
# @return [String]
|
|
1218
|
+
#
|
|
1219
|
+
# @!attribute [rw] status
|
|
1220
|
+
# Creation status of the domain list.
|
|
1221
|
+
# @return [String]
|
|
1222
|
+
#
|
|
1223
|
+
# @!attribute [rw] updated_at
|
|
1224
|
+
# The time and date the domain list was updated.
|
|
1225
|
+
# @return [Time]
|
|
1226
|
+
#
|
|
1227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateFirewallDomainListOutput AWS API Documentation
|
|
1228
|
+
#
|
|
1229
|
+
class CreateFirewallDomainListOutput < Struct.new(
|
|
1230
|
+
:arn,
|
|
1231
|
+
:global_resolver_id,
|
|
1232
|
+
:created_at,
|
|
1233
|
+
:description,
|
|
1234
|
+
:domain_count,
|
|
1235
|
+
:id,
|
|
1236
|
+
:name,
|
|
1237
|
+
:status,
|
|
1238
|
+
:updated_at)
|
|
1239
|
+
SENSITIVE = []
|
|
1240
|
+
include Aws::Structure
|
|
1241
|
+
end
|
|
1242
|
+
|
|
1243
|
+
# @!attribute [rw] action
|
|
1244
|
+
# The action that DNS Firewall should take on a DNS query when it
|
|
1245
|
+
# matches one of the domains in the rule's domain list:
|
|
1246
|
+
#
|
|
1247
|
+
# * `ALLOW` - Permit the request to go through.
|
|
1248
|
+
#
|
|
1249
|
+
# * `ALERT` - Permit the request and send metrics and logs to
|
|
1250
|
+
# CloudWatch.
|
|
1251
|
+
#
|
|
1252
|
+
# * `BLOCK` - Disallow the request. This option requires additional
|
|
1253
|
+
# details in the rule's `BlockResponse`.
|
|
1254
|
+
# @return [String]
|
|
1255
|
+
#
|
|
1256
|
+
# @!attribute [rw] block_override_dns_type
|
|
1257
|
+
# The DNS record's type. This determines the format of the record
|
|
1258
|
+
# value that you provided in `BlockOverrideDomain`. Used for the rule
|
|
1259
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
1260
|
+
#
|
|
1261
|
+
# This setting is required if the `BlockResponse` setting is
|
|
1262
|
+
# `OVERRIDE`.
|
|
1263
|
+
# @return [String]
|
|
1264
|
+
#
|
|
1265
|
+
# @!attribute [rw] block_override_domain
|
|
1266
|
+
# The custom DNS record to send back in response to the query. Used
|
|
1267
|
+
# for the rule action `BLOCK` with a `BlockResponse` setting of
|
|
1268
|
+
# `OVERRIDE`.
|
|
1269
|
+
#
|
|
1270
|
+
# This setting is required if the `BlockResponse` setting is
|
|
1271
|
+
# `OVERRIDE`.
|
|
1272
|
+
# @return [String]
|
|
1273
|
+
#
|
|
1274
|
+
# @!attribute [rw] block_override_ttl
|
|
1275
|
+
# The recommended amount of time, in seconds, for the DNS resolver or
|
|
1276
|
+
# web browser to cache the provided override record. Used for the rule
|
|
1277
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
1278
|
+
#
|
|
1279
|
+
# This setting is required if the `BlockResponse` setting is
|
|
1280
|
+
# `OVERRIDE`.
|
|
1281
|
+
# @return [Integer]
|
|
1282
|
+
#
|
|
1283
|
+
# @!attribute [rw] block_response
|
|
1284
|
+
# The response to return when the action is BLOCK. Valid values are
|
|
1285
|
+
# NXDOMAIN (domain does not exist), NODATA (domain exists but no
|
|
1286
|
+
# records), or OVERRIDE (return custom response).
|
|
1287
|
+
# @return [String]
|
|
1288
|
+
#
|
|
1289
|
+
# @!attribute [rw] client_token
|
|
1290
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
1291
|
+
# means that making the same request multiple times with the same
|
|
1292
|
+
# `clientToken` has the same result every time.
|
|
1293
|
+
#
|
|
1294
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1295
|
+
# not need to pass this option.
|
|
1296
|
+
# @return [String]
|
|
1297
|
+
#
|
|
1298
|
+
# @!attribute [rw] confidence_threshold
|
|
1299
|
+
# The confidence threshold for advanced threat detection. Valid values
|
|
1300
|
+
# are HIGH, MEDIUM, or LOW, indicating the accuracy level required for
|
|
1301
|
+
# threat detection.
|
|
1302
|
+
# @return [String]
|
|
1303
|
+
#
|
|
1304
|
+
# @!attribute [rw] description
|
|
1305
|
+
# An optional description for the firewall rule.
|
|
1306
|
+
# @return [String]
|
|
1307
|
+
#
|
|
1308
|
+
# @!attribute [rw] dns_advanced_protection
|
|
1309
|
+
# Whether to enable advanced DNS threat protection for this rule.
|
|
1310
|
+
# Advanced protection can detect and block DNS tunneling and Domain
|
|
1311
|
+
# Generation Algorithm (DGA) threats.
|
|
1312
|
+
# @return [String]
|
|
1313
|
+
#
|
|
1314
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
1315
|
+
# The ID of the firewall domain list to use in this rule.
|
|
1316
|
+
# @return [String]
|
|
1317
|
+
#
|
|
1318
|
+
# @!attribute [rw] name
|
|
1319
|
+
# A descriptive name for the firewall rule.
|
|
1320
|
+
# @return [String]
|
|
1321
|
+
#
|
|
1322
|
+
# @!attribute [rw] priority
|
|
1323
|
+
# The priority of this rule. Rules are evaluated in priority order,
|
|
1324
|
+
# with lower numbers having higher priority. When a DNS query matches
|
|
1325
|
+
# multiple rules, the rule with the highest priority (lowest number)
|
|
1326
|
+
# is applied.
|
|
1327
|
+
# @return [Integer]
|
|
1328
|
+
#
|
|
1329
|
+
# @!attribute [rw] dns_view_id
|
|
1330
|
+
# The ID of the DNS view to associate with this firewall rule.
|
|
1331
|
+
# @return [String]
|
|
1332
|
+
#
|
|
1333
|
+
# @!attribute [rw] q_type
|
|
1334
|
+
# The DNS query type to match for this rule. Examples include A (IPv4
|
|
1335
|
+
# address), AAAA (IPv6 address), MX (mail exchange), or TXT (text
|
|
1336
|
+
# record).
|
|
1337
|
+
# @return [String]
|
|
1338
|
+
#
|
|
1339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateFirewallRuleInput AWS API Documentation
|
|
1340
|
+
#
|
|
1341
|
+
class CreateFirewallRuleInput < Struct.new(
|
|
1342
|
+
:action,
|
|
1343
|
+
:block_override_dns_type,
|
|
1344
|
+
:block_override_domain,
|
|
1345
|
+
:block_override_ttl,
|
|
1346
|
+
:block_response,
|
|
1347
|
+
:client_token,
|
|
1348
|
+
:confidence_threshold,
|
|
1349
|
+
:description,
|
|
1350
|
+
:dns_advanced_protection,
|
|
1351
|
+
:firewall_domain_list_id,
|
|
1352
|
+
:name,
|
|
1353
|
+
:priority,
|
|
1354
|
+
:dns_view_id,
|
|
1355
|
+
:q_type)
|
|
1356
|
+
SENSITIVE = []
|
|
1357
|
+
include Aws::Structure
|
|
1358
|
+
end
|
|
1359
|
+
|
|
1360
|
+
# @!attribute [rw] action
|
|
1361
|
+
# The action that DNS Firewall takes on DNS queries that match this
|
|
1362
|
+
# rule.
|
|
1363
|
+
# @return [String]
|
|
1364
|
+
#
|
|
1365
|
+
# @!attribute [rw] block_override_dns_type
|
|
1366
|
+
# The DNS record type for the custom response when blockResponse is
|
|
1367
|
+
# OVERRIDE.
|
|
1368
|
+
# @return [String]
|
|
1369
|
+
#
|
|
1370
|
+
# @!attribute [rw] block_override_domain
|
|
1371
|
+
# The custom domain to return when the action is BLOCK and
|
|
1372
|
+
# blockResponse is OVERRIDE.
|
|
1373
|
+
# @return [String]
|
|
1374
|
+
#
|
|
1375
|
+
# @!attribute [rw] block_override_ttl
|
|
1376
|
+
# The time-to-live (TTL) value for the custom response when
|
|
1377
|
+
# blockResponse is OVERRIDE.
|
|
1378
|
+
# @return [Integer]
|
|
1379
|
+
#
|
|
1380
|
+
# @!attribute [rw] block_response
|
|
1381
|
+
# The response to return when the action is BLOCK.
|
|
1382
|
+
# @return [String]
|
|
1383
|
+
#
|
|
1384
|
+
# @!attribute [rw] confidence_threshold
|
|
1385
|
+
# The confidence threshold for advanced threat detection.
|
|
1386
|
+
# @return [String]
|
|
1387
|
+
#
|
|
1388
|
+
# @!attribute [rw] created_at
|
|
1389
|
+
# The date and time when the firewall rule was created.
|
|
1390
|
+
# @return [Time]
|
|
1391
|
+
#
|
|
1392
|
+
# @!attribute [rw] description
|
|
1393
|
+
# The description of the firewall rule.
|
|
1394
|
+
# @return [String]
|
|
1395
|
+
#
|
|
1396
|
+
# @!attribute [rw] dns_advanced_protection
|
|
1397
|
+
# Whether advanced DNS threat protection is enabled for this rule.
|
|
1398
|
+
# @return [String]
|
|
1399
|
+
#
|
|
1400
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
1401
|
+
# The ID of the firewall domain list used in this rule.
|
|
1402
|
+
# @return [String]
|
|
1403
|
+
#
|
|
1404
|
+
# @!attribute [rw] id
|
|
1405
|
+
# The unique identifier for the firewall rule.
|
|
1406
|
+
# @return [String]
|
|
1407
|
+
#
|
|
1408
|
+
# @!attribute [rw] name
|
|
1409
|
+
# The name of the firewall rule.
|
|
1410
|
+
# @return [String]
|
|
1411
|
+
#
|
|
1412
|
+
# @!attribute [rw] priority
|
|
1413
|
+
# The priority of the firewall rule.
|
|
1414
|
+
# @return [Integer]
|
|
1415
|
+
#
|
|
1416
|
+
# @!attribute [rw] dns_view_id
|
|
1417
|
+
# The ID of the DNS view associated with this firewall rule.
|
|
1418
|
+
# @return [String]
|
|
1419
|
+
#
|
|
1420
|
+
# @!attribute [rw] query_type
|
|
1421
|
+
# The DNS query type that this rule matches.
|
|
1422
|
+
# @return [String]
|
|
1423
|
+
#
|
|
1424
|
+
# @!attribute [rw] status
|
|
1425
|
+
# The operational status of the firewall rule.
|
|
1426
|
+
# @return [String]
|
|
1427
|
+
#
|
|
1428
|
+
# @!attribute [rw] updated_at
|
|
1429
|
+
# The date and time when the firewall rule was last updated.
|
|
1430
|
+
# @return [Time]
|
|
1431
|
+
#
|
|
1432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateFirewallRuleOutput AWS API Documentation
|
|
1433
|
+
#
|
|
1434
|
+
class CreateFirewallRuleOutput < Struct.new(
|
|
1435
|
+
:action,
|
|
1436
|
+
:block_override_dns_type,
|
|
1437
|
+
:block_override_domain,
|
|
1438
|
+
:block_override_ttl,
|
|
1439
|
+
:block_response,
|
|
1440
|
+
:confidence_threshold,
|
|
1441
|
+
:created_at,
|
|
1442
|
+
:description,
|
|
1443
|
+
:dns_advanced_protection,
|
|
1444
|
+
:firewall_domain_list_id,
|
|
1445
|
+
:id,
|
|
1446
|
+
:name,
|
|
1447
|
+
:priority,
|
|
1448
|
+
:dns_view_id,
|
|
1449
|
+
:query_type,
|
|
1450
|
+
:status,
|
|
1451
|
+
:updated_at)
|
|
1452
|
+
SENSITIVE = []
|
|
1453
|
+
include Aws::Structure
|
|
1454
|
+
end
|
|
1455
|
+
|
|
1456
|
+
# @!attribute [rw] client_token
|
|
1457
|
+
# A unique string that identifies the request and ensures idempotency.
|
|
1458
|
+
# If you make multiple requests with the same client token, only one
|
|
1459
|
+
# Route 53 Global Resolver is created.
|
|
1460
|
+
#
|
|
1461
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1462
|
+
# not need to pass this option.
|
|
1463
|
+
# @return [String]
|
|
1464
|
+
#
|
|
1465
|
+
# @!attribute [rw] description
|
|
1466
|
+
# An optional description for the Route 53 Global Resolver instance.
|
|
1467
|
+
# Maximum length of 1024 characters.
|
|
1468
|
+
# @return [String]
|
|
1469
|
+
#
|
|
1470
|
+
# @!attribute [rw] name
|
|
1471
|
+
# A descriptive name for the Route 53 Global Resolver instance.
|
|
1472
|
+
# Maximum length of 64 characters.
|
|
1473
|
+
# @return [String]
|
|
1474
|
+
#
|
|
1475
|
+
# @!attribute [rw] observability_region
|
|
1476
|
+
# The AWS region where query resolution logs and metrics will be
|
|
1477
|
+
# aggregated and delivered. If not specified, logging is not enabled.
|
|
1478
|
+
# @return [String]
|
|
1479
|
+
#
|
|
1480
|
+
# @!attribute [rw] regions
|
|
1481
|
+
# List of AWS regions where the Route 53 Global Resolver will operate.
|
|
1482
|
+
# The resolver will be distributed across these regions to provide
|
|
1483
|
+
# global availability and low-latency DNS resolution.
|
|
1484
|
+
# @return [Array<String>]
|
|
1485
|
+
#
|
|
1486
|
+
# @!attribute [rw] tags
|
|
1487
|
+
# Tags to associate with the Route 53 Global Resolver. Tags are
|
|
1488
|
+
# key-value pairs that help you organize and identify your resources.
|
|
1489
|
+
# @return [Hash<String,String>]
|
|
1490
|
+
#
|
|
1491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateGlobalResolverInput AWS API Documentation
|
|
1492
|
+
#
|
|
1493
|
+
class CreateGlobalResolverInput < Struct.new(
|
|
1494
|
+
:client_token,
|
|
1495
|
+
:description,
|
|
1496
|
+
:name,
|
|
1497
|
+
:observability_region,
|
|
1498
|
+
:regions,
|
|
1499
|
+
:tags)
|
|
1500
|
+
SENSITIVE = []
|
|
1501
|
+
include Aws::Structure
|
|
1502
|
+
end
|
|
1503
|
+
|
|
1504
|
+
# @!attribute [rw] id
|
|
1505
|
+
# The unique identifier for the Route 53 Global Resolver.
|
|
1506
|
+
# @return [String]
|
|
1507
|
+
#
|
|
1508
|
+
# @!attribute [rw] arn
|
|
1509
|
+
# The Amazon Resource Name (ARN) of the Route 53 Global Resolver.
|
|
1510
|
+
# @return [String]
|
|
1511
|
+
#
|
|
1512
|
+
# @!attribute [rw] client_token
|
|
1513
|
+
# The unique string that identifies the request and ensures
|
|
1514
|
+
# idempotency.
|
|
1515
|
+
# @return [String]
|
|
1516
|
+
#
|
|
1517
|
+
# @!attribute [rw] created_at
|
|
1518
|
+
# The date and time when the Route 53 Global Resolver was created.
|
|
1519
|
+
# @return [Time]
|
|
1520
|
+
#
|
|
1521
|
+
# @!attribute [rw] description
|
|
1522
|
+
# The description of the Route 53 Global Resolver.
|
|
1523
|
+
# @return [String]
|
|
1524
|
+
#
|
|
1525
|
+
# @!attribute [rw] dns_name
|
|
1526
|
+
# The hostname that DNS clients should use for TLS certificate
|
|
1527
|
+
# validation when connecting to the Route 53 Global Resolver. This
|
|
1528
|
+
# value resolves to the global anycast IP addresses for the resolver.
|
|
1529
|
+
# @return [String]
|
|
1530
|
+
#
|
|
1531
|
+
# @!attribute [rw] ipv4_addresses
|
|
1532
|
+
# The global anycast IPv4 addresses associated with the Route 53
|
|
1533
|
+
# Global Resolver. DNS clients can send queries to these addresses
|
|
1534
|
+
# from anywhere on the internet.
|
|
1535
|
+
# @return [Array<String>]
|
|
1536
|
+
#
|
|
1537
|
+
# @!attribute [rw] name
|
|
1538
|
+
# The name of the Route 53 Global Resolver.
|
|
1539
|
+
# @return [String]
|
|
1540
|
+
#
|
|
1541
|
+
# @!attribute [rw] observability_region
|
|
1542
|
+
# The AWS Region where observability data for the Route 53 Global
|
|
1543
|
+
# Resolver is stored.
|
|
1544
|
+
# @return [String]
|
|
1545
|
+
#
|
|
1546
|
+
# @!attribute [rw] regions
|
|
1547
|
+
# The AWS Regions where the Route 53 Global Resolver is deployed and
|
|
1548
|
+
# operational.
|
|
1549
|
+
# @return [Array<String>]
|
|
1550
|
+
#
|
|
1551
|
+
# @!attribute [rw] status
|
|
1552
|
+
# The current status of the Route 53 Global Resolver. Possible values
|
|
1553
|
+
# are CREATING (being provisioned), UPDATING (being modified),
|
|
1554
|
+
# OPERATIONAL (ready to serve queries), or DELETING (being removed).
|
|
1555
|
+
# @return [String]
|
|
1556
|
+
#
|
|
1557
|
+
# @!attribute [rw] updated_at
|
|
1558
|
+
# The date and time when the Route 53 Global Resolver was last
|
|
1559
|
+
# updated.
|
|
1560
|
+
# @return [Time]
|
|
1561
|
+
#
|
|
1562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/CreateGlobalResolverOutput AWS API Documentation
|
|
1563
|
+
#
|
|
1564
|
+
class CreateGlobalResolverOutput < Struct.new(
|
|
1565
|
+
:id,
|
|
1566
|
+
:arn,
|
|
1567
|
+
:client_token,
|
|
1568
|
+
:created_at,
|
|
1569
|
+
:description,
|
|
1570
|
+
:dns_name,
|
|
1571
|
+
:ipv4_addresses,
|
|
1572
|
+
:name,
|
|
1573
|
+
:observability_region,
|
|
1574
|
+
:regions,
|
|
1575
|
+
:status,
|
|
1576
|
+
:updated_at)
|
|
1577
|
+
SENSITIVE = []
|
|
1578
|
+
include Aws::Structure
|
|
1579
|
+
end
|
|
1580
|
+
|
|
1581
|
+
# Summary information about a DNS view.
|
|
1582
|
+
#
|
|
1583
|
+
# @!attribute [rw] id
|
|
1584
|
+
# The unique identifier of the DNS view.
|
|
1585
|
+
# @return [String]
|
|
1586
|
+
#
|
|
1587
|
+
# @!attribute [rw] arn
|
|
1588
|
+
# The Amazon Resource Name (ARN) of the DNS view.
|
|
1589
|
+
# @return [String]
|
|
1590
|
+
#
|
|
1591
|
+
# @!attribute [rw] client_token
|
|
1592
|
+
# The unique string that identifies the request and ensures
|
|
1593
|
+
# idempotency.
|
|
1594
|
+
# @return [String]
|
|
1595
|
+
#
|
|
1596
|
+
# @!attribute [rw] dnssec_validation
|
|
1597
|
+
# Whether DNSSEC validation is enabled for the DNS view.
|
|
1598
|
+
# @return [String]
|
|
1599
|
+
#
|
|
1600
|
+
# @!attribute [rw] edns_client_subnet
|
|
1601
|
+
# Whether EDNS Client Subnet injection is enabled for the DNS view.
|
|
1602
|
+
# @return [String]
|
|
1603
|
+
#
|
|
1604
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
1605
|
+
# Whether firewall rules fail open when they cannot be evaluated.
|
|
1606
|
+
# @return [String]
|
|
1607
|
+
#
|
|
1608
|
+
# @!attribute [rw] name
|
|
1609
|
+
# The name of the DNS view.
|
|
1610
|
+
# @return [String]
|
|
1611
|
+
#
|
|
1612
|
+
# @!attribute [rw] description
|
|
1613
|
+
# A description of the DNS view.
|
|
1614
|
+
# @return [String]
|
|
1615
|
+
#
|
|
1616
|
+
# @!attribute [rw] global_resolver_id
|
|
1617
|
+
# The ID of the global resolver that the DNS view is associated with.
|
|
1618
|
+
# @return [String]
|
|
1619
|
+
#
|
|
1620
|
+
# @!attribute [rw] created_at
|
|
1621
|
+
# The date and time when the DNS view was created.
|
|
1622
|
+
# @return [Time]
|
|
1623
|
+
#
|
|
1624
|
+
# @!attribute [rw] updated_at
|
|
1625
|
+
# The date and time when the DNS view was last updated.
|
|
1626
|
+
# @return [Time]
|
|
1627
|
+
#
|
|
1628
|
+
# @!attribute [rw] status
|
|
1629
|
+
# The current status of the DNS view.
|
|
1630
|
+
# @return [String]
|
|
1631
|
+
#
|
|
1632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DNSViewSummary AWS API Documentation
|
|
1633
|
+
#
|
|
1634
|
+
class DNSViewSummary < Struct.new(
|
|
1635
|
+
:id,
|
|
1636
|
+
:arn,
|
|
1637
|
+
:client_token,
|
|
1638
|
+
:dnssec_validation,
|
|
1639
|
+
:edns_client_subnet,
|
|
1640
|
+
:firewall_rules_fail_open,
|
|
1641
|
+
:name,
|
|
1642
|
+
:description,
|
|
1643
|
+
:global_resolver_id,
|
|
1644
|
+
:created_at,
|
|
1645
|
+
:updated_at,
|
|
1646
|
+
:status)
|
|
1647
|
+
SENSITIVE = []
|
|
1648
|
+
include Aws::Structure
|
|
1649
|
+
end
|
|
1650
|
+
|
|
1651
|
+
# @!attribute [rw] access_source_id
|
|
1652
|
+
# The unique identifier of the access source to delete.
|
|
1653
|
+
# @return [String]
|
|
1654
|
+
#
|
|
1655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteAccessSourceInput AWS API Documentation
|
|
1656
|
+
#
|
|
1657
|
+
class DeleteAccessSourceInput < Struct.new(
|
|
1658
|
+
:access_source_id)
|
|
1659
|
+
SENSITIVE = []
|
|
1660
|
+
include Aws::Structure
|
|
1661
|
+
end
|
|
1662
|
+
|
|
1663
|
+
# @!attribute [rw] arn
|
|
1664
|
+
# The Amazon Resource Name (ARN) of the deleted access source.
|
|
1665
|
+
# @return [String]
|
|
1666
|
+
#
|
|
1667
|
+
# @!attribute [rw] cidr
|
|
1668
|
+
# The IP address or CIDR range of the deleted access source.
|
|
1669
|
+
# @return [String]
|
|
1670
|
+
#
|
|
1671
|
+
# @!attribute [rw] created_at
|
|
1672
|
+
# The date and time when the access source was originally created.
|
|
1673
|
+
# @return [Time]
|
|
1674
|
+
#
|
|
1675
|
+
# @!attribute [rw] id
|
|
1676
|
+
# The unique identifier of the deleted access source.
|
|
1677
|
+
# @return [String]
|
|
1678
|
+
#
|
|
1679
|
+
# @!attribute [rw] ip_address_type
|
|
1680
|
+
# The IP address type of the deleted access source (IPv4 or IPv6).
|
|
1681
|
+
# @return [String]
|
|
1682
|
+
#
|
|
1683
|
+
# @!attribute [rw] name
|
|
1684
|
+
# The name of the deleted access source.
|
|
1685
|
+
# @return [String]
|
|
1686
|
+
#
|
|
1687
|
+
# @!attribute [rw] dns_view_id
|
|
1688
|
+
# The ID of the DNS view that was associated with the deleted access
|
|
1689
|
+
# source.
|
|
1690
|
+
# @return [String]
|
|
1691
|
+
#
|
|
1692
|
+
# @!attribute [rw] protocol
|
|
1693
|
+
# The DNS protocol that was permitted for the deleted access source.
|
|
1694
|
+
# @return [String]
|
|
1695
|
+
#
|
|
1696
|
+
# @!attribute [rw] status
|
|
1697
|
+
# The final status of the deleted access source.
|
|
1698
|
+
# @return [String]
|
|
1699
|
+
#
|
|
1700
|
+
# @!attribute [rw] updated_at
|
|
1701
|
+
# The date and time when the access source was last updated before
|
|
1702
|
+
# deletion.
|
|
1703
|
+
# @return [Time]
|
|
1704
|
+
#
|
|
1705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteAccessSourceOutput AWS API Documentation
|
|
1706
|
+
#
|
|
1707
|
+
class DeleteAccessSourceOutput < Struct.new(
|
|
1708
|
+
:arn,
|
|
1709
|
+
:cidr,
|
|
1710
|
+
:created_at,
|
|
1711
|
+
:id,
|
|
1712
|
+
:ip_address_type,
|
|
1713
|
+
:name,
|
|
1714
|
+
:dns_view_id,
|
|
1715
|
+
:protocol,
|
|
1716
|
+
:status,
|
|
1717
|
+
:updated_at)
|
|
1718
|
+
SENSITIVE = []
|
|
1719
|
+
include Aws::Structure
|
|
1720
|
+
end
|
|
1721
|
+
|
|
1722
|
+
# @!attribute [rw] access_token_id
|
|
1723
|
+
# The unique identifier of the access token to delete.
|
|
1724
|
+
# @return [String]
|
|
1725
|
+
#
|
|
1726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteAccessTokenInput AWS API Documentation
|
|
1727
|
+
#
|
|
1728
|
+
class DeleteAccessTokenInput < Struct.new(
|
|
1729
|
+
:access_token_id)
|
|
1730
|
+
SENSITIVE = []
|
|
1731
|
+
include Aws::Structure
|
|
1732
|
+
end
|
|
1733
|
+
|
|
1734
|
+
# @!attribute [rw] id
|
|
1735
|
+
# The unique identifier of the deleted access token.
|
|
1736
|
+
# @return [String]
|
|
1737
|
+
#
|
|
1738
|
+
# @!attribute [rw] status
|
|
1739
|
+
# The final status of the deleted access token.
|
|
1740
|
+
# @return [String]
|
|
1741
|
+
#
|
|
1742
|
+
# @!attribute [rw] deleted_at
|
|
1743
|
+
# The date and time when the access token was deleted.
|
|
1744
|
+
# @return [Time]
|
|
1745
|
+
#
|
|
1746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteAccessTokenOutput AWS API Documentation
|
|
1747
|
+
#
|
|
1748
|
+
class DeleteAccessTokenOutput < Struct.new(
|
|
1749
|
+
:id,
|
|
1750
|
+
:status,
|
|
1751
|
+
:deleted_at)
|
|
1752
|
+
SENSITIVE = []
|
|
1753
|
+
include Aws::Structure
|
|
1754
|
+
end
|
|
1755
|
+
|
|
1756
|
+
# @!attribute [rw] dns_view_id
|
|
1757
|
+
# The unique identifier of the DNS view to delete.
|
|
1758
|
+
# @return [String]
|
|
1759
|
+
#
|
|
1760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteDNSViewInput AWS API Documentation
|
|
1761
|
+
#
|
|
1762
|
+
class DeleteDNSViewInput < Struct.new(
|
|
1763
|
+
:dns_view_id)
|
|
1764
|
+
SENSITIVE = []
|
|
1765
|
+
include Aws::Structure
|
|
1766
|
+
end
|
|
1767
|
+
|
|
1768
|
+
# @!attribute [rw] id
|
|
1769
|
+
# The unique identifier of the deleted DNS view.
|
|
1770
|
+
# @return [String]
|
|
1771
|
+
#
|
|
1772
|
+
# @!attribute [rw] arn
|
|
1773
|
+
# The Amazon Resource Name (ARN) of the deleted DNS view.
|
|
1774
|
+
# @return [String]
|
|
1775
|
+
#
|
|
1776
|
+
# @!attribute [rw] client_token
|
|
1777
|
+
# The unique string that identifies the request and ensures
|
|
1778
|
+
# idempotency.
|
|
1779
|
+
# @return [String]
|
|
1780
|
+
#
|
|
1781
|
+
# @!attribute [rw] dnssec_validation
|
|
1782
|
+
# Whether DNSSEC validation was enabled for the deleted DNS view.
|
|
1783
|
+
# @return [String]
|
|
1784
|
+
#
|
|
1785
|
+
# @!attribute [rw] edns_client_subnet
|
|
1786
|
+
# Whether EDNS Client Subnet injection was enabled for the deleted DNS
|
|
1787
|
+
# view.
|
|
1788
|
+
# @return [String]
|
|
1789
|
+
#
|
|
1790
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
1791
|
+
# The firewall rules fail-open behavior that was configured for the
|
|
1792
|
+
# deleted DNS view.
|
|
1793
|
+
# @return [String]
|
|
1794
|
+
#
|
|
1795
|
+
# @!attribute [rw] name
|
|
1796
|
+
# The name of the deleted DNS view.
|
|
1797
|
+
# @return [String]
|
|
1798
|
+
#
|
|
1799
|
+
# @!attribute [rw] description
|
|
1800
|
+
# The description of the deleted DNS view.
|
|
1801
|
+
# @return [String]
|
|
1802
|
+
#
|
|
1803
|
+
# @!attribute [rw] global_resolver_id
|
|
1804
|
+
# The ID of the Route 53 Global Resolver that the deleted DNS view was
|
|
1805
|
+
# associated with.
|
|
1806
|
+
# @return [String]
|
|
1807
|
+
#
|
|
1808
|
+
# @!attribute [rw] created_at
|
|
1809
|
+
# The date and time when the DNS view was originally created.
|
|
1810
|
+
# @return [Time]
|
|
1811
|
+
#
|
|
1812
|
+
# @!attribute [rw] updated_at
|
|
1813
|
+
# The date and time when the DNS view was last updated before
|
|
1814
|
+
# deletion.
|
|
1815
|
+
# @return [Time]
|
|
1816
|
+
#
|
|
1817
|
+
# @!attribute [rw] status
|
|
1818
|
+
# The final status of the deleted DNS view.
|
|
1819
|
+
# @return [String]
|
|
1820
|
+
#
|
|
1821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteDNSViewOutput AWS API Documentation
|
|
1822
|
+
#
|
|
1823
|
+
class DeleteDNSViewOutput < Struct.new(
|
|
1824
|
+
:id,
|
|
1825
|
+
:arn,
|
|
1826
|
+
:client_token,
|
|
1827
|
+
:dnssec_validation,
|
|
1828
|
+
:edns_client_subnet,
|
|
1829
|
+
:firewall_rules_fail_open,
|
|
1830
|
+
:name,
|
|
1831
|
+
:description,
|
|
1832
|
+
:global_resolver_id,
|
|
1833
|
+
:created_at,
|
|
1834
|
+
:updated_at,
|
|
1835
|
+
:status)
|
|
1836
|
+
SENSITIVE = []
|
|
1837
|
+
include Aws::Structure
|
|
1838
|
+
end
|
|
1839
|
+
|
|
1840
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
1841
|
+
# The unique identifier of the firewall domain list to delete.
|
|
1842
|
+
# @return [String]
|
|
1843
|
+
#
|
|
1844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteFirewallDomainListInput AWS API Documentation
|
|
1845
|
+
#
|
|
1846
|
+
class DeleteFirewallDomainListInput < Struct.new(
|
|
1847
|
+
:firewall_domain_list_id)
|
|
1848
|
+
SENSITIVE = []
|
|
1849
|
+
include Aws::Structure
|
|
1850
|
+
end
|
|
1851
|
+
|
|
1852
|
+
# @!attribute [rw] arn
|
|
1853
|
+
# The Amazon Resource Name (ARN) of the deleted firewall domain list.
|
|
1854
|
+
# @return [String]
|
|
1855
|
+
#
|
|
1856
|
+
# @!attribute [rw] id
|
|
1857
|
+
# The unique identifier of the deleted firewall domain list.
|
|
1858
|
+
# @return [String]
|
|
1859
|
+
#
|
|
1860
|
+
# @!attribute [rw] name
|
|
1861
|
+
# The name of the deleted firewall domain list.
|
|
1862
|
+
# @return [String]
|
|
1863
|
+
#
|
|
1864
|
+
# @!attribute [rw] status
|
|
1865
|
+
# The final status of the deleted firewall domain list.
|
|
1866
|
+
# @return [String]
|
|
1867
|
+
#
|
|
1868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteFirewallDomainListOutput AWS API Documentation
|
|
1869
|
+
#
|
|
1870
|
+
class DeleteFirewallDomainListOutput < Struct.new(
|
|
1871
|
+
:arn,
|
|
1872
|
+
:id,
|
|
1873
|
+
:name,
|
|
1874
|
+
:status)
|
|
1875
|
+
SENSITIVE = []
|
|
1876
|
+
include Aws::Structure
|
|
1877
|
+
end
|
|
1878
|
+
|
|
1879
|
+
# @!attribute [rw] firewall_rule_id
|
|
1880
|
+
# The unique identifier of the firewall rule to delete.
|
|
1881
|
+
# @return [String]
|
|
1882
|
+
#
|
|
1883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteFirewallRuleInput AWS API Documentation
|
|
1884
|
+
#
|
|
1885
|
+
class DeleteFirewallRuleInput < Struct.new(
|
|
1886
|
+
:firewall_rule_id)
|
|
1887
|
+
SENSITIVE = []
|
|
1888
|
+
include Aws::Structure
|
|
1889
|
+
end
|
|
1890
|
+
|
|
1891
|
+
# @!attribute [rw] action
|
|
1892
|
+
# The action that was configured for the deleted firewall rule.
|
|
1893
|
+
# @return [String]
|
|
1894
|
+
#
|
|
1895
|
+
# @!attribute [rw] block_override_dns_type
|
|
1896
|
+
# The DNS record type that was configured for the deleted firewall
|
|
1897
|
+
# rule's custom response.
|
|
1898
|
+
# @return [String]
|
|
1899
|
+
#
|
|
1900
|
+
# @!attribute [rw] block_override_domain
|
|
1901
|
+
# The custom domain that was configured for the deleted firewall
|
|
1902
|
+
# rule's BLOCK response.
|
|
1903
|
+
# @return [String]
|
|
1904
|
+
#
|
|
1905
|
+
# @!attribute [rw] block_override_ttl
|
|
1906
|
+
# The TTL value that was configured for the deleted firewall rule's
|
|
1907
|
+
# custom response.
|
|
1908
|
+
# @return [Integer]
|
|
1909
|
+
#
|
|
1910
|
+
# @!attribute [rw] block_response
|
|
1911
|
+
# The block response type that was configured for the deleted firewall
|
|
1912
|
+
# rule.
|
|
1913
|
+
# @return [String]
|
|
1914
|
+
#
|
|
1915
|
+
# @!attribute [rw] confidence_threshold
|
|
1916
|
+
# The confidence threshold that was configured for the deleted
|
|
1917
|
+
# firewall rule's advanced threat detection.
|
|
1918
|
+
# @return [String]
|
|
1919
|
+
#
|
|
1920
|
+
# @!attribute [rw] created_at
|
|
1921
|
+
# The date and time when the firewall rule was originally created.
|
|
1922
|
+
# @return [Time]
|
|
1923
|
+
#
|
|
1924
|
+
# @!attribute [rw] description
|
|
1925
|
+
# The description of the deleted firewall rule.
|
|
1926
|
+
# @return [String]
|
|
1927
|
+
#
|
|
1928
|
+
# @!attribute [rw] dns_advanced_protection
|
|
1929
|
+
# Whether advanced DNS threat protection was enabled for the deleted
|
|
1930
|
+
# firewall rule.
|
|
1931
|
+
# @return [String]
|
|
1932
|
+
#
|
|
1933
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
1934
|
+
# The ID of the firewall domain list that was associated with the
|
|
1935
|
+
# deleted firewall rule.
|
|
1936
|
+
# @return [String]
|
|
1937
|
+
#
|
|
1938
|
+
# @!attribute [rw] id
|
|
1939
|
+
# The unique identifier of the deleted firewall rule.
|
|
1940
|
+
# @return [String]
|
|
1941
|
+
#
|
|
1942
|
+
# @!attribute [rw] name
|
|
1943
|
+
# The name of the deleted firewall rule.
|
|
1944
|
+
# @return [String]
|
|
1945
|
+
#
|
|
1946
|
+
# @!attribute [rw] priority
|
|
1947
|
+
# The priority that was configured for the deleted firewall rule.
|
|
1948
|
+
# @return [Integer]
|
|
1949
|
+
#
|
|
1950
|
+
# @!attribute [rw] dns_view_id
|
|
1951
|
+
# The ID of the DNS view that was associated with the deleted firewall
|
|
1952
|
+
# rule.
|
|
1953
|
+
# @return [String]
|
|
1954
|
+
#
|
|
1955
|
+
# @!attribute [rw] query_type
|
|
1956
|
+
# The DNS query type that the deleted firewall rule was configured to
|
|
1957
|
+
# match.
|
|
1958
|
+
# @return [String]
|
|
1959
|
+
#
|
|
1960
|
+
# @!attribute [rw] status
|
|
1961
|
+
# The final status of the deleted firewall rule.
|
|
1962
|
+
# @return [String]
|
|
1963
|
+
#
|
|
1964
|
+
# @!attribute [rw] updated_at
|
|
1965
|
+
# The date and time when the firewall rule was last updated before
|
|
1966
|
+
# deletion.
|
|
1967
|
+
# @return [Time]
|
|
1968
|
+
#
|
|
1969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteFirewallRuleOutput AWS API Documentation
|
|
1970
|
+
#
|
|
1971
|
+
class DeleteFirewallRuleOutput < Struct.new(
|
|
1972
|
+
:action,
|
|
1973
|
+
:block_override_dns_type,
|
|
1974
|
+
:block_override_domain,
|
|
1975
|
+
:block_override_ttl,
|
|
1976
|
+
:block_response,
|
|
1977
|
+
:confidence_threshold,
|
|
1978
|
+
:created_at,
|
|
1979
|
+
:description,
|
|
1980
|
+
:dns_advanced_protection,
|
|
1981
|
+
:firewall_domain_list_id,
|
|
1982
|
+
:id,
|
|
1983
|
+
:name,
|
|
1984
|
+
:priority,
|
|
1985
|
+
:dns_view_id,
|
|
1986
|
+
:query_type,
|
|
1987
|
+
:status,
|
|
1988
|
+
:updated_at)
|
|
1989
|
+
SENSITIVE = []
|
|
1990
|
+
include Aws::Structure
|
|
1991
|
+
end
|
|
1992
|
+
|
|
1993
|
+
# @!attribute [rw] global_resolver_id
|
|
1994
|
+
# The unique identifier of the Route 53 Global Resolver to delete.
|
|
1995
|
+
# @return [String]
|
|
1996
|
+
#
|
|
1997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteGlobalResolverInput AWS API Documentation
|
|
1998
|
+
#
|
|
1999
|
+
class DeleteGlobalResolverInput < Struct.new(
|
|
2000
|
+
:global_resolver_id)
|
|
2001
|
+
SENSITIVE = []
|
|
2002
|
+
include Aws::Structure
|
|
2003
|
+
end
|
|
2004
|
+
|
|
2005
|
+
# @!attribute [rw] id
|
|
2006
|
+
# The unique identifier of the deleted Route 53 Global Resolver.
|
|
2007
|
+
# @return [String]
|
|
2008
|
+
#
|
|
2009
|
+
# @!attribute [rw] arn
|
|
2010
|
+
# The Amazon Resource Name (ARN) of the deleted Route 53 Global
|
|
2011
|
+
# Resolver.
|
|
2012
|
+
# @return [String]
|
|
2013
|
+
#
|
|
2014
|
+
# @!attribute [rw] client_token
|
|
2015
|
+
# The unique string that identifies the request and ensures
|
|
2016
|
+
# idempotency.
|
|
2017
|
+
# @return [String]
|
|
2018
|
+
#
|
|
2019
|
+
# @!attribute [rw] dns_name
|
|
2020
|
+
# The hostname that DNS clients used for TLS certificate validation
|
|
2021
|
+
# when connecting to the deleted Route 53 Global Resolver.
|
|
2022
|
+
# @return [String]
|
|
2023
|
+
#
|
|
2024
|
+
# @!attribute [rw] observability_region
|
|
2025
|
+
# The AWS Region where observability data for the deleted Route 53
|
|
2026
|
+
# Global Resolver was stored.
|
|
2027
|
+
# @return [String]
|
|
2028
|
+
#
|
|
2029
|
+
# @!attribute [rw] name
|
|
2030
|
+
# The name of the deleted Route 53 Global Resolver.
|
|
2031
|
+
# @return [String]
|
|
2032
|
+
#
|
|
2033
|
+
# @!attribute [rw] description
|
|
2034
|
+
# The description of the deleted Route 53 Global Resolver.
|
|
2035
|
+
# @return [String]
|
|
2036
|
+
#
|
|
2037
|
+
# @!attribute [rw] regions
|
|
2038
|
+
# The AWS Regions where the deleted Route 53 Global Resolver was
|
|
2039
|
+
# deployed and operational.
|
|
2040
|
+
# @return [Array<String>]
|
|
2041
|
+
#
|
|
2042
|
+
# @!attribute [rw] created_at
|
|
2043
|
+
# The date and time when the Route 53 Global Resolver was originally
|
|
2044
|
+
# created.
|
|
2045
|
+
# @return [Time]
|
|
2046
|
+
#
|
|
2047
|
+
# @!attribute [rw] updated_at
|
|
2048
|
+
# The date and time when the Route 53 Global Resolver was last updated
|
|
2049
|
+
# before deletion.
|
|
2050
|
+
# @return [Time]
|
|
2051
|
+
#
|
|
2052
|
+
# @!attribute [rw] status
|
|
2053
|
+
# The final status of the deleted Route 53 Global Resolver.
|
|
2054
|
+
# @return [String]
|
|
2055
|
+
#
|
|
2056
|
+
# @!attribute [rw] ipv4_addresses
|
|
2057
|
+
# The global anycast IPv4 addresses that were associated with the
|
|
2058
|
+
# deleted Route 53 Global Resolver.
|
|
2059
|
+
# @return [Array<String>]
|
|
2060
|
+
#
|
|
2061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DeleteGlobalResolverOutput AWS API Documentation
|
|
2062
|
+
#
|
|
2063
|
+
class DeleteGlobalResolverOutput < Struct.new(
|
|
2064
|
+
:id,
|
|
2065
|
+
:arn,
|
|
2066
|
+
:client_token,
|
|
2067
|
+
:dns_name,
|
|
2068
|
+
:observability_region,
|
|
2069
|
+
:name,
|
|
2070
|
+
:description,
|
|
2071
|
+
:regions,
|
|
2072
|
+
:created_at,
|
|
2073
|
+
:updated_at,
|
|
2074
|
+
:status,
|
|
2075
|
+
:ipv4_addresses)
|
|
2076
|
+
SENSITIVE = []
|
|
2077
|
+
include Aws::Structure
|
|
2078
|
+
end
|
|
2079
|
+
|
|
2080
|
+
# @!attribute [rw] dns_view_id
|
|
2081
|
+
# The unique identifier of the DNS view to disable.
|
|
2082
|
+
# @return [String]
|
|
2083
|
+
#
|
|
2084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DisableDNSViewInput AWS API Documentation
|
|
2085
|
+
#
|
|
2086
|
+
class DisableDNSViewInput < Struct.new(
|
|
2087
|
+
:dns_view_id)
|
|
2088
|
+
SENSITIVE = []
|
|
2089
|
+
include Aws::Structure
|
|
2090
|
+
end
|
|
2091
|
+
|
|
2092
|
+
# @!attribute [rw] id
|
|
2093
|
+
# The unique identifier of the disabled DNS view.
|
|
2094
|
+
# @return [String]
|
|
2095
|
+
#
|
|
2096
|
+
# @!attribute [rw] arn
|
|
2097
|
+
# The Amazon Resource Name (ARN) of the disabled DNS view.
|
|
2098
|
+
# @return [String]
|
|
2099
|
+
#
|
|
2100
|
+
# @!attribute [rw] client_token
|
|
2101
|
+
# The unique string that identifies the request and ensures
|
|
2102
|
+
# idempotency.
|
|
2103
|
+
# @return [String]
|
|
2104
|
+
#
|
|
2105
|
+
# @!attribute [rw] dnssec_validation
|
|
2106
|
+
# Whether DNSSEC validation is enabled for the disabled DNS view.
|
|
2107
|
+
# @return [String]
|
|
2108
|
+
#
|
|
2109
|
+
# @!attribute [rw] edns_client_subnet
|
|
2110
|
+
# Whether EDNS Client Subnet injection is enabled for the disabled DNS
|
|
2111
|
+
# view.
|
|
2112
|
+
# @return [String]
|
|
2113
|
+
#
|
|
2114
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
2115
|
+
# The firewall rules fail-open behavior configured for the disabled
|
|
2116
|
+
# DNS view.
|
|
2117
|
+
# @return [String]
|
|
2118
|
+
#
|
|
2119
|
+
# @!attribute [rw] name
|
|
2120
|
+
# The name of the disabled DNS view.
|
|
2121
|
+
# @return [String]
|
|
2122
|
+
#
|
|
2123
|
+
# @!attribute [rw] description
|
|
2124
|
+
# The description of the disabled DNS view.
|
|
2125
|
+
# @return [String]
|
|
2126
|
+
#
|
|
2127
|
+
# @!attribute [rw] global_resolver_id
|
|
2128
|
+
# The ID of the Route 53 Global Resolver that the disabled DNS view is
|
|
2129
|
+
# associated with.
|
|
2130
|
+
# @return [String]
|
|
2131
|
+
#
|
|
2132
|
+
# @!attribute [rw] created_at
|
|
2133
|
+
# The date and time when the DNS view was originally created.
|
|
2134
|
+
# @return [Time]
|
|
2135
|
+
#
|
|
2136
|
+
# @!attribute [rw] updated_at
|
|
2137
|
+
# The date and time when the DNS view was last updated.
|
|
2138
|
+
# @return [Time]
|
|
2139
|
+
#
|
|
2140
|
+
# @!attribute [rw] status
|
|
2141
|
+
# The current status of the disabled DNS view.
|
|
2142
|
+
# @return [String]
|
|
2143
|
+
#
|
|
2144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DisableDNSViewOutput AWS API Documentation
|
|
2145
|
+
#
|
|
2146
|
+
class DisableDNSViewOutput < Struct.new(
|
|
2147
|
+
:id,
|
|
2148
|
+
:arn,
|
|
2149
|
+
:client_token,
|
|
2150
|
+
:dnssec_validation,
|
|
2151
|
+
:edns_client_subnet,
|
|
2152
|
+
:firewall_rules_fail_open,
|
|
2153
|
+
:name,
|
|
2154
|
+
:description,
|
|
2155
|
+
:global_resolver_id,
|
|
2156
|
+
:created_at,
|
|
2157
|
+
:updated_at,
|
|
2158
|
+
:status)
|
|
2159
|
+
SENSITIVE = []
|
|
2160
|
+
include Aws::Structure
|
|
2161
|
+
end
|
|
2162
|
+
|
|
2163
|
+
# @!attribute [rw] hosted_zone_id
|
|
2164
|
+
# The ID of the Route 53 private hosted zone to disassociate.
|
|
2165
|
+
# @return [String]
|
|
2166
|
+
#
|
|
2167
|
+
# @!attribute [rw] resource_arn
|
|
2168
|
+
# The Amazon Resource Name (ARN) of the Route 53 Global Resolver
|
|
2169
|
+
# resource to disassociate the hosted zone from.
|
|
2170
|
+
# @return [String]
|
|
2171
|
+
#
|
|
2172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DisassociateHostedZoneInput AWS API Documentation
|
|
2173
|
+
#
|
|
2174
|
+
class DisassociateHostedZoneInput < Struct.new(
|
|
2175
|
+
:hosted_zone_id,
|
|
2176
|
+
:resource_arn)
|
|
2177
|
+
SENSITIVE = []
|
|
2178
|
+
include Aws::Structure
|
|
2179
|
+
end
|
|
2180
|
+
|
|
2181
|
+
# @!attribute [rw] id
|
|
2182
|
+
# The unique identifier of the disassociation.
|
|
2183
|
+
# @return [String]
|
|
2184
|
+
#
|
|
2185
|
+
# @!attribute [rw] resource_arn
|
|
2186
|
+
# The Amazon Resource Name (ARN) of the Route 53 Global Resolver
|
|
2187
|
+
# resource that the hosted zone was disassociated from.
|
|
2188
|
+
# @return [String]
|
|
2189
|
+
#
|
|
2190
|
+
# @!attribute [rw] hosted_zone_id
|
|
2191
|
+
# The ID of the Route 53 private hosted zone that was disassociated.
|
|
2192
|
+
# @return [String]
|
|
2193
|
+
#
|
|
2194
|
+
# @!attribute [rw] hosted_zone_name
|
|
2195
|
+
# The name of the Route 53 private hosted zone that was disassociated.
|
|
2196
|
+
# @return [String]
|
|
2197
|
+
#
|
|
2198
|
+
# @!attribute [rw] name
|
|
2199
|
+
# The name of the association that was removed.
|
|
2200
|
+
# @return [String]
|
|
2201
|
+
#
|
|
2202
|
+
# @!attribute [rw] created_at
|
|
2203
|
+
# The date and time when the association was originally created.
|
|
2204
|
+
# @return [Time]
|
|
2205
|
+
#
|
|
2206
|
+
# @!attribute [rw] updated_at
|
|
2207
|
+
# The date and time when the association was last updated before
|
|
2208
|
+
# disassociation.
|
|
2209
|
+
# @return [Time]
|
|
2210
|
+
#
|
|
2211
|
+
# @!attribute [rw] status
|
|
2212
|
+
# The final status of the disassociation.
|
|
2213
|
+
# @return [String]
|
|
2214
|
+
#
|
|
2215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/DisassociateHostedZoneOutput AWS API Documentation
|
|
2216
|
+
#
|
|
2217
|
+
class DisassociateHostedZoneOutput < Struct.new(
|
|
2218
|
+
:id,
|
|
2219
|
+
:resource_arn,
|
|
2220
|
+
:hosted_zone_id,
|
|
2221
|
+
:hosted_zone_name,
|
|
2222
|
+
:name,
|
|
2223
|
+
:created_at,
|
|
2224
|
+
:updated_at,
|
|
2225
|
+
:status)
|
|
2226
|
+
SENSITIVE = []
|
|
2227
|
+
include Aws::Structure
|
|
2228
|
+
end
|
|
2229
|
+
|
|
2230
|
+
# @!attribute [rw] dns_view_id
|
|
2231
|
+
# The unique identifier of the DNS view to enable.
|
|
2232
|
+
# @return [String]
|
|
2233
|
+
#
|
|
2234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/EnableDNSViewInput AWS API Documentation
|
|
2235
|
+
#
|
|
2236
|
+
class EnableDNSViewInput < Struct.new(
|
|
2237
|
+
:dns_view_id)
|
|
2238
|
+
SENSITIVE = []
|
|
2239
|
+
include Aws::Structure
|
|
2240
|
+
end
|
|
2241
|
+
|
|
2242
|
+
# @!attribute [rw] id
|
|
2243
|
+
# The unique identifier of the enabled DNS view.
|
|
2244
|
+
# @return [String]
|
|
2245
|
+
#
|
|
2246
|
+
# @!attribute [rw] arn
|
|
2247
|
+
# The Amazon Resource Name (ARN) of the enabled DNS view.
|
|
2248
|
+
# @return [String]
|
|
2249
|
+
#
|
|
2250
|
+
# @!attribute [rw] client_token
|
|
2251
|
+
# The unique string that identifies the request and ensures
|
|
2252
|
+
# idempotency.
|
|
2253
|
+
# @return [String]
|
|
2254
|
+
#
|
|
2255
|
+
# @!attribute [rw] dnssec_validation
|
|
2256
|
+
# Whether DNSSEC validation is enabled for the enabled DNS view.
|
|
2257
|
+
# @return [String]
|
|
2258
|
+
#
|
|
2259
|
+
# @!attribute [rw] edns_client_subnet
|
|
2260
|
+
# Whether EDNS Client Subnet injection is enabled for the enabled DNS
|
|
2261
|
+
# view.
|
|
2262
|
+
# @return [String]
|
|
2263
|
+
#
|
|
2264
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
2265
|
+
# The firewall rules fail-open behavior configured for the enabled DNS
|
|
2266
|
+
# view.
|
|
2267
|
+
# @return [String]
|
|
2268
|
+
#
|
|
2269
|
+
# @!attribute [rw] name
|
|
2270
|
+
# The name of the enabled DNS view.
|
|
2271
|
+
# @return [String]
|
|
2272
|
+
#
|
|
2273
|
+
# @!attribute [rw] description
|
|
2274
|
+
# The description of the enabled DNS view.
|
|
2275
|
+
# @return [String]
|
|
2276
|
+
#
|
|
2277
|
+
# @!attribute [rw] global_resolver_id
|
|
2278
|
+
# The ID of the Route 53 Global Resolver that the enabled DNS view is
|
|
2279
|
+
# associated with.
|
|
2280
|
+
# @return [String]
|
|
2281
|
+
#
|
|
2282
|
+
# @!attribute [rw] created_at
|
|
2283
|
+
# The date and time when the DNS view was originally created.
|
|
2284
|
+
# @return [Time]
|
|
2285
|
+
#
|
|
2286
|
+
# @!attribute [rw] updated_at
|
|
2287
|
+
# The date and time when the DNS view was last updated.
|
|
2288
|
+
# @return [Time]
|
|
2289
|
+
#
|
|
2290
|
+
# @!attribute [rw] status
|
|
2291
|
+
# The current status of the enabled DNS view.
|
|
2292
|
+
# @return [String]
|
|
2293
|
+
#
|
|
2294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/EnableDNSViewOutput AWS API Documentation
|
|
2295
|
+
#
|
|
2296
|
+
class EnableDNSViewOutput < Struct.new(
|
|
2297
|
+
:id,
|
|
2298
|
+
:arn,
|
|
2299
|
+
:client_token,
|
|
2300
|
+
:dnssec_validation,
|
|
2301
|
+
:edns_client_subnet,
|
|
2302
|
+
:firewall_rules_fail_open,
|
|
2303
|
+
:name,
|
|
2304
|
+
:description,
|
|
2305
|
+
:global_resolver_id,
|
|
2306
|
+
:created_at,
|
|
2307
|
+
:updated_at,
|
|
2308
|
+
:status)
|
|
2309
|
+
SENSITIVE = []
|
|
2310
|
+
include Aws::Structure
|
|
2311
|
+
end
|
|
2312
|
+
|
|
2313
|
+
# Summary information about a firewall domain list.
|
|
2314
|
+
#
|
|
2315
|
+
# @!attribute [rw] arn
|
|
2316
|
+
# The Amazon Resource Name (ARN) of the firewall domain list.
|
|
2317
|
+
# @return [String]
|
|
2318
|
+
#
|
|
2319
|
+
# @!attribute [rw] global_resolver_id
|
|
2320
|
+
# The ID of the global resolver that the firewall domain list is
|
|
2321
|
+
# associated with.
|
|
2322
|
+
# @return [String]
|
|
2323
|
+
#
|
|
2324
|
+
# @!attribute [rw] created_at
|
|
2325
|
+
# The date and time when the firewall domain list was created.
|
|
2326
|
+
# @return [Time]
|
|
2327
|
+
#
|
|
2328
|
+
# @!attribute [rw] description
|
|
2329
|
+
# A description of the firewall domain list.
|
|
2330
|
+
# @return [String]
|
|
2331
|
+
#
|
|
2332
|
+
# @!attribute [rw] id
|
|
2333
|
+
# The unique identifier of the firewall domain list.
|
|
2334
|
+
# @return [String]
|
|
2335
|
+
#
|
|
2336
|
+
# @!attribute [rw] name
|
|
2337
|
+
# The name of the firewall domain list.
|
|
2338
|
+
# @return [String]
|
|
2339
|
+
#
|
|
2340
|
+
# @!attribute [rw] status
|
|
2341
|
+
# The current status of the firewall domain list.
|
|
2342
|
+
# @return [String]
|
|
2343
|
+
#
|
|
2344
|
+
# @!attribute [rw] updated_at
|
|
2345
|
+
# The date and time when the firewall domain list was last updated.
|
|
2346
|
+
# @return [Time]
|
|
2347
|
+
#
|
|
2348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/FirewallDomainListsItem AWS API Documentation
|
|
2349
|
+
#
|
|
2350
|
+
class FirewallDomainListsItem < Struct.new(
|
|
2351
|
+
:arn,
|
|
2352
|
+
:global_resolver_id,
|
|
2353
|
+
:created_at,
|
|
2354
|
+
:description,
|
|
2355
|
+
:id,
|
|
2356
|
+
:name,
|
|
2357
|
+
:status,
|
|
2358
|
+
:updated_at)
|
|
2359
|
+
SENSITIVE = []
|
|
2360
|
+
include Aws::Structure
|
|
2361
|
+
end
|
|
2362
|
+
|
|
2363
|
+
# Summary information about a firewall rule.
|
|
2364
|
+
#
|
|
2365
|
+
# @!attribute [rw] action
|
|
2366
|
+
# The action configured for the firewall rule.
|
|
2367
|
+
# @return [String]
|
|
2368
|
+
#
|
|
2369
|
+
# @!attribute [rw] block_override_dns_type
|
|
2370
|
+
# The DNS record type configured for the firewall rule's custom
|
|
2371
|
+
# response.
|
|
2372
|
+
# @return [String]
|
|
2373
|
+
#
|
|
2374
|
+
# @!attribute [rw] block_override_domain
|
|
2375
|
+
# The custom domain name configured for the firewall rule's BLOCK
|
|
2376
|
+
# response.
|
|
2377
|
+
# @return [String]
|
|
2378
|
+
#
|
|
2379
|
+
# @!attribute [rw] block_override_ttl
|
|
2380
|
+
# The TTL value configured for the firewall rule's custom response.
|
|
2381
|
+
# @return [Integer]
|
|
2382
|
+
#
|
|
2383
|
+
# @!attribute [rw] block_response
|
|
2384
|
+
# The type of block response configured for the firewall rule.
|
|
2385
|
+
# @return [String]
|
|
2386
|
+
#
|
|
2387
|
+
# @!attribute [rw] confidence_threshold
|
|
2388
|
+
# The confidence threshold configured for the firewall rule's
|
|
2389
|
+
# advanced threat detection.
|
|
2390
|
+
# @return [String]
|
|
2391
|
+
#
|
|
2392
|
+
# @!attribute [rw] created_at
|
|
2393
|
+
# The date and time when the firewall rule was created.
|
|
2394
|
+
# @return [Time]
|
|
2395
|
+
#
|
|
2396
|
+
# @!attribute [rw] description
|
|
2397
|
+
# The description of the firewall rule.
|
|
2398
|
+
# @return [String]
|
|
2399
|
+
#
|
|
2400
|
+
# @!attribute [rw] dns_advanced_protection
|
|
2401
|
+
# Whether advanced DNS threat protection is enabled for the firewall
|
|
2402
|
+
# rule.
|
|
2403
|
+
# @return [String]
|
|
2404
|
+
#
|
|
2405
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
2406
|
+
# The ID of the firewall domain list associated with the firewall
|
|
2407
|
+
# rule.
|
|
2408
|
+
# @return [String]
|
|
2409
|
+
#
|
|
2410
|
+
# @!attribute [rw] id
|
|
2411
|
+
# The unique identifier of the firewall rule.
|
|
2412
|
+
# @return [String]
|
|
2413
|
+
#
|
|
2414
|
+
# @!attribute [rw] name
|
|
2415
|
+
# The name of the firewall rule.
|
|
2416
|
+
# @return [String]
|
|
2417
|
+
#
|
|
2418
|
+
# @!attribute [rw] priority
|
|
2419
|
+
# The priority of the firewall rule.
|
|
2420
|
+
# @return [Integer]
|
|
2421
|
+
#
|
|
2422
|
+
# @!attribute [rw] dns_view_id
|
|
2423
|
+
# The ID of the DNS view associated with the firewall rule.
|
|
2424
|
+
# @return [String]
|
|
2425
|
+
#
|
|
2426
|
+
# @!attribute [rw] query_type
|
|
2427
|
+
# The DNS query type that the firewall rule matches.
|
|
2428
|
+
# @return [String]
|
|
2429
|
+
#
|
|
2430
|
+
# @!attribute [rw] status
|
|
2431
|
+
# The current status of the firewall rule.
|
|
2432
|
+
# @return [String]
|
|
2433
|
+
#
|
|
2434
|
+
# @!attribute [rw] updated_at
|
|
2435
|
+
# The date and time when the firewall rule was last updated.
|
|
2436
|
+
# @return [Time]
|
|
2437
|
+
#
|
|
2438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/FirewallRulesItem AWS API Documentation
|
|
2439
|
+
#
|
|
2440
|
+
class FirewallRulesItem < Struct.new(
|
|
2441
|
+
:action,
|
|
2442
|
+
:block_override_dns_type,
|
|
2443
|
+
:block_override_domain,
|
|
2444
|
+
:block_override_ttl,
|
|
2445
|
+
:block_response,
|
|
2446
|
+
:confidence_threshold,
|
|
2447
|
+
:created_at,
|
|
2448
|
+
:description,
|
|
2449
|
+
:dns_advanced_protection,
|
|
2450
|
+
:firewall_domain_list_id,
|
|
2451
|
+
:id,
|
|
2452
|
+
:name,
|
|
2453
|
+
:priority,
|
|
2454
|
+
:dns_view_id,
|
|
2455
|
+
:query_type,
|
|
2456
|
+
:status,
|
|
2457
|
+
:updated_at)
|
|
2458
|
+
SENSITIVE = []
|
|
2459
|
+
include Aws::Structure
|
|
2460
|
+
end
|
|
2461
|
+
|
|
2462
|
+
# @!attribute [rw] access_source_id
|
|
2463
|
+
# The unique identifier of the access source to retrieve.
|
|
2464
|
+
# @return [String]
|
|
2465
|
+
#
|
|
2466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetAccessSourceInput AWS API Documentation
|
|
2467
|
+
#
|
|
2468
|
+
class GetAccessSourceInput < Struct.new(
|
|
2469
|
+
:access_source_id)
|
|
2470
|
+
SENSITIVE = []
|
|
2471
|
+
include Aws::Structure
|
|
2472
|
+
end
|
|
2473
|
+
|
|
2474
|
+
# @!attribute [rw] arn
|
|
2475
|
+
# The Amazon Resource Name (ARN) of the access source.
|
|
2476
|
+
# @return [String]
|
|
2477
|
+
#
|
|
2478
|
+
# @!attribute [rw] cidr
|
|
2479
|
+
# The IP range for the rule's parameters in CIDR notation.
|
|
2480
|
+
# @return [String]
|
|
2481
|
+
#
|
|
2482
|
+
# @!attribute [rw] created_at
|
|
2483
|
+
# The time and date the rule was created.
|
|
2484
|
+
# @return [Time]
|
|
2485
|
+
#
|
|
2486
|
+
# @!attribute [rw] id
|
|
2487
|
+
# ID for the rule.
|
|
2488
|
+
# @return [String]
|
|
2489
|
+
#
|
|
2490
|
+
# @!attribute [rw] ip_address_type
|
|
2491
|
+
# The IP address type.
|
|
2492
|
+
# @return [String]
|
|
2493
|
+
#
|
|
2494
|
+
# @!attribute [rw] name
|
|
2495
|
+
# Name for the access source.
|
|
2496
|
+
# @return [String]
|
|
2497
|
+
#
|
|
2498
|
+
# @!attribute [rw] dns_view_id
|
|
2499
|
+
# ID for the DNS view that the rule is associated to.
|
|
2500
|
+
# @return [String]
|
|
2501
|
+
#
|
|
2502
|
+
# @!attribute [rw] protocol
|
|
2503
|
+
# The protocol determines how data is transmitted to a Global Resolver
|
|
2504
|
+
# instance.
|
|
2505
|
+
# @return [String]
|
|
2506
|
+
#
|
|
2507
|
+
# @!attribute [rw] status
|
|
2508
|
+
# Information about the status of the rule.
|
|
2509
|
+
# @return [String]
|
|
2510
|
+
#
|
|
2511
|
+
# @!attribute [rw] updated_at
|
|
2512
|
+
# The time and date the access source was updated.
|
|
2513
|
+
# @return [Time]
|
|
2514
|
+
#
|
|
2515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetAccessSourceOutput AWS API Documentation
|
|
2516
|
+
#
|
|
2517
|
+
class GetAccessSourceOutput < Struct.new(
|
|
2518
|
+
:arn,
|
|
2519
|
+
:cidr,
|
|
2520
|
+
:created_at,
|
|
2521
|
+
:id,
|
|
2522
|
+
:ip_address_type,
|
|
2523
|
+
:name,
|
|
2524
|
+
:dns_view_id,
|
|
2525
|
+
:protocol,
|
|
2526
|
+
:status,
|
|
2527
|
+
:updated_at)
|
|
2528
|
+
SENSITIVE = []
|
|
2529
|
+
include Aws::Structure
|
|
2530
|
+
end
|
|
2531
|
+
|
|
2532
|
+
# @!attribute [rw] access_token_id
|
|
2533
|
+
# ID of the token.
|
|
2534
|
+
# @return [String]
|
|
2535
|
+
#
|
|
2536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetAccessTokenInput AWS API Documentation
|
|
2537
|
+
#
|
|
2538
|
+
class GetAccessTokenInput < Struct.new(
|
|
2539
|
+
:access_token_id)
|
|
2540
|
+
SENSITIVE = []
|
|
2541
|
+
include Aws::Structure
|
|
2542
|
+
end
|
|
2543
|
+
|
|
2544
|
+
# @!attribute [rw] id
|
|
2545
|
+
# ID of the token.
|
|
2546
|
+
# @return [String]
|
|
2547
|
+
#
|
|
2548
|
+
# @!attribute [rw] arn
|
|
2549
|
+
# The Amazon Resource Name (ARN) of the token.
|
|
2550
|
+
# @return [String]
|
|
2551
|
+
#
|
|
2552
|
+
# @!attribute [rw] client_token
|
|
2553
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
2554
|
+
# means that making the same request multiple times with the same
|
|
2555
|
+
# `clientToken` has the same result every time.
|
|
2556
|
+
# @return [String]
|
|
2557
|
+
#
|
|
2558
|
+
# @!attribute [rw] created_at
|
|
2559
|
+
# The time and date the token was created.
|
|
2560
|
+
# @return [Time]
|
|
2561
|
+
#
|
|
2562
|
+
# @!attribute [rw] dns_view_id
|
|
2563
|
+
# ID of the DNS view the token is associated to.
|
|
2564
|
+
# @return [String]
|
|
2565
|
+
#
|
|
2566
|
+
# @!attribute [rw] expires_at
|
|
2567
|
+
# The token's expiration time and date.
|
|
2568
|
+
# @return [Time]
|
|
2569
|
+
#
|
|
2570
|
+
# @!attribute [rw] global_resolver_id
|
|
2571
|
+
# ID of the Global Resolver.
|
|
2572
|
+
# @return [String]
|
|
2573
|
+
#
|
|
2574
|
+
# @!attribute [rw] name
|
|
2575
|
+
# Name of the token.
|
|
2576
|
+
# @return [String]
|
|
2577
|
+
#
|
|
2578
|
+
# @!attribute [rw] status
|
|
2579
|
+
# The operational status of the token.
|
|
2580
|
+
# @return [String]
|
|
2581
|
+
#
|
|
2582
|
+
# @!attribute [rw] updated_at
|
|
2583
|
+
# The time and date the token was created.
|
|
2584
|
+
# @return [Time]
|
|
2585
|
+
#
|
|
2586
|
+
# @!attribute [rw] value
|
|
2587
|
+
# The value of the token.
|
|
2588
|
+
# @return [String]
|
|
2589
|
+
#
|
|
2590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetAccessTokenOutput AWS API Documentation
|
|
2591
|
+
#
|
|
2592
|
+
class GetAccessTokenOutput < Struct.new(
|
|
2593
|
+
:id,
|
|
2594
|
+
:arn,
|
|
2595
|
+
:client_token,
|
|
2596
|
+
:created_at,
|
|
2597
|
+
:dns_view_id,
|
|
2598
|
+
:expires_at,
|
|
2599
|
+
:global_resolver_id,
|
|
2600
|
+
:name,
|
|
2601
|
+
:status,
|
|
2602
|
+
:updated_at,
|
|
2603
|
+
:value)
|
|
2604
|
+
SENSITIVE = [:value]
|
|
2605
|
+
include Aws::Structure
|
|
2606
|
+
end
|
|
2607
|
+
|
|
2608
|
+
# @!attribute [rw] dns_view_id
|
|
2609
|
+
# The ID of the DNS view to retrieve information about.
|
|
2610
|
+
# @return [String]
|
|
2611
|
+
#
|
|
2612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetDNSViewInput AWS API Documentation
|
|
2613
|
+
#
|
|
2614
|
+
class GetDNSViewInput < Struct.new(
|
|
2615
|
+
:dns_view_id)
|
|
2616
|
+
SENSITIVE = []
|
|
2617
|
+
include Aws::Structure
|
|
2618
|
+
end
|
|
2619
|
+
|
|
2620
|
+
# @!attribute [rw] id
|
|
2621
|
+
# ID of the DNS view.
|
|
2622
|
+
# @return [String]
|
|
2623
|
+
#
|
|
2624
|
+
# @!attribute [rw] arn
|
|
2625
|
+
# Amazon Resource Name (ARN) of the DNS view.
|
|
2626
|
+
# @return [String]
|
|
2627
|
+
#
|
|
2628
|
+
# @!attribute [rw] client_token
|
|
2629
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
2630
|
+
# means that making the same request multiple times with the same
|
|
2631
|
+
# `clientToken` has the same result every time.
|
|
2632
|
+
# @return [String]
|
|
2633
|
+
#
|
|
2634
|
+
# @!attribute [rw] dnssec_validation
|
|
2635
|
+
# Specifies whether DNSSEC is enabled or disabled for the DNS view.
|
|
2636
|
+
# @return [String]
|
|
2637
|
+
#
|
|
2638
|
+
# @!attribute [rw] edns_client_subnet
|
|
2639
|
+
# Specifies whether edns0 client subnet is enabled.
|
|
2640
|
+
# @return [String]
|
|
2641
|
+
#
|
|
2642
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
2643
|
+
# Specifies the DNS Firewall failure mode configuration. When enabled,
|
|
2644
|
+
# the DNS Firewall allows DNS queries to proceed if it's unable to
|
|
2645
|
+
# properly evaluate them. When disabled, the DNS Firewall blocks DNS
|
|
2646
|
+
# queries it's unable to evaluate.
|
|
2647
|
+
# @return [String]
|
|
2648
|
+
#
|
|
2649
|
+
# @!attribute [rw] name
|
|
2650
|
+
# Name of the DNS view.
|
|
2651
|
+
# @return [String]
|
|
2652
|
+
#
|
|
2653
|
+
# @!attribute [rw] description
|
|
2654
|
+
# Description of the DNS view.
|
|
2655
|
+
# @return [String]
|
|
2656
|
+
#
|
|
2657
|
+
# @!attribute [rw] global_resolver_id
|
|
2658
|
+
# ID of the Global Resolver the DNS view is associated to.
|
|
2659
|
+
# @return [String]
|
|
2660
|
+
#
|
|
2661
|
+
# @!attribute [rw] created_at
|
|
2662
|
+
# The time and date the DNS view was creates on.
|
|
2663
|
+
# @return [Time]
|
|
2664
|
+
#
|
|
2665
|
+
# @!attribute [rw] updated_at
|
|
2666
|
+
# The time and date the DNS view was updated on.
|
|
2667
|
+
# @return [Time]
|
|
2668
|
+
#
|
|
2669
|
+
# @!attribute [rw] status
|
|
2670
|
+
# Operational status of the DNS view.
|
|
2671
|
+
# @return [String]
|
|
2672
|
+
#
|
|
2673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetDNSViewOutput AWS API Documentation
|
|
2674
|
+
#
|
|
2675
|
+
class GetDNSViewOutput < Struct.new(
|
|
2676
|
+
:id,
|
|
2677
|
+
:arn,
|
|
2678
|
+
:client_token,
|
|
2679
|
+
:dnssec_validation,
|
|
2680
|
+
:edns_client_subnet,
|
|
2681
|
+
:firewall_rules_fail_open,
|
|
2682
|
+
:name,
|
|
2683
|
+
:description,
|
|
2684
|
+
:global_resolver_id,
|
|
2685
|
+
:created_at,
|
|
2686
|
+
:updated_at,
|
|
2687
|
+
:status)
|
|
2688
|
+
SENSITIVE = []
|
|
2689
|
+
include Aws::Structure
|
|
2690
|
+
end
|
|
2691
|
+
|
|
2692
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
2693
|
+
# ID of the domain list.
|
|
2694
|
+
# @return [String]
|
|
2695
|
+
#
|
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetFirewallDomainListInput AWS API Documentation
|
|
2697
|
+
#
|
|
2698
|
+
class GetFirewallDomainListInput < Struct.new(
|
|
2699
|
+
:firewall_domain_list_id)
|
|
2700
|
+
SENSITIVE = []
|
|
2701
|
+
include Aws::Structure
|
|
2702
|
+
end
|
|
2703
|
+
|
|
2704
|
+
# @!attribute [rw] arn
|
|
2705
|
+
# Amazon Resource Name (ARN) of the domain list.
|
|
2706
|
+
# @return [String]
|
|
2707
|
+
#
|
|
2708
|
+
# @!attribute [rw] global_resolver_id
|
|
2709
|
+
# ID of the Global Resolver that the domain list is associated to.
|
|
2710
|
+
# @return [String]
|
|
2711
|
+
#
|
|
2712
|
+
# @!attribute [rw] client_token
|
|
2713
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
2714
|
+
# means that making the same request multiple times with the same
|
|
2715
|
+
# `clientToken` has the same result every time.
|
|
2716
|
+
# @return [String]
|
|
2717
|
+
#
|
|
2718
|
+
# @!attribute [rw] created_at
|
|
2719
|
+
# The time and date the domain list was created.
|
|
2720
|
+
# @return [Time]
|
|
2721
|
+
#
|
|
2722
|
+
# @!attribute [rw] description
|
|
2723
|
+
# The description of the domain list.
|
|
2724
|
+
# @return [String]
|
|
2725
|
+
#
|
|
2726
|
+
# @!attribute [rw] domain_count
|
|
2727
|
+
# Number of domains in the domain list.
|
|
2728
|
+
# @return [Integer]
|
|
2729
|
+
#
|
|
2730
|
+
# @!attribute [rw] id
|
|
2731
|
+
# ID of the domain list.
|
|
2732
|
+
# @return [String]
|
|
2733
|
+
#
|
|
2734
|
+
# @!attribute [rw] name
|
|
2735
|
+
# Name of the domain list.
|
|
2736
|
+
# @return [String]
|
|
2737
|
+
#
|
|
2738
|
+
# @!attribute [rw] status
|
|
2739
|
+
# Operational status of the domain list.
|
|
2740
|
+
# @return [String]
|
|
2741
|
+
#
|
|
2742
|
+
# @!attribute [rw] status_message
|
|
2743
|
+
# Additional information about the status of the domain list.
|
|
2744
|
+
# @return [String]
|
|
2745
|
+
#
|
|
2746
|
+
# @!attribute [rw] updated_at
|
|
2747
|
+
# The date and time the domain list was updated.
|
|
2748
|
+
# @return [Time]
|
|
2749
|
+
#
|
|
2750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetFirewallDomainListOutput AWS API Documentation
|
|
2751
|
+
#
|
|
2752
|
+
class GetFirewallDomainListOutput < Struct.new(
|
|
2753
|
+
:arn,
|
|
2754
|
+
:global_resolver_id,
|
|
2755
|
+
:client_token,
|
|
2756
|
+
:created_at,
|
|
2757
|
+
:description,
|
|
2758
|
+
:domain_count,
|
|
2759
|
+
:id,
|
|
2760
|
+
:name,
|
|
2761
|
+
:status,
|
|
2762
|
+
:status_message,
|
|
2763
|
+
:updated_at)
|
|
2764
|
+
SENSITIVE = []
|
|
2765
|
+
include Aws::Structure
|
|
2766
|
+
end
|
|
2767
|
+
|
|
2768
|
+
# @!attribute [rw] firewall_rule_id
|
|
2769
|
+
# ID of the DNS Firewall rule.
|
|
2770
|
+
# @return [String]
|
|
2771
|
+
#
|
|
2772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetFirewallRuleInput AWS API Documentation
|
|
2773
|
+
#
|
|
2774
|
+
class GetFirewallRuleInput < Struct.new(
|
|
2775
|
+
:firewall_rule_id)
|
|
2776
|
+
SENSITIVE = []
|
|
2777
|
+
include Aws::Structure
|
|
2778
|
+
end
|
|
2779
|
+
|
|
2780
|
+
# @!attribute [rw] action
|
|
2781
|
+
# The action that DNS Firewall should take on a DNS query when it
|
|
2782
|
+
# matches one of the domains in the rule's domain list, or a threat
|
|
2783
|
+
# in a DNS Firewall Advanced rule.
|
|
2784
|
+
# @return [String]
|
|
2785
|
+
#
|
|
2786
|
+
# @!attribute [rw] block_override_dns_type
|
|
2787
|
+
# The DNS record's type. This determines the format of the record
|
|
2788
|
+
# value that you provided in `BlockOverrideDomain`. Used for the rule
|
|
2789
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
2790
|
+
# @return [String]
|
|
2791
|
+
#
|
|
2792
|
+
# @!attribute [rw] block_override_domain
|
|
2793
|
+
# The custom DNS record to send back in response to the query. Used
|
|
2794
|
+
# for the rule action `BLOCK` with a `BlockResponse` setting of
|
|
2795
|
+
# `OVERRIDE`.
|
|
2796
|
+
# @return [String]
|
|
2797
|
+
#
|
|
2798
|
+
# @!attribute [rw] block_override_ttl
|
|
2799
|
+
# The recommended amount of time, in seconds, for the DNS resolver or
|
|
2800
|
+
# web browser to cache the provided override record. Used for the rule
|
|
2801
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
2802
|
+
# @return [Integer]
|
|
2803
|
+
#
|
|
2804
|
+
# @!attribute [rw] block_response
|
|
2805
|
+
# The way that you want DNS Firewall to block the request. Used for
|
|
2806
|
+
# the rule action setting `BLOCK`.
|
|
2807
|
+
# @return [String]
|
|
2808
|
+
#
|
|
2809
|
+
# @!attribute [rw] confidence_threshold
|
|
2810
|
+
# The confidence threshold for DNS Firewall Advanced. You must provide
|
|
2811
|
+
# this value when you create a DNS Firewall Advanced rule.
|
|
2812
|
+
# @return [String]
|
|
2813
|
+
#
|
|
2814
|
+
# @!attribute [rw] created_at
|
|
2815
|
+
# The time and date the DNS Firewall rule was created.
|
|
2816
|
+
# @return [Time]
|
|
2817
|
+
#
|
|
2818
|
+
# @!attribute [rw] description
|
|
2819
|
+
# The description of the DNS Firewall rule.
|
|
2820
|
+
# @return [String]
|
|
2821
|
+
#
|
|
2822
|
+
# @!attribute [rw] dns_advanced_protection
|
|
2823
|
+
# The type of the DNS Firewall Advanced rule. Valid values are DGA and
|
|
2824
|
+
# DNS\_TUNNELING.
|
|
2825
|
+
# @return [String]
|
|
2826
|
+
#
|
|
2827
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
2828
|
+
# The ID of a DNS Firewall domain list.
|
|
2829
|
+
# @return [String]
|
|
2830
|
+
#
|
|
2831
|
+
# @!attribute [rw] id
|
|
2832
|
+
# ID of the DNS Firewall rule.
|
|
2833
|
+
# @return [String]
|
|
2834
|
+
#
|
|
2835
|
+
# @!attribute [rw] name
|
|
2836
|
+
# The name of the DNS Firewall rule.
|
|
2837
|
+
# @return [String]
|
|
2838
|
+
#
|
|
2839
|
+
# @!attribute [rw] priority
|
|
2840
|
+
# The setting that determines the processing order of the rule in the
|
|
2841
|
+
# rule group. DNS Firewall processes the rules in a rule group by
|
|
2842
|
+
# order of priority, starting from the lowest setting.
|
|
2843
|
+
# @return [Integer]
|
|
2844
|
+
#
|
|
2845
|
+
# @!attribute [rw] dns_view_id
|
|
2846
|
+
# The DNS view ID the DNS Firewall is associated with.
|
|
2847
|
+
# @return [String]
|
|
2848
|
+
#
|
|
2849
|
+
# @!attribute [rw] query_type
|
|
2850
|
+
# The DNS query type you want the rule to evaluate.
|
|
2851
|
+
# @return [String]
|
|
2852
|
+
#
|
|
2853
|
+
# @!attribute [rw] status
|
|
2854
|
+
# The operational status of the DNS Firewall rule.
|
|
2855
|
+
# @return [String]
|
|
2856
|
+
#
|
|
2857
|
+
# @!attribute [rw] updated_at
|
|
2858
|
+
# The date and time the DNS Firewall rule was updated.
|
|
2859
|
+
# @return [Time]
|
|
2860
|
+
#
|
|
2861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetFirewallRuleOutput AWS API Documentation
|
|
2862
|
+
#
|
|
2863
|
+
class GetFirewallRuleOutput < Struct.new(
|
|
2864
|
+
:action,
|
|
2865
|
+
:block_override_dns_type,
|
|
2866
|
+
:block_override_domain,
|
|
2867
|
+
:block_override_ttl,
|
|
2868
|
+
:block_response,
|
|
2869
|
+
:confidence_threshold,
|
|
2870
|
+
:created_at,
|
|
2871
|
+
:description,
|
|
2872
|
+
:dns_advanced_protection,
|
|
2873
|
+
:firewall_domain_list_id,
|
|
2874
|
+
:id,
|
|
2875
|
+
:name,
|
|
2876
|
+
:priority,
|
|
2877
|
+
:dns_view_id,
|
|
2878
|
+
:query_type,
|
|
2879
|
+
:status,
|
|
2880
|
+
:updated_at)
|
|
2881
|
+
SENSITIVE = []
|
|
2882
|
+
include Aws::Structure
|
|
2883
|
+
end
|
|
2884
|
+
|
|
2885
|
+
# @!attribute [rw] global_resolver_id
|
|
2886
|
+
# The ID of the Route 53 Global Resolver to retrieve information
|
|
2887
|
+
# about.
|
|
2888
|
+
# @return [String]
|
|
2889
|
+
#
|
|
2890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetGlobalResolverInput AWS API Documentation
|
|
2891
|
+
#
|
|
2892
|
+
class GetGlobalResolverInput < Struct.new(
|
|
2893
|
+
:global_resolver_id)
|
|
2894
|
+
SENSITIVE = []
|
|
2895
|
+
include Aws::Structure
|
|
2896
|
+
end
|
|
2897
|
+
|
|
2898
|
+
# @!attribute [rw] id
|
|
2899
|
+
# The ID of the Global Resolver.
|
|
2900
|
+
# @return [String]
|
|
2901
|
+
#
|
|
2902
|
+
# @!attribute [rw] arn
|
|
2903
|
+
# The Amazon Resource Name (ARN) of the Global Resolver.
|
|
2904
|
+
# @return [String]
|
|
2905
|
+
#
|
|
2906
|
+
# @!attribute [rw] client_token
|
|
2907
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
2908
|
+
# means that making the same request multiple times with the same
|
|
2909
|
+
# `clientToken` has the same result every time.
|
|
2910
|
+
# @return [String]
|
|
2911
|
+
#
|
|
2912
|
+
# @!attribute [rw] dns_name
|
|
2913
|
+
# The hostname used by the customers' DNS clients for certification
|
|
2914
|
+
# validation.
|
|
2915
|
+
# @return [String]
|
|
2916
|
+
#
|
|
2917
|
+
# @!attribute [rw] observability_region
|
|
2918
|
+
# The AWS Regions in which the users' Global Resolver query
|
|
2919
|
+
# resolution logs will be propagated.
|
|
2920
|
+
# @return [String]
|
|
2921
|
+
#
|
|
2922
|
+
# @!attribute [rw] name
|
|
2923
|
+
# The name of the Global Resolver.
|
|
2924
|
+
# @return [String]
|
|
2925
|
+
#
|
|
2926
|
+
# @!attribute [rw] description
|
|
2927
|
+
# The description of the Global Resolver.
|
|
2928
|
+
# @return [String]
|
|
2929
|
+
#
|
|
2930
|
+
# @!attribute [rw] regions
|
|
2931
|
+
# The AWS Regions in which the Global Resolver operate.
|
|
2932
|
+
# @return [Array<String>]
|
|
2933
|
+
#
|
|
2934
|
+
# @!attribute [rw] created_at
|
|
2935
|
+
# The date and time the Global Resolver was created.
|
|
2936
|
+
# @return [Time]
|
|
2937
|
+
#
|
|
2938
|
+
# @!attribute [rw] updated_at
|
|
2939
|
+
# The date and time the Global Resolver was updated.
|
|
2940
|
+
# @return [Time]
|
|
2941
|
+
#
|
|
2942
|
+
# @!attribute [rw] status
|
|
2943
|
+
# The operational status of the Global Resolver.
|
|
2944
|
+
# @return [String]
|
|
2945
|
+
#
|
|
2946
|
+
# @!attribute [rw] ipv4_addresses
|
|
2947
|
+
# List of anycast IPv4 addresses associated with the Global Resolver
|
|
2948
|
+
# instance.
|
|
2949
|
+
# @return [Array<String>]
|
|
2950
|
+
#
|
|
2951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetGlobalResolverOutput AWS API Documentation
|
|
2952
|
+
#
|
|
2953
|
+
class GetGlobalResolverOutput < Struct.new(
|
|
2954
|
+
:id,
|
|
2955
|
+
:arn,
|
|
2956
|
+
:client_token,
|
|
2957
|
+
:dns_name,
|
|
2958
|
+
:observability_region,
|
|
2959
|
+
:name,
|
|
2960
|
+
:description,
|
|
2961
|
+
:regions,
|
|
2962
|
+
:created_at,
|
|
2963
|
+
:updated_at,
|
|
2964
|
+
:status,
|
|
2965
|
+
:ipv4_addresses)
|
|
2966
|
+
SENSITIVE = []
|
|
2967
|
+
include Aws::Structure
|
|
2968
|
+
end
|
|
2969
|
+
|
|
2970
|
+
# @!attribute [rw] hosted_zone_association_id
|
|
2971
|
+
# ID of the private hosted zone association.
|
|
2972
|
+
# @return [String]
|
|
2973
|
+
#
|
|
2974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetHostedZoneAssociationInput AWS API Documentation
|
|
2975
|
+
#
|
|
2976
|
+
class GetHostedZoneAssociationInput < Struct.new(
|
|
2977
|
+
:hosted_zone_association_id)
|
|
2978
|
+
SENSITIVE = []
|
|
2979
|
+
include Aws::Structure
|
|
2980
|
+
end
|
|
2981
|
+
|
|
2982
|
+
# @!attribute [rw] id
|
|
2983
|
+
# ID of the private hosted zone association.
|
|
2984
|
+
# @return [String]
|
|
2985
|
+
#
|
|
2986
|
+
# @!attribute [rw] resource_arn
|
|
2987
|
+
# Amazon Resource Name (ARN) of the DNS view the private hosted zone
|
|
2988
|
+
# is associated to.
|
|
2989
|
+
# @return [String]
|
|
2990
|
+
#
|
|
2991
|
+
# @!attribute [rw] hosted_zone_id
|
|
2992
|
+
# ID of the hosted zone associated to the DNS view.
|
|
2993
|
+
# @return [String]
|
|
2994
|
+
#
|
|
2995
|
+
# @!attribute [rw] hosted_zone_name
|
|
2996
|
+
# Name of the domain associated with the private hosted zone.
|
|
2997
|
+
# @return [String]
|
|
2998
|
+
#
|
|
2999
|
+
# @!attribute [rw] name
|
|
3000
|
+
# Name of the private hosted zone association.
|
|
3001
|
+
# @return [String]
|
|
3002
|
+
#
|
|
3003
|
+
# @!attribute [rw] created_at
|
|
3004
|
+
# The time and date the private hosted zone association was created.
|
|
3005
|
+
# @return [Time]
|
|
3006
|
+
#
|
|
3007
|
+
# @!attribute [rw] updated_at
|
|
3008
|
+
# The time and date the private hosted zone association was updated.
|
|
3009
|
+
# @return [Time]
|
|
3010
|
+
#
|
|
3011
|
+
# @!attribute [rw] status
|
|
3012
|
+
# The operational status of the private hosted zone association.
|
|
3013
|
+
# @return [String]
|
|
3014
|
+
#
|
|
3015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetHostedZoneAssociationOutput AWS API Documentation
|
|
3016
|
+
#
|
|
3017
|
+
class GetHostedZoneAssociationOutput < Struct.new(
|
|
3018
|
+
:id,
|
|
3019
|
+
:resource_arn,
|
|
3020
|
+
:hosted_zone_id,
|
|
3021
|
+
:hosted_zone_name,
|
|
3022
|
+
:name,
|
|
3023
|
+
:created_at,
|
|
3024
|
+
:updated_at,
|
|
3025
|
+
:status)
|
|
3026
|
+
SENSITIVE = []
|
|
3027
|
+
include Aws::Structure
|
|
3028
|
+
end
|
|
3029
|
+
|
|
3030
|
+
# @!attribute [rw] managed_firewall_domain_list_id
|
|
3031
|
+
# ID of the Managed Domain List.
|
|
3032
|
+
# @return [String]
|
|
3033
|
+
#
|
|
3034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetManagedFirewallDomainListInput AWS API Documentation
|
|
3035
|
+
#
|
|
3036
|
+
class GetManagedFirewallDomainListInput < Struct.new(
|
|
3037
|
+
:managed_firewall_domain_list_id)
|
|
3038
|
+
SENSITIVE = []
|
|
3039
|
+
include Aws::Structure
|
|
3040
|
+
end
|
|
3041
|
+
|
|
3042
|
+
# @!attribute [rw] description
|
|
3043
|
+
# Description of the Managed Domain List.
|
|
3044
|
+
# @return [String]
|
|
3045
|
+
#
|
|
3046
|
+
# @!attribute [rw] id
|
|
3047
|
+
# ID of the Managed Domain List.
|
|
3048
|
+
# @return [String]
|
|
3049
|
+
#
|
|
3050
|
+
# @!attribute [rw] name
|
|
3051
|
+
# Name of the Managed Domain List.
|
|
3052
|
+
# @return [String]
|
|
3053
|
+
#
|
|
3054
|
+
# @!attribute [rw] managed_list_type
|
|
3055
|
+
# Type of the managed category. This is either `THREAT` or `CONTENT`.
|
|
3056
|
+
# @return [String]
|
|
3057
|
+
#
|
|
3058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GetManagedFirewallDomainListOutput AWS API Documentation
|
|
3059
|
+
#
|
|
3060
|
+
class GetManagedFirewallDomainListOutput < Struct.new(
|
|
3061
|
+
:description,
|
|
3062
|
+
:id,
|
|
3063
|
+
:name,
|
|
3064
|
+
:managed_list_type)
|
|
3065
|
+
SENSITIVE = []
|
|
3066
|
+
include Aws::Structure
|
|
3067
|
+
end
|
|
3068
|
+
|
|
3069
|
+
# Summary information about a global resolver.
|
|
3070
|
+
#
|
|
3071
|
+
# @!attribute [rw] id
|
|
3072
|
+
# The unique identifier of the global resolver.
|
|
3073
|
+
# @return [String]
|
|
3074
|
+
#
|
|
3075
|
+
# @!attribute [rw] arn
|
|
3076
|
+
# The Amazon Resource Name (ARN) of the global resolver.
|
|
3077
|
+
# @return [String]
|
|
3078
|
+
#
|
|
3079
|
+
# @!attribute [rw] client_token
|
|
3080
|
+
# The unique string that identifies the request and ensures
|
|
3081
|
+
# idempotency.
|
|
3082
|
+
# @return [String]
|
|
3083
|
+
#
|
|
3084
|
+
# @!attribute [rw] dns_name
|
|
3085
|
+
# The DNS name of the global resolver.
|
|
3086
|
+
# @return [String]
|
|
3087
|
+
#
|
|
3088
|
+
# @!attribute [rw] observability_region
|
|
3089
|
+
# The AWS Region where observability data is collected for the global
|
|
3090
|
+
# resolver.
|
|
3091
|
+
# @return [String]
|
|
3092
|
+
#
|
|
3093
|
+
# @!attribute [rw] name
|
|
3094
|
+
# The name of the global resolver.
|
|
3095
|
+
# @return [String]
|
|
3096
|
+
#
|
|
3097
|
+
# @!attribute [rw] description
|
|
3098
|
+
# A description of the global resolver.
|
|
3099
|
+
# @return [String]
|
|
3100
|
+
#
|
|
3101
|
+
# @!attribute [rw] regions
|
|
3102
|
+
# The AWS Regions where the global resolver is deployed.
|
|
3103
|
+
# @return [Array<String>]
|
|
3104
|
+
#
|
|
3105
|
+
# @!attribute [rw] created_at
|
|
3106
|
+
# The date and time when the global resolver was created.
|
|
3107
|
+
# @return [Time]
|
|
3108
|
+
#
|
|
3109
|
+
# @!attribute [rw] updated_at
|
|
3110
|
+
# The date and time when the global resolver was last updated.
|
|
3111
|
+
# @return [Time]
|
|
3112
|
+
#
|
|
3113
|
+
# @!attribute [rw] status
|
|
3114
|
+
# The current status of the global resolver.
|
|
3115
|
+
# @return [String]
|
|
3116
|
+
#
|
|
3117
|
+
# @!attribute [rw] ipv4_addresses
|
|
3118
|
+
# The IPv4 addresses assigned to the global resolver.
|
|
3119
|
+
# @return [Array<String>]
|
|
3120
|
+
#
|
|
3121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/GlobalResolversItem AWS API Documentation
|
|
3122
|
+
#
|
|
3123
|
+
class GlobalResolversItem < Struct.new(
|
|
3124
|
+
:id,
|
|
3125
|
+
:arn,
|
|
3126
|
+
:client_token,
|
|
3127
|
+
:dns_name,
|
|
3128
|
+
:observability_region,
|
|
3129
|
+
:name,
|
|
3130
|
+
:description,
|
|
3131
|
+
:regions,
|
|
3132
|
+
:created_at,
|
|
3133
|
+
:updated_at,
|
|
3134
|
+
:status,
|
|
3135
|
+
:ipv4_addresses)
|
|
3136
|
+
SENSITIVE = []
|
|
3137
|
+
include Aws::Structure
|
|
3138
|
+
end
|
|
3139
|
+
|
|
3140
|
+
# Summary information about a hosted zone association.
|
|
3141
|
+
#
|
|
3142
|
+
# @!attribute [rw] id
|
|
3143
|
+
# The unique identifier of the hosted zone association.
|
|
3144
|
+
# @return [String]
|
|
3145
|
+
#
|
|
3146
|
+
# @!attribute [rw] resource_arn
|
|
3147
|
+
# The Amazon Resource Name (ARN) of the resource associated with the
|
|
3148
|
+
# hosted zone.
|
|
3149
|
+
# @return [String]
|
|
3150
|
+
#
|
|
3151
|
+
# @!attribute [rw] hosted_zone_id
|
|
3152
|
+
# The ID of the hosted zone.
|
|
3153
|
+
# @return [String]
|
|
3154
|
+
#
|
|
3155
|
+
# @!attribute [rw] hosted_zone_name
|
|
3156
|
+
# The name of the hosted zone.
|
|
3157
|
+
# @return [String]
|
|
3158
|
+
#
|
|
3159
|
+
# @!attribute [rw] name
|
|
3160
|
+
# The name of the hosted zone association.
|
|
3161
|
+
# @return [String]
|
|
3162
|
+
#
|
|
3163
|
+
# @!attribute [rw] created_at
|
|
3164
|
+
# The date and time when the hosted zone association was created.
|
|
3165
|
+
# @return [Time]
|
|
3166
|
+
#
|
|
3167
|
+
# @!attribute [rw] updated_at
|
|
3168
|
+
# The date and time when the hosted zone association was last updated.
|
|
3169
|
+
# @return [Time]
|
|
3170
|
+
#
|
|
3171
|
+
# @!attribute [rw] status
|
|
3172
|
+
# The current status of the hosted zone association.
|
|
3173
|
+
# @return [String]
|
|
3174
|
+
#
|
|
3175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/HostedZoneAssociationSummary AWS API Documentation
|
|
3176
|
+
#
|
|
3177
|
+
class HostedZoneAssociationSummary < Struct.new(
|
|
3178
|
+
:id,
|
|
3179
|
+
:resource_arn,
|
|
3180
|
+
:hosted_zone_id,
|
|
3181
|
+
:hosted_zone_name,
|
|
3182
|
+
:name,
|
|
3183
|
+
:created_at,
|
|
3184
|
+
:updated_at,
|
|
3185
|
+
:status)
|
|
3186
|
+
SENSITIVE = []
|
|
3187
|
+
include Aws::Structure
|
|
3188
|
+
end
|
|
3189
|
+
|
|
3190
|
+
# @!attribute [rw] domain_file_url
|
|
3191
|
+
# The fully qualified URL of the file in Amazon S3 that contains the
|
|
3192
|
+
# list of domains to import. The file should contain one domain per
|
|
3193
|
+
# line.
|
|
3194
|
+
# @return [String]
|
|
3195
|
+
#
|
|
3196
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
3197
|
+
# ID of the DNS Firewall domain list that you want to import the
|
|
3198
|
+
# domain list to.
|
|
3199
|
+
# @return [String]
|
|
3200
|
+
#
|
|
3201
|
+
# @!attribute [rw] operation
|
|
3202
|
+
# This value is `REPLACE`, and it updates the domain list to match the
|
|
3203
|
+
# list of domains in the imported file.
|
|
3204
|
+
# @return [String]
|
|
3205
|
+
#
|
|
3206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ImportFirewallDomainsInput AWS API Documentation
|
|
3207
|
+
#
|
|
3208
|
+
class ImportFirewallDomainsInput < Struct.new(
|
|
3209
|
+
:domain_file_url,
|
|
3210
|
+
:firewall_domain_list_id,
|
|
3211
|
+
:operation)
|
|
3212
|
+
SENSITIVE = []
|
|
3213
|
+
include Aws::Structure
|
|
3214
|
+
end
|
|
3215
|
+
|
|
3216
|
+
# @!attribute [rw] id
|
|
3217
|
+
# ID of the DNS Firewall domain list that you imported the domain list
|
|
3218
|
+
# to.
|
|
3219
|
+
# @return [String]
|
|
3220
|
+
#
|
|
3221
|
+
# @!attribute [rw] name
|
|
3222
|
+
# Name of the DNS Firewall domain list.
|
|
3223
|
+
# @return [String]
|
|
3224
|
+
#
|
|
3225
|
+
# @!attribute [rw] status
|
|
3226
|
+
# Operational status of the DNS Firewall domain list.
|
|
3227
|
+
# @return [String]
|
|
3228
|
+
#
|
|
3229
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ImportFirewallDomainsOutput AWS API Documentation
|
|
3230
|
+
#
|
|
3231
|
+
class ImportFirewallDomainsOutput < Struct.new(
|
|
3232
|
+
:id,
|
|
3233
|
+
:name,
|
|
3234
|
+
:status)
|
|
3235
|
+
SENSITIVE = []
|
|
3236
|
+
include Aws::Structure
|
|
3237
|
+
end
|
|
3238
|
+
|
|
3239
|
+
# An internal server error occurred. Try again later.
|
|
3240
|
+
#
|
|
3241
|
+
# @!attribute [rw] message
|
|
3242
|
+
# @return [String]
|
|
3243
|
+
#
|
|
3244
|
+
# @!attribute [rw] retry_after_seconds
|
|
3245
|
+
# Number of seconds in which the caller can retry the request.
|
|
3246
|
+
# @return [Integer]
|
|
3247
|
+
#
|
|
3248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/InternalServerException AWS API Documentation
|
|
3249
|
+
#
|
|
3250
|
+
class InternalServerException < Struct.new(
|
|
3251
|
+
:message,
|
|
3252
|
+
:retry_after_seconds)
|
|
3253
|
+
SENSITIVE = []
|
|
3254
|
+
include Aws::Structure
|
|
3255
|
+
end
|
|
3256
|
+
|
|
3257
|
+
# @!attribute [rw] max_results
|
|
3258
|
+
# The maximum number of results to retrieve in a single call.
|
|
3259
|
+
# @return [Integer]
|
|
3260
|
+
#
|
|
3261
|
+
# @!attribute [rw] next_token
|
|
3262
|
+
# A pagination token used for large sets of results that can't be
|
|
3263
|
+
# returned in a single response.
|
|
3264
|
+
# @return [String]
|
|
3265
|
+
#
|
|
3266
|
+
# @!attribute [rw] filters
|
|
3267
|
+
# Values to filter the results.
|
|
3268
|
+
# @return [Hash<String,Array<String>>]
|
|
3269
|
+
#
|
|
3270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListAccessSourcesInput AWS API Documentation
|
|
3271
|
+
#
|
|
3272
|
+
class ListAccessSourcesInput < Struct.new(
|
|
3273
|
+
:max_results,
|
|
3274
|
+
:next_token,
|
|
3275
|
+
:filters)
|
|
3276
|
+
SENSITIVE = []
|
|
3277
|
+
include Aws::Structure
|
|
3278
|
+
end
|
|
3279
|
+
|
|
3280
|
+
# @!attribute [rw] next_token
|
|
3281
|
+
# A pagination token used for large sets of results that can't be
|
|
3282
|
+
# returned in a single response. Provide this token in the next call
|
|
3283
|
+
# to get the results not returned in this call.
|
|
3284
|
+
# @return [String]
|
|
3285
|
+
#
|
|
3286
|
+
# @!attribute [rw] access_sources
|
|
3287
|
+
# An array containing information about the access sources, such as
|
|
3288
|
+
# the ID, CIDR etc.
|
|
3289
|
+
# @return [Array<Types::AccessSourcesItem>]
|
|
3290
|
+
#
|
|
3291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListAccessSourcesOutput AWS API Documentation
|
|
3292
|
+
#
|
|
3293
|
+
class ListAccessSourcesOutput < Struct.new(
|
|
3294
|
+
:next_token,
|
|
3295
|
+
:access_sources)
|
|
3296
|
+
SENSITIVE = []
|
|
3297
|
+
include Aws::Structure
|
|
3298
|
+
end
|
|
3299
|
+
|
|
3300
|
+
# @!attribute [rw] max_results
|
|
3301
|
+
# The maximum number of results to retrieve in a single call.
|
|
3302
|
+
# @return [Integer]
|
|
3303
|
+
#
|
|
3304
|
+
# @!attribute [rw] next_token
|
|
3305
|
+
# A pagination token used for large sets of results that can't be
|
|
3306
|
+
# returned in a single response.
|
|
3307
|
+
# @return [String]
|
|
3308
|
+
#
|
|
3309
|
+
# @!attribute [rw] dns_view_id
|
|
3310
|
+
# The ID of the DNS view to list the tokens for.
|
|
3311
|
+
# @return [String]
|
|
3312
|
+
#
|
|
3313
|
+
# @!attribute [rw] filters
|
|
3314
|
+
# Filtering parameters.
|
|
3315
|
+
# @return [Hash<String,Array<String>>]
|
|
3316
|
+
#
|
|
3317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListAccessTokensInput AWS API Documentation
|
|
3318
|
+
#
|
|
3319
|
+
class ListAccessTokensInput < Struct.new(
|
|
3320
|
+
:max_results,
|
|
3321
|
+
:next_token,
|
|
3322
|
+
:dns_view_id,
|
|
3323
|
+
:filters)
|
|
3324
|
+
SENSITIVE = []
|
|
3325
|
+
include Aws::Structure
|
|
3326
|
+
end
|
|
3327
|
+
|
|
3328
|
+
# @!attribute [rw] next_token
|
|
3329
|
+
# A pagination token used for large sets of results that can't be
|
|
3330
|
+
# returned in a single response. Provide this token in the next call
|
|
3331
|
+
# to get the results not returned in this call.
|
|
3332
|
+
# @return [String]
|
|
3333
|
+
#
|
|
3334
|
+
# @!attribute [rw] access_tokens
|
|
3335
|
+
# List of the tokens.
|
|
3336
|
+
# @return [Array<Types::AccessTokenItem>]
|
|
3337
|
+
#
|
|
3338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListAccessTokensOutput AWS API Documentation
|
|
3339
|
+
#
|
|
3340
|
+
class ListAccessTokensOutput < Struct.new(
|
|
3341
|
+
:next_token,
|
|
3342
|
+
:access_tokens)
|
|
3343
|
+
SENSITIVE = []
|
|
3344
|
+
include Aws::Structure
|
|
3345
|
+
end
|
|
3346
|
+
|
|
3347
|
+
# @!attribute [rw] max_results
|
|
3348
|
+
# The maximum number of results to retrieve in a single call.
|
|
3349
|
+
# @return [Integer]
|
|
3350
|
+
#
|
|
3351
|
+
# @!attribute [rw] next_token
|
|
3352
|
+
# A pagination token used for large sets of results that can't be
|
|
3353
|
+
# returned in a single response.
|
|
3354
|
+
# @return [String]
|
|
3355
|
+
#
|
|
3356
|
+
# @!attribute [rw] global_resolver_id
|
|
3357
|
+
# The Global Resolver ID.
|
|
3358
|
+
# @return [String]
|
|
3359
|
+
#
|
|
3360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListDNSViewsInput AWS API Documentation
|
|
3361
|
+
#
|
|
3362
|
+
class ListDNSViewsInput < Struct.new(
|
|
3363
|
+
:max_results,
|
|
3364
|
+
:next_token,
|
|
3365
|
+
:global_resolver_id)
|
|
3366
|
+
SENSITIVE = []
|
|
3367
|
+
include Aws::Structure
|
|
3368
|
+
end
|
|
3369
|
+
|
|
3370
|
+
# @!attribute [rw] next_token
|
|
3371
|
+
# A pagination token used for large sets of results that can't be
|
|
3372
|
+
# returned in a single response. Provide this token in the next call
|
|
3373
|
+
# to get the results not returned in this call.
|
|
3374
|
+
# @return [String]
|
|
3375
|
+
#
|
|
3376
|
+
# @!attribute [rw] dns_views
|
|
3377
|
+
# An array of information about the DNS views, such as whether DNSSEC
|
|
3378
|
+
# is enabled, creation time, etc.
|
|
3379
|
+
# @return [Array<Types::DNSViewSummary>]
|
|
3380
|
+
#
|
|
3381
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListDNSViewsOutput AWS API Documentation
|
|
3382
|
+
#
|
|
3383
|
+
class ListDNSViewsOutput < Struct.new(
|
|
3384
|
+
:next_token,
|
|
3385
|
+
:dns_views)
|
|
3386
|
+
SENSITIVE = []
|
|
3387
|
+
include Aws::Structure
|
|
3388
|
+
end
|
|
3389
|
+
|
|
3390
|
+
# @!attribute [rw] max_results
|
|
3391
|
+
# The maximum number of results to retrieve in a single call.
|
|
3392
|
+
# @return [Integer]
|
|
3393
|
+
#
|
|
3394
|
+
# @!attribute [rw] next_token
|
|
3395
|
+
# A pagination token used for large sets of results that can't be
|
|
3396
|
+
# returned in a single response.
|
|
3397
|
+
# @return [String]
|
|
3398
|
+
#
|
|
3399
|
+
# @!attribute [rw] global_resolver_id
|
|
3400
|
+
# The ID of the Global Resolver that contains the DNS view the domain
|
|
3401
|
+
# lists are associated to.
|
|
3402
|
+
# @return [String]
|
|
3403
|
+
#
|
|
3404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListFirewallDomainListsInput AWS API Documentation
|
|
3405
|
+
#
|
|
3406
|
+
class ListFirewallDomainListsInput < Struct.new(
|
|
3407
|
+
:max_results,
|
|
3408
|
+
:next_token,
|
|
3409
|
+
:global_resolver_id)
|
|
3410
|
+
SENSITIVE = []
|
|
3411
|
+
include Aws::Structure
|
|
3412
|
+
end
|
|
3413
|
+
|
|
3414
|
+
# @!attribute [rw] next_token
|
|
3415
|
+
# A pagination token used for large sets of results that can't be
|
|
3416
|
+
# returned in a single response. Provide this token in the next call
|
|
3417
|
+
# to get the results not returned in this call.
|
|
3418
|
+
# @return [String]
|
|
3419
|
+
#
|
|
3420
|
+
# @!attribute [rw] firewall_domain_lists
|
|
3421
|
+
# List of the DNS Firewall domain lists.
|
|
3422
|
+
# @return [Array<Types::FirewallDomainListsItem>]
|
|
3423
|
+
#
|
|
3424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListFirewallDomainListsOutput AWS API Documentation
|
|
3425
|
+
#
|
|
3426
|
+
class ListFirewallDomainListsOutput < Struct.new(
|
|
3427
|
+
:next_token,
|
|
3428
|
+
:firewall_domain_lists)
|
|
3429
|
+
SENSITIVE = []
|
|
3430
|
+
include Aws::Structure
|
|
3431
|
+
end
|
|
3432
|
+
|
|
3433
|
+
# @!attribute [rw] max_results
|
|
3434
|
+
# The maximum number of results to retrieve in a single call.
|
|
3435
|
+
# @return [Integer]
|
|
3436
|
+
#
|
|
3437
|
+
# @!attribute [rw] next_token
|
|
3438
|
+
# A pagination token used for large sets of results that can't be
|
|
3439
|
+
# returned in a single response.
|
|
3440
|
+
# @return [String]
|
|
3441
|
+
#
|
|
3442
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
3443
|
+
# ID of the DNS Firewall domain list.
|
|
3444
|
+
# @return [String]
|
|
3445
|
+
#
|
|
3446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListFirewallDomainsInput AWS API Documentation
|
|
3447
|
+
#
|
|
3448
|
+
class ListFirewallDomainsInput < Struct.new(
|
|
3449
|
+
:max_results,
|
|
3450
|
+
:next_token,
|
|
3451
|
+
:firewall_domain_list_id)
|
|
3452
|
+
SENSITIVE = []
|
|
3453
|
+
include Aws::Structure
|
|
3454
|
+
end
|
|
3455
|
+
|
|
3456
|
+
# @!attribute [rw] next_token
|
|
3457
|
+
# A pagination token used for large sets of results that can't be
|
|
3458
|
+
# returned in a single response. Provide this token in the next call
|
|
3459
|
+
# to get the results not returned in this call.
|
|
3460
|
+
# @return [String]
|
|
3461
|
+
#
|
|
3462
|
+
# @!attribute [rw] domains
|
|
3463
|
+
# List of domains in the specified domain list.
|
|
3464
|
+
# @return [Array<String>]
|
|
3465
|
+
#
|
|
3466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListFirewallDomainsOutput AWS API Documentation
|
|
3467
|
+
#
|
|
3468
|
+
class ListFirewallDomainsOutput < Struct.new(
|
|
3469
|
+
:next_token,
|
|
3470
|
+
:domains)
|
|
3471
|
+
SENSITIVE = []
|
|
3472
|
+
include Aws::Structure
|
|
3473
|
+
end
|
|
3474
|
+
|
|
3475
|
+
# @!attribute [rw] max_results
|
|
3476
|
+
# The maximum number of results to retrieve in a single call.
|
|
3477
|
+
# @return [Integer]
|
|
3478
|
+
#
|
|
3479
|
+
# @!attribute [rw] next_token
|
|
3480
|
+
# A pagination token used for large sets of results that can't be
|
|
3481
|
+
# returned in a single response.
|
|
3482
|
+
# @return [String]
|
|
3483
|
+
#
|
|
3484
|
+
# @!attribute [rw] dns_view_id
|
|
3485
|
+
# ID of the DNS view.
|
|
3486
|
+
# @return [String]
|
|
3487
|
+
#
|
|
3488
|
+
# @!attribute [rw] filters
|
|
3489
|
+
# Values to filter the results.
|
|
3490
|
+
# @return [Hash<String,Array<String>>]
|
|
3491
|
+
#
|
|
3492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListFirewallRulesInput AWS API Documentation
|
|
3493
|
+
#
|
|
3494
|
+
class ListFirewallRulesInput < Struct.new(
|
|
3495
|
+
:max_results,
|
|
3496
|
+
:next_token,
|
|
3497
|
+
:dns_view_id,
|
|
3498
|
+
:filters)
|
|
3499
|
+
SENSITIVE = []
|
|
3500
|
+
include Aws::Structure
|
|
3501
|
+
end
|
|
3502
|
+
|
|
3503
|
+
# @!attribute [rw] next_token
|
|
3504
|
+
# A pagination token used for large sets of results that can't be
|
|
3505
|
+
# returned in a single response. Provide this token in the next call
|
|
3506
|
+
# to get the results not returned in this call.
|
|
3507
|
+
# @return [String]
|
|
3508
|
+
#
|
|
3509
|
+
# @!attribute [rw] firewall_rules
|
|
3510
|
+
# List of the firewall rules and information about them.
|
|
3511
|
+
# @return [Array<Types::FirewallRulesItem>]
|
|
3512
|
+
#
|
|
3513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListFirewallRulesOutput AWS API Documentation
|
|
3514
|
+
#
|
|
3515
|
+
class ListFirewallRulesOutput < Struct.new(
|
|
3516
|
+
:next_token,
|
|
3517
|
+
:firewall_rules)
|
|
3518
|
+
SENSITIVE = []
|
|
3519
|
+
include Aws::Structure
|
|
3520
|
+
end
|
|
3521
|
+
|
|
3522
|
+
# @!attribute [rw] max_results
|
|
3523
|
+
# The maximum number of Route 53 Global Resolver instances to return
|
|
3524
|
+
# in the response. Valid range is 1-100.
|
|
3525
|
+
# @return [Integer]
|
|
3526
|
+
#
|
|
3527
|
+
# @!attribute [rw] next_token
|
|
3528
|
+
# The token for the next page of results. This value is returned in
|
|
3529
|
+
# the response if there are more results to retrieve.
|
|
3530
|
+
# @return [String]
|
|
3531
|
+
#
|
|
3532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListGlobalResolversInput AWS API Documentation
|
|
3533
|
+
#
|
|
3534
|
+
class ListGlobalResolversInput < Struct.new(
|
|
3535
|
+
:max_results,
|
|
3536
|
+
:next_token)
|
|
3537
|
+
SENSITIVE = []
|
|
3538
|
+
include Aws::Structure
|
|
3539
|
+
end
|
|
3540
|
+
|
|
3541
|
+
# @!attribute [rw] next_token
|
|
3542
|
+
# A pagination token used for large sets of results that can't be
|
|
3543
|
+
# returned in a single response. Provide this token in the next call
|
|
3544
|
+
# to get the results not returned in this call.
|
|
3545
|
+
# @return [String]
|
|
3546
|
+
#
|
|
3547
|
+
# @!attribute [rw] global_resolvers
|
|
3548
|
+
# Paginated list of Global Resolvers.
|
|
3549
|
+
# @return [Array<Types::GlobalResolversItem>]
|
|
3550
|
+
#
|
|
3551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListGlobalResolversOutput AWS API Documentation
|
|
3552
|
+
#
|
|
3553
|
+
class ListGlobalResolversOutput < Struct.new(
|
|
3554
|
+
:next_token,
|
|
3555
|
+
:global_resolvers)
|
|
3556
|
+
SENSITIVE = []
|
|
3557
|
+
include Aws::Structure
|
|
3558
|
+
end
|
|
3559
|
+
|
|
3560
|
+
# @!attribute [rw] max_results
|
|
3561
|
+
# The maximum number of results to retrieve in a single call.
|
|
3562
|
+
# @return [Integer]
|
|
3563
|
+
#
|
|
3564
|
+
# @!attribute [rw] next_token
|
|
3565
|
+
# A pagination token used for large sets of results that can't be
|
|
3566
|
+
# returned in a single response.
|
|
3567
|
+
# @return [String]
|
|
3568
|
+
#
|
|
3569
|
+
# @!attribute [rw] resource_arn
|
|
3570
|
+
# Amazon Resource Name (ARN) of the DNS view.
|
|
3571
|
+
# @return [String]
|
|
3572
|
+
#
|
|
3573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListHostedZoneAssociationsInput AWS API Documentation
|
|
3574
|
+
#
|
|
3575
|
+
class ListHostedZoneAssociationsInput < Struct.new(
|
|
3576
|
+
:max_results,
|
|
3577
|
+
:next_token,
|
|
3578
|
+
:resource_arn)
|
|
3579
|
+
SENSITIVE = []
|
|
3580
|
+
include Aws::Structure
|
|
3581
|
+
end
|
|
3582
|
+
|
|
3583
|
+
# @!attribute [rw] next_token
|
|
3584
|
+
# A pagination token used for large sets of results that can't be
|
|
3585
|
+
# returned in a single response. Provide this token in the next call
|
|
3586
|
+
# to get the results not returned in this call.
|
|
3587
|
+
# @return [String]
|
|
3588
|
+
#
|
|
3589
|
+
# @!attribute [rw] hosted_zone_associations
|
|
3590
|
+
# List of the private hosted zone associations.
|
|
3591
|
+
# @return [Array<Types::HostedZoneAssociationSummary>]
|
|
3592
|
+
#
|
|
3593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListHostedZoneAssociationsOutput AWS API Documentation
|
|
3594
|
+
#
|
|
3595
|
+
class ListHostedZoneAssociationsOutput < Struct.new(
|
|
3596
|
+
:next_token,
|
|
3597
|
+
:hosted_zone_associations)
|
|
3598
|
+
SENSITIVE = []
|
|
3599
|
+
include Aws::Structure
|
|
3600
|
+
end
|
|
3601
|
+
|
|
3602
|
+
# @!attribute [rw] max_results
|
|
3603
|
+
# The maximum number of results to retrieve in a single call.
|
|
3604
|
+
# @return [Integer]
|
|
3605
|
+
#
|
|
3606
|
+
# @!attribute [rw] next_token
|
|
3607
|
+
# A pagination token used for large sets of results that can't be
|
|
3608
|
+
# returned in a single response.
|
|
3609
|
+
# @return [String]
|
|
3610
|
+
#
|
|
3611
|
+
# @!attribute [rw] managed_firewall_domain_list_type
|
|
3612
|
+
# The category of the Manage DNS list either `THREAT` or `CONTENT`.
|
|
3613
|
+
# @return [String]
|
|
3614
|
+
#
|
|
3615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListManagedFirewallDomainListsInput AWS API Documentation
|
|
3616
|
+
#
|
|
3617
|
+
class ListManagedFirewallDomainListsInput < Struct.new(
|
|
3618
|
+
:max_results,
|
|
3619
|
+
:next_token,
|
|
3620
|
+
:managed_firewall_domain_list_type)
|
|
3621
|
+
SENSITIVE = []
|
|
3622
|
+
include Aws::Structure
|
|
3623
|
+
end
|
|
3624
|
+
|
|
3625
|
+
# @!attribute [rw] next_token
|
|
3626
|
+
# A pagination token used for large sets of results that can't be
|
|
3627
|
+
# returned in a single response. Provide this token in the next call
|
|
3628
|
+
# to get the results not returned in this call.
|
|
3629
|
+
# @return [String]
|
|
3630
|
+
#
|
|
3631
|
+
# @!attribute [rw] managed_firewall_domain_lists
|
|
3632
|
+
# List of the Managed Domain Lists.
|
|
3633
|
+
# @return [Array<Types::ManagedFirewallDomainListsItem>]
|
|
3634
|
+
#
|
|
3635
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListManagedFirewallDomainListsOutput AWS API Documentation
|
|
3636
|
+
#
|
|
3637
|
+
class ListManagedFirewallDomainListsOutput < Struct.new(
|
|
3638
|
+
:next_token,
|
|
3639
|
+
:managed_firewall_domain_lists)
|
|
3640
|
+
SENSITIVE = []
|
|
3641
|
+
include Aws::Structure
|
|
3642
|
+
end
|
|
3643
|
+
|
|
3644
|
+
# @!attribute [rw] resource_arn
|
|
3645
|
+
# Amazon Resource Name (ARN) for the resource.
|
|
3646
|
+
# @return [String]
|
|
3647
|
+
#
|
|
3648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListTagsForResourceRequest AWS API Documentation
|
|
3649
|
+
#
|
|
3650
|
+
class ListTagsForResourceRequest < Struct.new(
|
|
3651
|
+
:resource_arn)
|
|
3652
|
+
SENSITIVE = []
|
|
3653
|
+
include Aws::Structure
|
|
3654
|
+
end
|
|
3655
|
+
|
|
3656
|
+
# @!attribute [rw] tags
|
|
3657
|
+
# An array of user-defined keys and optional values. These tags can be
|
|
3658
|
+
# used for categorization and organization.
|
|
3659
|
+
# @return [Hash<String,String>]
|
|
3660
|
+
#
|
|
3661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListTagsForResourceResponse AWS API Documentation
|
|
3662
|
+
#
|
|
3663
|
+
class ListTagsForResourceResponse < Struct.new(
|
|
3664
|
+
:tags)
|
|
3665
|
+
SENSITIVE = []
|
|
3666
|
+
include Aws::Structure
|
|
3667
|
+
end
|
|
3668
|
+
|
|
3669
|
+
# Summary information about a managed firewall domain list.
|
|
3670
|
+
#
|
|
3671
|
+
# @!attribute [rw] description
|
|
3672
|
+
# A description of the managed firewall domain list.
|
|
3673
|
+
# @return [String]
|
|
3674
|
+
#
|
|
3675
|
+
# @!attribute [rw] id
|
|
3676
|
+
# The unique identifier of the managed firewall domain list.
|
|
3677
|
+
# @return [String]
|
|
3678
|
+
#
|
|
3679
|
+
# @!attribute [rw] name
|
|
3680
|
+
# The name of the managed firewall domain list.
|
|
3681
|
+
# @return [String]
|
|
3682
|
+
#
|
|
3683
|
+
# @!attribute [rw] managed_list_type
|
|
3684
|
+
# The type of the managed firewall domain list.
|
|
3685
|
+
# @return [String]
|
|
3686
|
+
#
|
|
3687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ManagedFirewallDomainListsItem AWS API Documentation
|
|
3688
|
+
#
|
|
3689
|
+
class ManagedFirewallDomainListsItem < Struct.new(
|
|
3690
|
+
:description,
|
|
3691
|
+
:id,
|
|
3692
|
+
:name,
|
|
3693
|
+
:managed_list_type)
|
|
3694
|
+
SENSITIVE = []
|
|
3695
|
+
include Aws::Structure
|
|
3696
|
+
end
|
|
3697
|
+
|
|
3698
|
+
# The specified resource was not found. Verify the resource ID and try
|
|
3699
|
+
# again.
|
|
3700
|
+
#
|
|
3701
|
+
# @!attribute [rw] message
|
|
3702
|
+
# @return [String]
|
|
3703
|
+
#
|
|
3704
|
+
# @!attribute [rw] resource_id
|
|
3705
|
+
# The unique ID of the resource referenced in the failed request.
|
|
3706
|
+
# @return [String]
|
|
3707
|
+
#
|
|
3708
|
+
# @!attribute [rw] resource_type
|
|
3709
|
+
# The resource type of the resource referenced in the failed request.
|
|
3710
|
+
# @return [String]
|
|
3711
|
+
#
|
|
3712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ResourceNotFoundException AWS API Documentation
|
|
3713
|
+
#
|
|
3714
|
+
class ResourceNotFoundException < Struct.new(
|
|
3715
|
+
:message,
|
|
3716
|
+
:resource_id,
|
|
3717
|
+
:resource_type)
|
|
3718
|
+
SENSITIVE = []
|
|
3719
|
+
include Aws::Structure
|
|
3720
|
+
end
|
|
3721
|
+
|
|
3722
|
+
# The request would exceed one or more service quotas. Check your
|
|
3723
|
+
# current usage and quotas, then try again.
|
|
3724
|
+
#
|
|
3725
|
+
# @!attribute [rw] message
|
|
3726
|
+
# @return [String]
|
|
3727
|
+
#
|
|
3728
|
+
# @!attribute [rw] resource_id
|
|
3729
|
+
# The unique ID of the resource referenced in the failed request.
|
|
3730
|
+
# @return [String]
|
|
3731
|
+
#
|
|
3732
|
+
# @!attribute [rw] resource_type
|
|
3733
|
+
# The resource type of the resource referenced in the failed request.
|
|
3734
|
+
# @return [String]
|
|
3735
|
+
#
|
|
3736
|
+
# @!attribute [rw] service_code
|
|
3737
|
+
# The code for the AWS service that owns the quota.
|
|
3738
|
+
# @return [String]
|
|
3739
|
+
#
|
|
3740
|
+
# @!attribute [rw] quota_code
|
|
3741
|
+
# The quota code recognized by the AWS Service Quotas service.
|
|
3742
|
+
# @return [String]
|
|
3743
|
+
#
|
|
3744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ServiceQuotaExceededException AWS API Documentation
|
|
3745
|
+
#
|
|
3746
|
+
class ServiceQuotaExceededException < Struct.new(
|
|
3747
|
+
:message,
|
|
3748
|
+
:resource_id,
|
|
3749
|
+
:resource_type,
|
|
3750
|
+
:service_code,
|
|
3751
|
+
:quota_code)
|
|
3752
|
+
SENSITIVE = []
|
|
3753
|
+
include Aws::Structure
|
|
3754
|
+
end
|
|
3755
|
+
|
|
3756
|
+
# @!attribute [rw] resource_arn
|
|
3757
|
+
# Amazon Resource Name (ARN) of the resource to be tagged.
|
|
3758
|
+
# @return [String]
|
|
3759
|
+
#
|
|
3760
|
+
# @!attribute [rw] tags
|
|
3761
|
+
# An array of user-defined keys and optional values. These tags can be
|
|
3762
|
+
# used for categorization and organization.
|
|
3763
|
+
# @return [Hash<String,String>]
|
|
3764
|
+
#
|
|
3765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/TagResourceRequest AWS API Documentation
|
|
3766
|
+
#
|
|
3767
|
+
class TagResourceRequest < Struct.new(
|
|
3768
|
+
:resource_arn,
|
|
3769
|
+
:tags)
|
|
3770
|
+
SENSITIVE = []
|
|
3771
|
+
include Aws::Structure
|
|
3772
|
+
end
|
|
3773
|
+
|
|
3774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/TagResourceResponse AWS API Documentation
|
|
3775
|
+
#
|
|
3776
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
|
3777
|
+
|
|
3778
|
+
# The request was throttled due to too many requests. Wait a moment and
|
|
3779
|
+
# try again.
|
|
3780
|
+
#
|
|
3781
|
+
# @!attribute [rw] message
|
|
3782
|
+
# @return [String]
|
|
3783
|
+
#
|
|
3784
|
+
# @!attribute [rw] service_code
|
|
3785
|
+
# The code for the AWS service that owns the quota.
|
|
3786
|
+
# @return [String]
|
|
3787
|
+
#
|
|
3788
|
+
# @!attribute [rw] quota_code
|
|
3789
|
+
# The quota code recognized by the AWS Service Quotas service.
|
|
3790
|
+
# @return [String]
|
|
3791
|
+
#
|
|
3792
|
+
# @!attribute [rw] retry_after_seconds
|
|
3793
|
+
# Number of seconds in which the caller can retry the request.
|
|
3794
|
+
# @return [Integer]
|
|
3795
|
+
#
|
|
3796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ThrottlingException AWS API Documentation
|
|
3797
|
+
#
|
|
3798
|
+
class ThrottlingException < Struct.new(
|
|
3799
|
+
:message,
|
|
3800
|
+
:service_code,
|
|
3801
|
+
:quota_code,
|
|
3802
|
+
:retry_after_seconds)
|
|
3803
|
+
SENSITIVE = []
|
|
3804
|
+
include Aws::Structure
|
|
3805
|
+
end
|
|
3806
|
+
|
|
3807
|
+
# @!attribute [rw] resource_arn
|
|
3808
|
+
# Amazon Resource Name (ARN) of the resource.
|
|
3809
|
+
# @return [String]
|
|
3810
|
+
#
|
|
3811
|
+
# @!attribute [rw] tag_keys
|
|
3812
|
+
# The tag keys associated with the resource.
|
|
3813
|
+
# @return [Array<String>]
|
|
3814
|
+
#
|
|
3815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UntagResourceRequest AWS API Documentation
|
|
3816
|
+
#
|
|
3817
|
+
class UntagResourceRequest < Struct.new(
|
|
3818
|
+
:resource_arn,
|
|
3819
|
+
:tag_keys)
|
|
3820
|
+
SENSITIVE = []
|
|
3821
|
+
include Aws::Structure
|
|
3822
|
+
end
|
|
3823
|
+
|
|
3824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UntagResourceResponse AWS API Documentation
|
|
3825
|
+
#
|
|
3826
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
3827
|
+
|
|
3828
|
+
# @!attribute [rw] access_source_id
|
|
3829
|
+
# The unique identifier of the access source to update.
|
|
3830
|
+
# @return [String]
|
|
3831
|
+
#
|
|
3832
|
+
# @!attribute [rw] cidr
|
|
3833
|
+
# The CIDR block for the access source.
|
|
3834
|
+
# @return [String]
|
|
3835
|
+
#
|
|
3836
|
+
# @!attribute [rw] ip_address_type
|
|
3837
|
+
# The IP address type for the access source.
|
|
3838
|
+
# @return [String]
|
|
3839
|
+
#
|
|
3840
|
+
# @!attribute [rw] name
|
|
3841
|
+
# The name of the access source.
|
|
3842
|
+
# @return [String]
|
|
3843
|
+
#
|
|
3844
|
+
# @!attribute [rw] protocol
|
|
3845
|
+
# The protocol for the access source.
|
|
3846
|
+
# @return [String]
|
|
3847
|
+
#
|
|
3848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateAccessSourceInput AWS API Documentation
|
|
3849
|
+
#
|
|
3850
|
+
class UpdateAccessSourceInput < Struct.new(
|
|
3851
|
+
:access_source_id,
|
|
3852
|
+
:cidr,
|
|
3853
|
+
:ip_address_type,
|
|
3854
|
+
:name,
|
|
3855
|
+
:protocol)
|
|
3856
|
+
SENSITIVE = []
|
|
3857
|
+
include Aws::Structure
|
|
3858
|
+
end
|
|
3859
|
+
|
|
3860
|
+
# @!attribute [rw] arn
|
|
3861
|
+
# The Amazon Resource Name (ARN) of the updated access source.
|
|
3862
|
+
# @return [String]
|
|
3863
|
+
#
|
|
3864
|
+
# @!attribute [rw] cidr
|
|
3865
|
+
# The CIDR block of the updated access source.
|
|
3866
|
+
# @return [String]
|
|
3867
|
+
#
|
|
3868
|
+
# @!attribute [rw] created_at
|
|
3869
|
+
# The date and time when the access source was originally created.
|
|
3870
|
+
# @return [Time]
|
|
3871
|
+
#
|
|
3872
|
+
# @!attribute [rw] id
|
|
3873
|
+
# The unique identifier of the updated access source.
|
|
3874
|
+
# @return [String]
|
|
3875
|
+
#
|
|
3876
|
+
# @!attribute [rw] ip_address_type
|
|
3877
|
+
# The IP address type of the updated access source.
|
|
3878
|
+
# @return [String]
|
|
3879
|
+
#
|
|
3880
|
+
# @!attribute [rw] name
|
|
3881
|
+
# The name of the updated access source.
|
|
3882
|
+
# @return [String]
|
|
3883
|
+
#
|
|
3884
|
+
# @!attribute [rw] dns_view_id
|
|
3885
|
+
# The ID of the DNS view associated with the updated access source.
|
|
3886
|
+
# @return [String]
|
|
3887
|
+
#
|
|
3888
|
+
# @!attribute [rw] protocol
|
|
3889
|
+
# The protocol of the updated access source.
|
|
3890
|
+
# @return [String]
|
|
3891
|
+
#
|
|
3892
|
+
# @!attribute [rw] status
|
|
3893
|
+
# The current status of the updated access source.
|
|
3894
|
+
# @return [String]
|
|
3895
|
+
#
|
|
3896
|
+
# @!attribute [rw] updated_at
|
|
3897
|
+
# The date and time when the access source was last updated.
|
|
3898
|
+
# @return [Time]
|
|
3899
|
+
#
|
|
3900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateAccessSourceOutput AWS API Documentation
|
|
3901
|
+
#
|
|
3902
|
+
class UpdateAccessSourceOutput < Struct.new(
|
|
3903
|
+
:arn,
|
|
3904
|
+
:cidr,
|
|
3905
|
+
:created_at,
|
|
3906
|
+
:id,
|
|
3907
|
+
:ip_address_type,
|
|
3908
|
+
:name,
|
|
3909
|
+
:dns_view_id,
|
|
3910
|
+
:protocol,
|
|
3911
|
+
:status,
|
|
3912
|
+
:updated_at)
|
|
3913
|
+
SENSITIVE = []
|
|
3914
|
+
include Aws::Structure
|
|
3915
|
+
end
|
|
3916
|
+
|
|
3917
|
+
# @!attribute [rw] access_token_id
|
|
3918
|
+
# The ID of the token.
|
|
3919
|
+
# @return [String]
|
|
3920
|
+
#
|
|
3921
|
+
# @!attribute [rw] name
|
|
3922
|
+
# The new name of the token.
|
|
3923
|
+
# @return [String]
|
|
3924
|
+
#
|
|
3925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateAccessTokenInput AWS API Documentation
|
|
3926
|
+
#
|
|
3927
|
+
class UpdateAccessTokenInput < Struct.new(
|
|
3928
|
+
:access_token_id,
|
|
3929
|
+
:name)
|
|
3930
|
+
SENSITIVE = []
|
|
3931
|
+
include Aws::Structure
|
|
3932
|
+
end
|
|
3933
|
+
|
|
3934
|
+
# @!attribute [rw] id
|
|
3935
|
+
# The ID of the token.
|
|
3936
|
+
# @return [String]
|
|
3937
|
+
#
|
|
3938
|
+
# @!attribute [rw] name
|
|
3939
|
+
# The name of the token.
|
|
3940
|
+
# @return [String]
|
|
3941
|
+
#
|
|
3942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateAccessTokenOutput AWS API Documentation
|
|
3943
|
+
#
|
|
3944
|
+
class UpdateAccessTokenOutput < Struct.new(
|
|
3945
|
+
:id,
|
|
3946
|
+
:name)
|
|
3947
|
+
SENSITIVE = []
|
|
3948
|
+
include Aws::Structure
|
|
3949
|
+
end
|
|
3950
|
+
|
|
3951
|
+
# @!attribute [rw] dns_view_id
|
|
3952
|
+
# The unique identifier of the DNS view to update.
|
|
3953
|
+
# @return [String]
|
|
3954
|
+
#
|
|
3955
|
+
# @!attribute [rw] name
|
|
3956
|
+
# The name of the DNS view.
|
|
3957
|
+
# @return [String]
|
|
3958
|
+
#
|
|
3959
|
+
# @!attribute [rw] description
|
|
3960
|
+
# A description of the DNS view.
|
|
3961
|
+
# @return [String]
|
|
3962
|
+
#
|
|
3963
|
+
# @!attribute [rw] dnssec_validation
|
|
3964
|
+
# Whether to enable DNSSEC validation for the DNS view.
|
|
3965
|
+
# @return [String]
|
|
3966
|
+
#
|
|
3967
|
+
# @!attribute [rw] edns_client_subnet
|
|
3968
|
+
# Whether to enable EDNS Client Subnet injection for the DNS view.
|
|
3969
|
+
# @return [String]
|
|
3970
|
+
#
|
|
3971
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
3972
|
+
# Whether firewall rules should fail open when they cannot be
|
|
3973
|
+
# evaluated.
|
|
3974
|
+
# @return [String]
|
|
3975
|
+
#
|
|
3976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateDNSViewInput AWS API Documentation
|
|
3977
|
+
#
|
|
3978
|
+
class UpdateDNSViewInput < Struct.new(
|
|
3979
|
+
:dns_view_id,
|
|
3980
|
+
:name,
|
|
3981
|
+
:description,
|
|
3982
|
+
:dnssec_validation,
|
|
3983
|
+
:edns_client_subnet,
|
|
3984
|
+
:firewall_rules_fail_open)
|
|
3985
|
+
SENSITIVE = []
|
|
3986
|
+
include Aws::Structure
|
|
3987
|
+
end
|
|
3988
|
+
|
|
3989
|
+
# @!attribute [rw] id
|
|
3990
|
+
# The unique identifier of the updated DNS view.
|
|
3991
|
+
# @return [String]
|
|
3992
|
+
#
|
|
3993
|
+
# @!attribute [rw] arn
|
|
3994
|
+
# The Amazon Resource Name (ARN) of the updated DNS view.
|
|
3995
|
+
# @return [String]
|
|
3996
|
+
#
|
|
3997
|
+
# @!attribute [rw] client_token
|
|
3998
|
+
# The unique string that identifies the request and ensures
|
|
3999
|
+
# idempotency.
|
|
4000
|
+
# @return [String]
|
|
4001
|
+
#
|
|
4002
|
+
# @!attribute [rw] dnssec_validation
|
|
4003
|
+
# Whether DNSSEC validation is enabled for the updated DNS view.
|
|
4004
|
+
# @return [String]
|
|
4005
|
+
#
|
|
4006
|
+
# @!attribute [rw] edns_client_subnet
|
|
4007
|
+
# Whether EDNS Client Subnet injection is enabled for the updated DNS
|
|
4008
|
+
# view.
|
|
4009
|
+
# @return [String]
|
|
4010
|
+
#
|
|
4011
|
+
# @!attribute [rw] firewall_rules_fail_open
|
|
4012
|
+
# Whether firewall rules fail open when they cannot be evaluated for
|
|
4013
|
+
# the updated DNS view.
|
|
4014
|
+
# @return [String]
|
|
4015
|
+
#
|
|
4016
|
+
# @!attribute [rw] name
|
|
4017
|
+
# The name of the updated DNS view.
|
|
4018
|
+
# @return [String]
|
|
4019
|
+
#
|
|
4020
|
+
# @!attribute [rw] description
|
|
4021
|
+
# The description of the updated DNS view.
|
|
4022
|
+
# @return [String]
|
|
4023
|
+
#
|
|
4024
|
+
# @!attribute [rw] global_resolver_id
|
|
4025
|
+
# The ID of the global resolver associated with the updated DNS view.
|
|
4026
|
+
# @return [String]
|
|
4027
|
+
#
|
|
4028
|
+
# @!attribute [rw] created_at
|
|
4029
|
+
# The date and time when the DNS view was originally created.
|
|
4030
|
+
# @return [Time]
|
|
4031
|
+
#
|
|
4032
|
+
# @!attribute [rw] updated_at
|
|
4033
|
+
# The date and time when the DNS view was last updated.
|
|
4034
|
+
# @return [Time]
|
|
4035
|
+
#
|
|
4036
|
+
# @!attribute [rw] status
|
|
4037
|
+
# The current status of the updated DNS view.
|
|
4038
|
+
# @return [String]
|
|
4039
|
+
#
|
|
4040
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateDNSViewOutput AWS API Documentation
|
|
4041
|
+
#
|
|
4042
|
+
class UpdateDNSViewOutput < Struct.new(
|
|
4043
|
+
:id,
|
|
4044
|
+
:arn,
|
|
4045
|
+
:client_token,
|
|
4046
|
+
:dnssec_validation,
|
|
4047
|
+
:edns_client_subnet,
|
|
4048
|
+
:firewall_rules_fail_open,
|
|
4049
|
+
:name,
|
|
4050
|
+
:description,
|
|
4051
|
+
:global_resolver_id,
|
|
4052
|
+
:created_at,
|
|
4053
|
+
:updated_at,
|
|
4054
|
+
:status)
|
|
4055
|
+
SENSITIVE = []
|
|
4056
|
+
include Aws::Structure
|
|
4057
|
+
end
|
|
4058
|
+
|
|
4059
|
+
# @!attribute [rw] domains
|
|
4060
|
+
# A list of the domains. You can add up to 1000 domains per request.
|
|
4061
|
+
# @return [Array<String>]
|
|
4062
|
+
#
|
|
4063
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
4064
|
+
# The ID of the DNS Firewall domain list to which you want to add the
|
|
4065
|
+
# domains.
|
|
4066
|
+
# @return [String]
|
|
4067
|
+
#
|
|
4068
|
+
# @!attribute [rw] operation
|
|
4069
|
+
# The operation for updating the domain list. The allowed values are
|
|
4070
|
+
# ADD, REMOVE, and REPLACE.
|
|
4071
|
+
# @return [String]
|
|
4072
|
+
#
|
|
4073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateFirewallDomainsInput AWS API Documentation
|
|
4074
|
+
#
|
|
4075
|
+
class UpdateFirewallDomainsInput < Struct.new(
|
|
4076
|
+
:domains,
|
|
4077
|
+
:firewall_domain_list_id,
|
|
4078
|
+
:operation)
|
|
4079
|
+
SENSITIVE = []
|
|
4080
|
+
include Aws::Structure
|
|
4081
|
+
end
|
|
4082
|
+
|
|
4083
|
+
# @!attribute [rw] id
|
|
4084
|
+
# The ID of the DNS Firewall domain list.
|
|
4085
|
+
# @return [String]
|
|
4086
|
+
#
|
|
4087
|
+
# @!attribute [rw] name
|
|
4088
|
+
# The name of the domain list.
|
|
4089
|
+
# @return [String]
|
|
4090
|
+
#
|
|
4091
|
+
# @!attribute [rw] status
|
|
4092
|
+
# The operational status of the domain list.
|
|
4093
|
+
# @return [String]
|
|
4094
|
+
#
|
|
4095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateFirewallDomainsOutput AWS API Documentation
|
|
4096
|
+
#
|
|
4097
|
+
class UpdateFirewallDomainsOutput < Struct.new(
|
|
4098
|
+
:id,
|
|
4099
|
+
:name,
|
|
4100
|
+
:status)
|
|
4101
|
+
SENSITIVE = []
|
|
4102
|
+
include Aws::Structure
|
|
4103
|
+
end
|
|
4104
|
+
|
|
4105
|
+
# @!attribute [rw] action
|
|
4106
|
+
# The action that DNS Firewall should take on a DNS query when it
|
|
4107
|
+
# matches one of the domains in the rule's domain list, or a threat
|
|
4108
|
+
# in a DNS Firewall Advanced rule.
|
|
4109
|
+
# @return [String]
|
|
4110
|
+
#
|
|
4111
|
+
# @!attribute [rw] block_override_dns_type
|
|
4112
|
+
# The DNS record's type. This determines the format of the record
|
|
4113
|
+
# value that you provided in `BlockOverrideDomain`. Used for the rule
|
|
4114
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
4115
|
+
# @return [String]
|
|
4116
|
+
#
|
|
4117
|
+
# @!attribute [rw] block_override_domain
|
|
4118
|
+
# The custom DNS record to send back in response to the query. Used
|
|
4119
|
+
# for the rule action `BLOCK` with a `BlockResponse` setting of
|
|
4120
|
+
# `OVERRIDE`.
|
|
4121
|
+
# @return [String]
|
|
4122
|
+
#
|
|
4123
|
+
# @!attribute [rw] block_override_ttl
|
|
4124
|
+
# The recommended amount of time, in seconds, for the DNS resolver or
|
|
4125
|
+
# web browser to cache the provided override record. Used for the rule
|
|
4126
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
4127
|
+
# @return [Integer]
|
|
4128
|
+
#
|
|
4129
|
+
# @!attribute [rw] block_response
|
|
4130
|
+
# The way that you want DNS Firewall to block the request. Used for
|
|
4131
|
+
# the rule action setting `BLOCK`.
|
|
4132
|
+
# @return [String]
|
|
4133
|
+
#
|
|
4134
|
+
# @!attribute [rw] client_token
|
|
4135
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
4136
|
+
# means that making the same request multiple times with the same
|
|
4137
|
+
# `clientToken` has the same result every time.
|
|
4138
|
+
#
|
|
4139
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
4140
|
+
# not need to pass this option.
|
|
4141
|
+
# @return [String]
|
|
4142
|
+
#
|
|
4143
|
+
# @!attribute [rw] confidence_threshold
|
|
4144
|
+
# The confidence threshold for DNS Firewall Advanced. You must provide
|
|
4145
|
+
# this value when you create a DNS Firewall Advanced rule.
|
|
4146
|
+
# @return [String]
|
|
4147
|
+
#
|
|
4148
|
+
# @!attribute [rw] description
|
|
4149
|
+
# The description for the Firewall rule.
|
|
4150
|
+
# @return [String]
|
|
4151
|
+
#
|
|
4152
|
+
# @!attribute [rw] dns_advanced_protection
|
|
4153
|
+
# The type of the DNS Firewall Advanced rule. Valid values are DGA and
|
|
4154
|
+
# DNS\_TUNNELING.
|
|
4155
|
+
# @return [String]
|
|
4156
|
+
#
|
|
4157
|
+
# @!attribute [rw] firewall_rule_id
|
|
4158
|
+
# The ID of the DNS Firewall rule.
|
|
4159
|
+
# @return [String]
|
|
4160
|
+
#
|
|
4161
|
+
# @!attribute [rw] name
|
|
4162
|
+
# The name of the DNS Firewall rule.
|
|
4163
|
+
# @return [String]
|
|
4164
|
+
#
|
|
4165
|
+
# @!attribute [rw] priority
|
|
4166
|
+
# The setting that determines the processing order of the rule in the
|
|
4167
|
+
# rule group. DNS Firewall processes the rules in a rule group by
|
|
4168
|
+
# order of priority, starting from the lowest setting.
|
|
4169
|
+
# @return [Integer]
|
|
4170
|
+
#
|
|
4171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateFirewallRuleInput AWS API Documentation
|
|
4172
|
+
#
|
|
4173
|
+
class UpdateFirewallRuleInput < Struct.new(
|
|
4174
|
+
:action,
|
|
4175
|
+
:block_override_dns_type,
|
|
4176
|
+
:block_override_domain,
|
|
4177
|
+
:block_override_ttl,
|
|
4178
|
+
:block_response,
|
|
4179
|
+
:client_token,
|
|
4180
|
+
:confidence_threshold,
|
|
4181
|
+
:description,
|
|
4182
|
+
:dns_advanced_protection,
|
|
4183
|
+
:firewall_rule_id,
|
|
4184
|
+
:name,
|
|
4185
|
+
:priority)
|
|
4186
|
+
SENSITIVE = []
|
|
4187
|
+
include Aws::Structure
|
|
4188
|
+
end
|
|
4189
|
+
|
|
4190
|
+
# @!attribute [rw] action
|
|
4191
|
+
# The action that DNS Firewall should take on a DNS query when it
|
|
4192
|
+
# matches one of the domains in the rule's domain list, or a threat
|
|
4193
|
+
# in a DNS Firewall Advanced rule.
|
|
4194
|
+
# @return [String]
|
|
4195
|
+
#
|
|
4196
|
+
# @!attribute [rw] block_override_dns_type
|
|
4197
|
+
# The DNS record's type. This determines the format of the record
|
|
4198
|
+
# value that you provided in `BlockOverrideDomain`. Used for the rule
|
|
4199
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
4200
|
+
# @return [String]
|
|
4201
|
+
#
|
|
4202
|
+
# @!attribute [rw] block_override_domain
|
|
4203
|
+
# The custom DNS record to send back in response to the query. Used
|
|
4204
|
+
# for the rule action `BLOCK` with a `BlockResponse` setting of
|
|
4205
|
+
# `OVERRIDE`.
|
|
4206
|
+
# @return [String]
|
|
4207
|
+
#
|
|
4208
|
+
# @!attribute [rw] block_override_ttl
|
|
4209
|
+
# The recommended amount of time, in seconds, for the DNS resolver or
|
|
4210
|
+
# web browser to cache the provided override record. Used for the rule
|
|
4211
|
+
# action `BLOCK` with a `BlockResponse` setting of `OVERRIDE`.
|
|
4212
|
+
# @return [Integer]
|
|
4213
|
+
#
|
|
4214
|
+
# @!attribute [rw] block_response
|
|
4215
|
+
# The way that you want DNS Firewall to block the request. Used for
|
|
4216
|
+
# the rule action setting `BLOCK`.
|
|
4217
|
+
# @return [String]
|
|
4218
|
+
#
|
|
4219
|
+
# @!attribute [rw] confidence_threshold
|
|
4220
|
+
# The confidence threshold for DNS Firewall Advanced. You must provide
|
|
4221
|
+
# this value when you create a DNS Firewall Advanced rule.
|
|
4222
|
+
# @return [String]
|
|
4223
|
+
#
|
|
4224
|
+
# @!attribute [rw] created_at
|
|
4225
|
+
# The time and date the Firewall rule was created.
|
|
4226
|
+
# @return [Time]
|
|
4227
|
+
#
|
|
4228
|
+
# @!attribute [rw] description
|
|
4229
|
+
# The description of the Firewall rule.
|
|
4230
|
+
# @return [String]
|
|
4231
|
+
#
|
|
4232
|
+
# @!attribute [rw] dns_advanced_protection
|
|
4233
|
+
# The type of the DNS Firewall Advanced rule. Valid values are DGA and
|
|
4234
|
+
# DNS\_TUNNELING.
|
|
4235
|
+
# @return [String]
|
|
4236
|
+
#
|
|
4237
|
+
# @!attribute [rw] firewall_domain_list_id
|
|
4238
|
+
# The ID of the domain list associated with the Firewall rule.
|
|
4239
|
+
# @return [String]
|
|
4240
|
+
#
|
|
4241
|
+
# @!attribute [rw] id
|
|
4242
|
+
# The ID of the Firewall rule.
|
|
4243
|
+
# @return [String]
|
|
4244
|
+
#
|
|
4245
|
+
# @!attribute [rw] name
|
|
4246
|
+
# The name of the Firewall rule.
|
|
4247
|
+
# @return [String]
|
|
4248
|
+
#
|
|
4249
|
+
# @!attribute [rw] priority
|
|
4250
|
+
# The setting that determines the processing order of the rule in the
|
|
4251
|
+
# rule group. DNS Firewall processes the rules in a rule group by
|
|
4252
|
+
# order of priority, starting from the lowest setting.
|
|
4253
|
+
# @return [Integer]
|
|
4254
|
+
#
|
|
4255
|
+
# @!attribute [rw] dns_view_id
|
|
4256
|
+
# The ID of the DNS view the Firewall rule is associated with.
|
|
4257
|
+
# @return [String]
|
|
4258
|
+
#
|
|
4259
|
+
# @!attribute [rw] query_type
|
|
4260
|
+
# The DNS query type you want the rule to evaluate.
|
|
4261
|
+
# @return [String]
|
|
4262
|
+
#
|
|
4263
|
+
# @!attribute [rw] status
|
|
4264
|
+
# The operational status of the firewall rule.
|
|
4265
|
+
# @return [String]
|
|
4266
|
+
#
|
|
4267
|
+
# @!attribute [rw] updated_at
|
|
4268
|
+
# The time and date the rule was updated.
|
|
4269
|
+
# @return [Time]
|
|
4270
|
+
#
|
|
4271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateFirewallRuleOutput AWS API Documentation
|
|
4272
|
+
#
|
|
4273
|
+
class UpdateFirewallRuleOutput < Struct.new(
|
|
4274
|
+
:action,
|
|
4275
|
+
:block_override_dns_type,
|
|
4276
|
+
:block_override_domain,
|
|
4277
|
+
:block_override_ttl,
|
|
4278
|
+
:block_response,
|
|
4279
|
+
:confidence_threshold,
|
|
4280
|
+
:created_at,
|
|
4281
|
+
:description,
|
|
4282
|
+
:dns_advanced_protection,
|
|
4283
|
+
:firewall_domain_list_id,
|
|
4284
|
+
:id,
|
|
4285
|
+
:name,
|
|
4286
|
+
:priority,
|
|
4287
|
+
:dns_view_id,
|
|
4288
|
+
:query_type,
|
|
4289
|
+
:status,
|
|
4290
|
+
:updated_at)
|
|
4291
|
+
SENSITIVE = []
|
|
4292
|
+
include Aws::Structure
|
|
4293
|
+
end
|
|
4294
|
+
|
|
4295
|
+
# @!attribute [rw] global_resolver_id
|
|
4296
|
+
# The ID of the Global Resolver.
|
|
4297
|
+
# @return [String]
|
|
4298
|
+
#
|
|
4299
|
+
# @!attribute [rw] name
|
|
4300
|
+
# The name of the Global Resolver.
|
|
4301
|
+
# @return [String]
|
|
4302
|
+
#
|
|
4303
|
+
# @!attribute [rw] observability_region
|
|
4304
|
+
# The AWS Regions in which the users' Global Resolver query
|
|
4305
|
+
# resolution logs will be propagated.
|
|
4306
|
+
# @return [String]
|
|
4307
|
+
#
|
|
4308
|
+
# @!attribute [rw] description
|
|
4309
|
+
# The description of the Global Resolver.
|
|
4310
|
+
# @return [String]
|
|
4311
|
+
#
|
|
4312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateGlobalResolverInput AWS API Documentation
|
|
4313
|
+
#
|
|
4314
|
+
class UpdateGlobalResolverInput < Struct.new(
|
|
4315
|
+
:global_resolver_id,
|
|
4316
|
+
:name,
|
|
4317
|
+
:observability_region,
|
|
4318
|
+
:description)
|
|
4319
|
+
SENSITIVE = []
|
|
4320
|
+
include Aws::Structure
|
|
4321
|
+
end
|
|
4322
|
+
|
|
4323
|
+
# @!attribute [rw] id
|
|
4324
|
+
# The ID of the Global Resolver.
|
|
4325
|
+
# @return [String]
|
|
4326
|
+
#
|
|
4327
|
+
# @!attribute [rw] arn
|
|
4328
|
+
# The Amazon Resource Name (ARN) of the Global Resolver.
|
|
4329
|
+
# @return [String]
|
|
4330
|
+
#
|
|
4331
|
+
# @!attribute [rw] client_token
|
|
4332
|
+
# A unique, case-sensitive identifier to ensure idempotency. This
|
|
4333
|
+
# means that making the same request multiple times with the same
|
|
4334
|
+
# `clientToken` has the same result every time.
|
|
4335
|
+
# @return [String]
|
|
4336
|
+
#
|
|
4337
|
+
# @!attribute [rw] dns_name
|
|
4338
|
+
# The hostname to be used by the customers' DNS clients for
|
|
4339
|
+
# certification validation.
|
|
4340
|
+
# @return [String]
|
|
4341
|
+
#
|
|
4342
|
+
# @!attribute [rw] observability_region
|
|
4343
|
+
# The AWS Regions in which the users' Global Resolver query
|
|
4344
|
+
# resolution logs will be propagated.
|
|
4345
|
+
# @return [String]
|
|
4346
|
+
#
|
|
4347
|
+
# @!attribute [rw] name
|
|
4348
|
+
# Name of the Global Resolver.
|
|
4349
|
+
# @return [String]
|
|
4350
|
+
#
|
|
4351
|
+
# @!attribute [rw] description
|
|
4352
|
+
# Description of the Global Resolver.
|
|
4353
|
+
# @return [String]
|
|
4354
|
+
#
|
|
4355
|
+
# @!attribute [rw] regions
|
|
4356
|
+
# The AWS Regions in which the Global Resolver will operate.
|
|
4357
|
+
# @return [Array<String>]
|
|
4358
|
+
#
|
|
4359
|
+
# @!attribute [rw] created_at
|
|
4360
|
+
# The time and date the Global Resolverwas created.
|
|
4361
|
+
# @return [Time]
|
|
4362
|
+
#
|
|
4363
|
+
# @!attribute [rw] updated_at
|
|
4364
|
+
# The time and date the Global Resolver was updated.
|
|
4365
|
+
# @return [Time]
|
|
4366
|
+
#
|
|
4367
|
+
# @!attribute [rw] status
|
|
4368
|
+
# The operational status of the Global Resolver.
|
|
4369
|
+
# @return [String]
|
|
4370
|
+
#
|
|
4371
|
+
# @!attribute [rw] ipv4_addresses
|
|
4372
|
+
# List of anycast IPv4 addresses associated with the Global Resolver
|
|
4373
|
+
# instance.
|
|
4374
|
+
# @return [Array<String>]
|
|
4375
|
+
#
|
|
4376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateGlobalResolverOutput AWS API Documentation
|
|
4377
|
+
#
|
|
4378
|
+
class UpdateGlobalResolverOutput < Struct.new(
|
|
4379
|
+
:id,
|
|
4380
|
+
:arn,
|
|
4381
|
+
:client_token,
|
|
4382
|
+
:dns_name,
|
|
4383
|
+
:observability_region,
|
|
4384
|
+
:name,
|
|
4385
|
+
:description,
|
|
4386
|
+
:regions,
|
|
4387
|
+
:created_at,
|
|
4388
|
+
:updated_at,
|
|
4389
|
+
:status,
|
|
4390
|
+
:ipv4_addresses)
|
|
4391
|
+
SENSITIVE = []
|
|
4392
|
+
include Aws::Structure
|
|
4393
|
+
end
|
|
4394
|
+
|
|
4395
|
+
# @!attribute [rw] hosted_zone_association_id
|
|
4396
|
+
# The ID of the private hosted zone association.
|
|
4397
|
+
# @return [String]
|
|
4398
|
+
#
|
|
4399
|
+
# @!attribute [rw] name
|
|
4400
|
+
# The name you want to update the hosted zone association to.
|
|
4401
|
+
# @return [String]
|
|
4402
|
+
#
|
|
4403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateHostedZoneAssociationInput AWS API Documentation
|
|
4404
|
+
#
|
|
4405
|
+
class UpdateHostedZoneAssociationInput < Struct.new(
|
|
4406
|
+
:hosted_zone_association_id,
|
|
4407
|
+
:name)
|
|
4408
|
+
SENSITIVE = []
|
|
4409
|
+
include Aws::Structure
|
|
4410
|
+
end
|
|
4411
|
+
|
|
4412
|
+
# @!attribute [rw] id
|
|
4413
|
+
# The ID of the private hosted zone association.
|
|
4414
|
+
# @return [String]
|
|
4415
|
+
#
|
|
4416
|
+
# @!attribute [rw] resource_arn
|
|
4417
|
+
# The Amazon Resource Name (ARN) of the private hosted zone
|
|
4418
|
+
# association.
|
|
4419
|
+
# @return [String]
|
|
4420
|
+
#
|
|
4421
|
+
# @!attribute [rw] hosted_zone_id
|
|
4422
|
+
# The ID of the private hosted zone.
|
|
4423
|
+
# @return [String]
|
|
4424
|
+
#
|
|
4425
|
+
# @!attribute [rw] hosted_zone_name
|
|
4426
|
+
# The name of the domain associated with the private hosted zone.
|
|
4427
|
+
# @return [String]
|
|
4428
|
+
#
|
|
4429
|
+
# @!attribute [rw] name
|
|
4430
|
+
# The name of the private hosted zone association.
|
|
4431
|
+
# @return [String]
|
|
4432
|
+
#
|
|
4433
|
+
# @!attribute [rw] created_at
|
|
4434
|
+
# The time and date the private hosted zone association was created.
|
|
4435
|
+
# @return [Time]
|
|
4436
|
+
#
|
|
4437
|
+
# @!attribute [rw] updated_at
|
|
4438
|
+
# The time and date the private hosted zone association was updated.
|
|
4439
|
+
# @return [Time]
|
|
4440
|
+
#
|
|
4441
|
+
# @!attribute [rw] status
|
|
4442
|
+
# The operational status of the private hosted zone association.
|
|
4443
|
+
# @return [String]
|
|
4444
|
+
#
|
|
4445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateHostedZoneAssociationOutput AWS API Documentation
|
|
4446
|
+
#
|
|
4447
|
+
class UpdateHostedZoneAssociationOutput < Struct.new(
|
|
4448
|
+
:id,
|
|
4449
|
+
:resource_arn,
|
|
4450
|
+
:hosted_zone_id,
|
|
4451
|
+
:hosted_zone_name,
|
|
4452
|
+
:name,
|
|
4453
|
+
:created_at,
|
|
4454
|
+
:updated_at,
|
|
4455
|
+
:status)
|
|
4456
|
+
SENSITIVE = []
|
|
4457
|
+
include Aws::Structure
|
|
4458
|
+
end
|
|
4459
|
+
|
|
4460
|
+
# The input parameters are invalid. Check the parameter values and try
|
|
4461
|
+
# again.
|
|
4462
|
+
#
|
|
4463
|
+
# @!attribute [rw] message
|
|
4464
|
+
# @return [String]
|
|
4465
|
+
#
|
|
4466
|
+
# @!attribute [rw] reason
|
|
4467
|
+
# Reason the request failed validation.
|
|
4468
|
+
# @return [String]
|
|
4469
|
+
#
|
|
4470
|
+
# @!attribute [rw] field_list
|
|
4471
|
+
# The list of fields that aren't valid.
|
|
4472
|
+
# @return [Array<Types::ValidationExceptionField>]
|
|
4473
|
+
#
|
|
4474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ValidationException AWS API Documentation
|
|
4475
|
+
#
|
|
4476
|
+
class ValidationException < Struct.new(
|
|
4477
|
+
:message,
|
|
4478
|
+
:reason,
|
|
4479
|
+
:field_list)
|
|
4480
|
+
SENSITIVE = []
|
|
4481
|
+
include Aws::Structure
|
|
4482
|
+
end
|
|
4483
|
+
|
|
4484
|
+
# Information about a field that failed validation.
|
|
4485
|
+
#
|
|
4486
|
+
# @!attribute [rw] name
|
|
4487
|
+
# The name of the field that failed validation.
|
|
4488
|
+
# @return [String]
|
|
4489
|
+
#
|
|
4490
|
+
# @!attribute [rw] message
|
|
4491
|
+
# The validation error message for the field.
|
|
4492
|
+
# @return [String]
|
|
4493
|
+
#
|
|
4494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ValidationExceptionField AWS API Documentation
|
|
4495
|
+
#
|
|
4496
|
+
class ValidationExceptionField < Struct.new(
|
|
4497
|
+
:name,
|
|
4498
|
+
:message)
|
|
4499
|
+
SENSITIVE = []
|
|
4500
|
+
include Aws::Structure
|
|
4501
|
+
end
|
|
4502
|
+
|
|
4503
|
+
end
|
|
4504
|
+
end
|
|
4505
|
+
|