aws-sdk-route53resolver 1.53.0 → 1.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53resolver/client.rb +70 -46
- data/lib/aws-sdk-route53resolver/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-route53resolver.rb +1 -1
- data/sig/client.rbs +1016 -0
- data/sig/errors.rbs +73 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1183 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1183 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Route53Resolver
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AssociateFirewallRuleGroupRequest
|
17
|
+
attr_accessor creator_request_id: ::String
|
18
|
+
attr_accessor firewall_rule_group_id: ::String
|
19
|
+
attr_accessor vpc_id: ::String
|
20
|
+
attr_accessor priority: ::Integer
|
21
|
+
attr_accessor name: ::String
|
22
|
+
attr_accessor mutation_protection: ("ENABLED" | "DISABLED")
|
23
|
+
attr_accessor tags: ::Array[Types::Tag]
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AssociateFirewallRuleGroupResponse
|
28
|
+
attr_accessor firewall_rule_group_association: Types::FirewallRuleGroupAssociation
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class AssociateResolverEndpointIpAddressRequest
|
33
|
+
attr_accessor resolver_endpoint_id: ::String
|
34
|
+
attr_accessor ip_address: Types::IpAddressUpdate
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class AssociateResolverEndpointIpAddressResponse
|
39
|
+
attr_accessor resolver_endpoint: Types::ResolverEndpoint
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class AssociateResolverQueryLogConfigRequest
|
44
|
+
attr_accessor resolver_query_log_config_id: ::String
|
45
|
+
attr_accessor resource_id: ::String
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class AssociateResolverQueryLogConfigResponse
|
50
|
+
attr_accessor resolver_query_log_config_association: Types::ResolverQueryLogConfigAssociation
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class AssociateResolverRuleRequest
|
55
|
+
attr_accessor resolver_rule_id: ::String
|
56
|
+
attr_accessor name: ::String
|
57
|
+
attr_accessor vpc_id: ::String
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class AssociateResolverRuleResponse
|
62
|
+
attr_accessor resolver_rule_association: Types::ResolverRuleAssociation
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class ConflictException
|
67
|
+
attr_accessor message: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateFirewallDomainListRequest
|
72
|
+
attr_accessor creator_request_id: ::String
|
73
|
+
attr_accessor name: ::String
|
74
|
+
attr_accessor tags: ::Array[Types::Tag]
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class CreateFirewallDomainListResponse
|
79
|
+
attr_accessor firewall_domain_list: Types::FirewallDomainList
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
|
83
|
+
class CreateFirewallRuleGroupRequest
|
84
|
+
attr_accessor creator_request_id: ::String
|
85
|
+
attr_accessor name: ::String
|
86
|
+
attr_accessor tags: ::Array[Types::Tag]
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class CreateFirewallRuleGroupResponse
|
91
|
+
attr_accessor firewall_rule_group: Types::FirewallRuleGroup
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class CreateFirewallRuleRequest
|
96
|
+
attr_accessor creator_request_id: ::String
|
97
|
+
attr_accessor firewall_rule_group_id: ::String
|
98
|
+
attr_accessor firewall_domain_list_id: ::String
|
99
|
+
attr_accessor priority: ::Integer
|
100
|
+
attr_accessor action: ("ALLOW" | "BLOCK" | "ALERT")
|
101
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
102
|
+
attr_accessor block_override_domain: ::String
|
103
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
104
|
+
attr_accessor block_override_ttl: ::Integer
|
105
|
+
attr_accessor name: ::String
|
106
|
+
attr_accessor qtype: ::String
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class CreateFirewallRuleResponse
|
111
|
+
attr_accessor firewall_rule: Types::FirewallRule
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class CreateOutpostResolverRequest
|
116
|
+
attr_accessor creator_request_id: ::String
|
117
|
+
attr_accessor name: ::String
|
118
|
+
attr_accessor instance_count: ::Integer
|
119
|
+
attr_accessor preferred_instance_type: ::String
|
120
|
+
attr_accessor outpost_arn: ::String
|
121
|
+
attr_accessor tags: ::Array[Types::Tag]
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class CreateOutpostResolverResponse
|
126
|
+
attr_accessor outpost_resolver: Types::OutpostResolver
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class CreateResolverEndpointRequest
|
131
|
+
attr_accessor creator_request_id: ::String
|
132
|
+
attr_accessor name: ::String
|
133
|
+
attr_accessor security_group_ids: ::Array[::String]
|
134
|
+
attr_accessor direction: ("INBOUND" | "OUTBOUND")
|
135
|
+
attr_accessor ip_addresses: ::Array[Types::IpAddressRequest]
|
136
|
+
attr_accessor outpost_arn: ::String
|
137
|
+
attr_accessor preferred_instance_type: ::String
|
138
|
+
attr_accessor tags: ::Array[Types::Tag]
|
139
|
+
attr_accessor resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK")
|
140
|
+
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateResolverEndpointResponse
|
145
|
+
attr_accessor resolver_endpoint: Types::ResolverEndpoint
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class CreateResolverQueryLogConfigRequest
|
150
|
+
attr_accessor name: ::String
|
151
|
+
attr_accessor destination_arn: ::String
|
152
|
+
attr_accessor creator_request_id: ::String
|
153
|
+
attr_accessor tags: ::Array[Types::Tag]
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class CreateResolverQueryLogConfigResponse
|
158
|
+
attr_accessor resolver_query_log_config: Types::ResolverQueryLogConfig
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class CreateResolverRuleRequest
|
163
|
+
attr_accessor creator_request_id: ::String
|
164
|
+
attr_accessor name: ::String
|
165
|
+
attr_accessor rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE")
|
166
|
+
attr_accessor domain_name: ::String
|
167
|
+
attr_accessor target_ips: ::Array[Types::TargetAddress]
|
168
|
+
attr_accessor resolver_endpoint_id: ::String
|
169
|
+
attr_accessor tags: ::Array[Types::Tag]
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class CreateResolverRuleResponse
|
174
|
+
attr_accessor resolver_rule: Types::ResolverRule
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class DeleteFirewallDomainListRequest
|
179
|
+
attr_accessor firewall_domain_list_id: ::String
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class DeleteFirewallDomainListResponse
|
184
|
+
attr_accessor firewall_domain_list: Types::FirewallDomainList
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class DeleteFirewallRuleGroupRequest
|
189
|
+
attr_accessor firewall_rule_group_id: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class DeleteFirewallRuleGroupResponse
|
194
|
+
attr_accessor firewall_rule_group: Types::FirewallRuleGroup
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class DeleteFirewallRuleRequest
|
199
|
+
attr_accessor firewall_rule_group_id: ::String
|
200
|
+
attr_accessor firewall_domain_list_id: ::String
|
201
|
+
attr_accessor qtype: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class DeleteFirewallRuleResponse
|
206
|
+
attr_accessor firewall_rule: Types::FirewallRule
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class DeleteOutpostResolverRequest
|
211
|
+
attr_accessor id: ::String
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class DeleteOutpostResolverResponse
|
216
|
+
attr_accessor outpost_resolver: Types::OutpostResolver
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class DeleteResolverEndpointRequest
|
221
|
+
attr_accessor resolver_endpoint_id: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class DeleteResolverEndpointResponse
|
226
|
+
attr_accessor resolver_endpoint: Types::ResolverEndpoint
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class DeleteResolverQueryLogConfigRequest
|
231
|
+
attr_accessor resolver_query_log_config_id: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class DeleteResolverQueryLogConfigResponse
|
236
|
+
attr_accessor resolver_query_log_config: Types::ResolverQueryLogConfig
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class DeleteResolverRuleRequest
|
241
|
+
attr_accessor resolver_rule_id: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class DeleteResolverRuleResponse
|
246
|
+
attr_accessor resolver_rule: Types::ResolverRule
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class DisassociateFirewallRuleGroupRequest
|
251
|
+
attr_accessor firewall_rule_group_association_id: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class DisassociateFirewallRuleGroupResponse
|
256
|
+
attr_accessor firewall_rule_group_association: Types::FirewallRuleGroupAssociation
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class DisassociateResolverEndpointIpAddressRequest
|
261
|
+
attr_accessor resolver_endpoint_id: ::String
|
262
|
+
attr_accessor ip_address: Types::IpAddressUpdate
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class DisassociateResolverEndpointIpAddressResponse
|
267
|
+
attr_accessor resolver_endpoint: Types::ResolverEndpoint
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class DisassociateResolverQueryLogConfigRequest
|
272
|
+
attr_accessor resolver_query_log_config_id: ::String
|
273
|
+
attr_accessor resource_id: ::String
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class DisassociateResolverQueryLogConfigResponse
|
278
|
+
attr_accessor resolver_query_log_config_association: Types::ResolverQueryLogConfigAssociation
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class DisassociateResolverRuleRequest
|
283
|
+
attr_accessor vpc_id: ::String
|
284
|
+
attr_accessor resolver_rule_id: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class DisassociateResolverRuleResponse
|
289
|
+
attr_accessor resolver_rule_association: Types::ResolverRuleAssociation
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class Filter
|
294
|
+
attr_accessor name: ::String
|
295
|
+
attr_accessor values: ::Array[::String]
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class FirewallConfig
|
300
|
+
attr_accessor id: ::String
|
301
|
+
attr_accessor resource_id: ::String
|
302
|
+
attr_accessor owner_id: ::String
|
303
|
+
attr_accessor firewall_fail_open: ("ENABLED" | "DISABLED" | "USE_LOCAL_RESOURCE_SETTING")
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class FirewallDomainList
|
308
|
+
attr_accessor id: ::String
|
309
|
+
attr_accessor arn: ::String
|
310
|
+
attr_accessor name: ::String
|
311
|
+
attr_accessor domain_count: ::Integer
|
312
|
+
attr_accessor status: ("COMPLETE" | "COMPLETE_IMPORT_FAILED" | "IMPORTING" | "DELETING" | "UPDATING")
|
313
|
+
attr_accessor status_message: ::String
|
314
|
+
attr_accessor managed_owner_name: ::String
|
315
|
+
attr_accessor creator_request_id: ::String
|
316
|
+
attr_accessor creation_time: ::String
|
317
|
+
attr_accessor modification_time: ::String
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class FirewallDomainListMetadata
|
322
|
+
attr_accessor id: ::String
|
323
|
+
attr_accessor arn: ::String
|
324
|
+
attr_accessor name: ::String
|
325
|
+
attr_accessor creator_request_id: ::String
|
326
|
+
attr_accessor managed_owner_name: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class FirewallRule
|
331
|
+
attr_accessor firewall_rule_group_id: ::String
|
332
|
+
attr_accessor firewall_domain_list_id: ::String
|
333
|
+
attr_accessor name: ::String
|
334
|
+
attr_accessor priority: ::Integer
|
335
|
+
attr_accessor action: ("ALLOW" | "BLOCK" | "ALERT")
|
336
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
337
|
+
attr_accessor block_override_domain: ::String
|
338
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
339
|
+
attr_accessor block_override_ttl: ::Integer
|
340
|
+
attr_accessor creator_request_id: ::String
|
341
|
+
attr_accessor creation_time: ::String
|
342
|
+
attr_accessor modification_time: ::String
|
343
|
+
attr_accessor qtype: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class FirewallRuleGroup
|
348
|
+
attr_accessor id: ::String
|
349
|
+
attr_accessor arn: ::String
|
350
|
+
attr_accessor name: ::String
|
351
|
+
attr_accessor rule_count: ::Integer
|
352
|
+
attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING")
|
353
|
+
attr_accessor status_message: ::String
|
354
|
+
attr_accessor owner_id: ::String
|
355
|
+
attr_accessor creator_request_id: ::String
|
356
|
+
attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
|
357
|
+
attr_accessor creation_time: ::String
|
358
|
+
attr_accessor modification_time: ::String
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class FirewallRuleGroupAssociation
|
363
|
+
attr_accessor id: ::String
|
364
|
+
attr_accessor arn: ::String
|
365
|
+
attr_accessor firewall_rule_group_id: ::String
|
366
|
+
attr_accessor vpc_id: ::String
|
367
|
+
attr_accessor name: ::String
|
368
|
+
attr_accessor priority: ::Integer
|
369
|
+
attr_accessor mutation_protection: ("ENABLED" | "DISABLED")
|
370
|
+
attr_accessor managed_owner_name: ::String
|
371
|
+
attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING")
|
372
|
+
attr_accessor status_message: ::String
|
373
|
+
attr_accessor creator_request_id: ::String
|
374
|
+
attr_accessor creation_time: ::String
|
375
|
+
attr_accessor modification_time: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class FirewallRuleGroupMetadata
|
380
|
+
attr_accessor id: ::String
|
381
|
+
attr_accessor arn: ::String
|
382
|
+
attr_accessor name: ::String
|
383
|
+
attr_accessor owner_id: ::String
|
384
|
+
attr_accessor creator_request_id: ::String
|
385
|
+
attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class GetFirewallConfigRequest
|
390
|
+
attr_accessor resource_id: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class GetFirewallConfigResponse
|
395
|
+
attr_accessor firewall_config: Types::FirewallConfig
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class GetFirewallDomainListRequest
|
400
|
+
attr_accessor firewall_domain_list_id: ::String
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class GetFirewallDomainListResponse
|
405
|
+
attr_accessor firewall_domain_list: Types::FirewallDomainList
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class GetFirewallRuleGroupAssociationRequest
|
410
|
+
attr_accessor firewall_rule_group_association_id: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class GetFirewallRuleGroupAssociationResponse
|
415
|
+
attr_accessor firewall_rule_group_association: Types::FirewallRuleGroupAssociation
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class GetFirewallRuleGroupPolicyRequest
|
420
|
+
attr_accessor arn: ::String
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class GetFirewallRuleGroupPolicyResponse
|
425
|
+
attr_accessor firewall_rule_group_policy: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class GetFirewallRuleGroupRequest
|
430
|
+
attr_accessor firewall_rule_group_id: ::String
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class GetFirewallRuleGroupResponse
|
435
|
+
attr_accessor firewall_rule_group: Types::FirewallRuleGroup
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class GetOutpostResolverRequest
|
440
|
+
attr_accessor id: ::String
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class GetOutpostResolverResponse
|
445
|
+
attr_accessor outpost_resolver: Types::OutpostResolver
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class GetResolverConfigRequest
|
450
|
+
attr_accessor resource_id: ::String
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class GetResolverConfigResponse
|
455
|
+
attr_accessor resolver_config: Types::ResolverConfig
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class GetResolverDnssecConfigRequest
|
460
|
+
attr_accessor resource_id: ::String
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class GetResolverDnssecConfigResponse
|
465
|
+
attr_accessor resolver_dnssec_config: Types::ResolverDnssecConfig
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class GetResolverEndpointRequest
|
470
|
+
attr_accessor resolver_endpoint_id: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class GetResolverEndpointResponse
|
475
|
+
attr_accessor resolver_endpoint: Types::ResolverEndpoint
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class GetResolverQueryLogConfigAssociationRequest
|
480
|
+
attr_accessor resolver_query_log_config_association_id: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class GetResolverQueryLogConfigAssociationResponse
|
485
|
+
attr_accessor resolver_query_log_config_association: Types::ResolverQueryLogConfigAssociation
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class GetResolverQueryLogConfigPolicyRequest
|
490
|
+
attr_accessor arn: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class GetResolverQueryLogConfigPolicyResponse
|
495
|
+
attr_accessor resolver_query_log_config_policy: ::String
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class GetResolverQueryLogConfigRequest
|
500
|
+
attr_accessor resolver_query_log_config_id: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class GetResolverQueryLogConfigResponse
|
505
|
+
attr_accessor resolver_query_log_config: Types::ResolverQueryLogConfig
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class GetResolverRuleAssociationRequest
|
510
|
+
attr_accessor resolver_rule_association_id: ::String
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class GetResolverRuleAssociationResponse
|
515
|
+
attr_accessor resolver_rule_association: Types::ResolverRuleAssociation
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class GetResolverRulePolicyRequest
|
520
|
+
attr_accessor arn: ::String
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class GetResolverRulePolicyResponse
|
525
|
+
attr_accessor resolver_rule_policy: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class GetResolverRuleRequest
|
530
|
+
attr_accessor resolver_rule_id: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class GetResolverRuleResponse
|
535
|
+
attr_accessor resolver_rule: Types::ResolverRule
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class ImportFirewallDomainsRequest
|
540
|
+
attr_accessor firewall_domain_list_id: ::String
|
541
|
+
attr_accessor operation: ("REPLACE")
|
542
|
+
attr_accessor domain_file_url: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class ImportFirewallDomainsResponse
|
547
|
+
attr_accessor id: ::String
|
548
|
+
attr_accessor name: ::String
|
549
|
+
attr_accessor status: ("COMPLETE" | "COMPLETE_IMPORT_FAILED" | "IMPORTING" | "DELETING" | "UPDATING")
|
550
|
+
attr_accessor status_message: ::String
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class InternalServiceErrorException
|
555
|
+
attr_accessor message: ::String
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class InvalidNextTokenException
|
560
|
+
attr_accessor message: ::String
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class InvalidParameterException
|
565
|
+
attr_accessor message: ::String
|
566
|
+
attr_accessor field_name: ::String
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class InvalidPolicyDocument
|
571
|
+
attr_accessor message: ::String
|
572
|
+
SENSITIVE: []
|
573
|
+
end
|
574
|
+
|
575
|
+
class InvalidRequestException
|
576
|
+
attr_accessor message: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class InvalidTagException
|
581
|
+
attr_accessor message: ::String
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class IpAddressRequest
|
586
|
+
attr_accessor subnet_id: ::String
|
587
|
+
attr_accessor ip: ::String
|
588
|
+
attr_accessor ipv_6: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class IpAddressResponse
|
593
|
+
attr_accessor ip_id: ::String
|
594
|
+
attr_accessor subnet_id: ::String
|
595
|
+
attr_accessor ip: ::String
|
596
|
+
attr_accessor ipv_6: ::String
|
597
|
+
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "ATTACHING" | "ATTACHED" | "REMAP_DETACHING" | "REMAP_ATTACHING" | "DETACHING" | "FAILED_RESOURCE_GONE" | "DELETING" | "DELETE_FAILED_FAS_EXPIRED" | "UPDATING" | "UPDATE_FAILED")
|
598
|
+
attr_accessor status_message: ::String
|
599
|
+
attr_accessor creation_time: ::String
|
600
|
+
attr_accessor modification_time: ::String
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class IpAddressUpdate
|
605
|
+
attr_accessor ip_id: ::String
|
606
|
+
attr_accessor subnet_id: ::String
|
607
|
+
attr_accessor ip: ::String
|
608
|
+
attr_accessor ipv_6: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class LimitExceededException
|
613
|
+
attr_accessor message: ::String
|
614
|
+
attr_accessor resource_type: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class ListFirewallConfigsRequest
|
619
|
+
attr_accessor max_results: ::Integer
|
620
|
+
attr_accessor next_token: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class ListFirewallConfigsResponse
|
625
|
+
attr_accessor next_token: ::String
|
626
|
+
attr_accessor firewall_configs: ::Array[Types::FirewallConfig]
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class ListFirewallDomainListsRequest
|
631
|
+
attr_accessor max_results: ::Integer
|
632
|
+
attr_accessor next_token: ::String
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class ListFirewallDomainListsResponse
|
637
|
+
attr_accessor next_token: ::String
|
638
|
+
attr_accessor firewall_domain_lists: ::Array[Types::FirewallDomainListMetadata]
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class ListFirewallDomainsRequest
|
643
|
+
attr_accessor firewall_domain_list_id: ::String
|
644
|
+
attr_accessor max_results: ::Integer
|
645
|
+
attr_accessor next_token: ::String
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class ListFirewallDomainsResponse
|
650
|
+
attr_accessor next_token: ::String
|
651
|
+
attr_accessor domains: ::Array[::String]
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class ListFirewallRuleGroupAssociationsRequest
|
656
|
+
attr_accessor firewall_rule_group_id: ::String
|
657
|
+
attr_accessor vpc_id: ::String
|
658
|
+
attr_accessor priority: ::Integer
|
659
|
+
attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING")
|
660
|
+
attr_accessor max_results: ::Integer
|
661
|
+
attr_accessor next_token: ::String
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
665
|
+
class ListFirewallRuleGroupAssociationsResponse
|
666
|
+
attr_accessor next_token: ::String
|
667
|
+
attr_accessor firewall_rule_group_associations: ::Array[Types::FirewallRuleGroupAssociation]
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class ListFirewallRuleGroupsRequest
|
672
|
+
attr_accessor max_results: ::Integer
|
673
|
+
attr_accessor next_token: ::String
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class ListFirewallRuleGroupsResponse
|
678
|
+
attr_accessor next_token: ::String
|
679
|
+
attr_accessor firewall_rule_groups: ::Array[Types::FirewallRuleGroupMetadata]
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class ListFirewallRulesRequest
|
684
|
+
attr_accessor firewall_rule_group_id: ::String
|
685
|
+
attr_accessor priority: ::Integer
|
686
|
+
attr_accessor action: ("ALLOW" | "BLOCK" | "ALERT")
|
687
|
+
attr_accessor max_results: ::Integer
|
688
|
+
attr_accessor next_token: ::String
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class ListFirewallRulesResponse
|
693
|
+
attr_accessor next_token: ::String
|
694
|
+
attr_accessor firewall_rules: ::Array[Types::FirewallRule]
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class ListOutpostResolversRequest
|
699
|
+
attr_accessor outpost_arn: ::String
|
700
|
+
attr_accessor max_results: ::Integer
|
701
|
+
attr_accessor next_token: ::String
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class ListOutpostResolversResponse
|
706
|
+
attr_accessor outpost_resolvers: ::Array[Types::OutpostResolver]
|
707
|
+
attr_accessor next_token: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class ListResolverConfigsRequest
|
712
|
+
attr_accessor max_results: ::Integer
|
713
|
+
attr_accessor next_token: ::String
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class ListResolverConfigsResponse
|
718
|
+
attr_accessor next_token: ::String
|
719
|
+
attr_accessor resolver_configs: ::Array[Types::ResolverConfig]
|
720
|
+
SENSITIVE: []
|
721
|
+
end
|
722
|
+
|
723
|
+
class ListResolverDnssecConfigsRequest
|
724
|
+
attr_accessor max_results: ::Integer
|
725
|
+
attr_accessor next_token: ::String
|
726
|
+
attr_accessor filters: ::Array[Types::Filter]
|
727
|
+
SENSITIVE: []
|
728
|
+
end
|
729
|
+
|
730
|
+
class ListResolverDnssecConfigsResponse
|
731
|
+
attr_accessor next_token: ::String
|
732
|
+
attr_accessor resolver_dnssec_configs: ::Array[Types::ResolverDnssecConfig]
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class ListResolverEndpointIpAddressesRequest
|
737
|
+
attr_accessor resolver_endpoint_id: ::String
|
738
|
+
attr_accessor max_results: ::Integer
|
739
|
+
attr_accessor next_token: ::String
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class ListResolverEndpointIpAddressesResponse
|
744
|
+
attr_accessor next_token: ::String
|
745
|
+
attr_accessor max_results: ::Integer
|
746
|
+
attr_accessor ip_addresses: ::Array[Types::IpAddressResponse]
|
747
|
+
SENSITIVE: []
|
748
|
+
end
|
749
|
+
|
750
|
+
class ListResolverEndpointsRequest
|
751
|
+
attr_accessor max_results: ::Integer
|
752
|
+
attr_accessor next_token: ::String
|
753
|
+
attr_accessor filters: ::Array[Types::Filter]
|
754
|
+
SENSITIVE: []
|
755
|
+
end
|
756
|
+
|
757
|
+
class ListResolverEndpointsResponse
|
758
|
+
attr_accessor next_token: ::String
|
759
|
+
attr_accessor max_results: ::Integer
|
760
|
+
attr_accessor resolver_endpoints: ::Array[Types::ResolverEndpoint]
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class ListResolverQueryLogConfigAssociationsRequest
|
765
|
+
attr_accessor max_results: ::Integer
|
766
|
+
attr_accessor next_token: ::String
|
767
|
+
attr_accessor filters: ::Array[Types::Filter]
|
768
|
+
attr_accessor sort_by: ::String
|
769
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
770
|
+
SENSITIVE: []
|
771
|
+
end
|
772
|
+
|
773
|
+
class ListResolverQueryLogConfigAssociationsResponse
|
774
|
+
attr_accessor next_token: ::String
|
775
|
+
attr_accessor total_count: ::Integer
|
776
|
+
attr_accessor total_filtered_count: ::Integer
|
777
|
+
attr_accessor resolver_query_log_config_associations: ::Array[Types::ResolverQueryLogConfigAssociation]
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class ListResolverQueryLogConfigsRequest
|
782
|
+
attr_accessor max_results: ::Integer
|
783
|
+
attr_accessor next_token: ::String
|
784
|
+
attr_accessor filters: ::Array[Types::Filter]
|
785
|
+
attr_accessor sort_by: ::String
|
786
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class ListResolverQueryLogConfigsResponse
|
791
|
+
attr_accessor next_token: ::String
|
792
|
+
attr_accessor total_count: ::Integer
|
793
|
+
attr_accessor total_filtered_count: ::Integer
|
794
|
+
attr_accessor resolver_query_log_configs: ::Array[Types::ResolverQueryLogConfig]
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class ListResolverRuleAssociationsRequest
|
799
|
+
attr_accessor max_results: ::Integer
|
800
|
+
attr_accessor next_token: ::String
|
801
|
+
attr_accessor filters: ::Array[Types::Filter]
|
802
|
+
SENSITIVE: []
|
803
|
+
end
|
804
|
+
|
805
|
+
class ListResolverRuleAssociationsResponse
|
806
|
+
attr_accessor next_token: ::String
|
807
|
+
attr_accessor max_results: ::Integer
|
808
|
+
attr_accessor resolver_rule_associations: ::Array[Types::ResolverRuleAssociation]
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class ListResolverRulesRequest
|
813
|
+
attr_accessor max_results: ::Integer
|
814
|
+
attr_accessor next_token: ::String
|
815
|
+
attr_accessor filters: ::Array[Types::Filter]
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ListResolverRulesResponse
|
820
|
+
attr_accessor next_token: ::String
|
821
|
+
attr_accessor max_results: ::Integer
|
822
|
+
attr_accessor resolver_rules: ::Array[Types::ResolverRule]
|
823
|
+
SENSITIVE: []
|
824
|
+
end
|
825
|
+
|
826
|
+
class ListTagsForResourceRequest
|
827
|
+
attr_accessor resource_arn: ::String
|
828
|
+
attr_accessor max_results: ::Integer
|
829
|
+
attr_accessor next_token: ::String
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class ListTagsForResourceResponse
|
834
|
+
attr_accessor tags: ::Array[Types::Tag]
|
835
|
+
attr_accessor next_token: ::String
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class OutpostResolver
|
840
|
+
attr_accessor arn: ::String
|
841
|
+
attr_accessor creation_time: ::String
|
842
|
+
attr_accessor modification_time: ::String
|
843
|
+
attr_accessor creator_request_id: ::String
|
844
|
+
attr_accessor id: ::String
|
845
|
+
attr_accessor instance_count: ::Integer
|
846
|
+
attr_accessor preferred_instance_type: ::String
|
847
|
+
attr_accessor name: ::String
|
848
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING" | "ACTION_NEEDED" | "FAILED_CREATION" | "FAILED_DELETION")
|
849
|
+
attr_accessor status_message: ::String
|
850
|
+
attr_accessor outpost_arn: ::String
|
851
|
+
SENSITIVE: []
|
852
|
+
end
|
853
|
+
|
854
|
+
class PutFirewallRuleGroupPolicyRequest
|
855
|
+
attr_accessor arn: ::String
|
856
|
+
attr_accessor firewall_rule_group_policy: ::String
|
857
|
+
SENSITIVE: []
|
858
|
+
end
|
859
|
+
|
860
|
+
class PutFirewallRuleGroupPolicyResponse
|
861
|
+
attr_accessor return_value: bool
|
862
|
+
SENSITIVE: []
|
863
|
+
end
|
864
|
+
|
865
|
+
class PutResolverQueryLogConfigPolicyRequest
|
866
|
+
attr_accessor arn: ::String
|
867
|
+
attr_accessor resolver_query_log_config_policy: ::String
|
868
|
+
SENSITIVE: []
|
869
|
+
end
|
870
|
+
|
871
|
+
class PutResolverQueryLogConfigPolicyResponse
|
872
|
+
attr_accessor return_value: bool
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class PutResolverRulePolicyRequest
|
877
|
+
attr_accessor arn: ::String
|
878
|
+
attr_accessor resolver_rule_policy: ::String
|
879
|
+
SENSITIVE: []
|
880
|
+
end
|
881
|
+
|
882
|
+
class PutResolverRulePolicyResponse
|
883
|
+
attr_accessor return_value: bool
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class ResolverConfig
|
888
|
+
attr_accessor id: ::String
|
889
|
+
attr_accessor resource_id: ::String
|
890
|
+
attr_accessor owner_id: ::String
|
891
|
+
attr_accessor autodefined_reverse: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING" | "USE_LOCAL_RESOURCE_SETTING")
|
892
|
+
SENSITIVE: []
|
893
|
+
end
|
894
|
+
|
895
|
+
class ResolverDnssecConfig
|
896
|
+
attr_accessor id: ::String
|
897
|
+
attr_accessor owner_id: ::String
|
898
|
+
attr_accessor resource_id: ::String
|
899
|
+
attr_accessor validation_status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING" | "USE_LOCAL_RESOURCE_SETTING")
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class ResolverEndpoint
|
904
|
+
attr_accessor id: ::String
|
905
|
+
attr_accessor creator_request_id: ::String
|
906
|
+
attr_accessor arn: ::String
|
907
|
+
attr_accessor name: ::String
|
908
|
+
attr_accessor security_group_ids: ::Array[::String]
|
909
|
+
attr_accessor direction: ("INBOUND" | "OUTBOUND")
|
910
|
+
attr_accessor ip_address_count: ::Integer
|
911
|
+
attr_accessor host_vpc_id: ::String
|
912
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "AUTO_RECOVERING" | "ACTION_NEEDED" | "DELETING")
|
913
|
+
attr_accessor status_message: ::String
|
914
|
+
attr_accessor creation_time: ::String
|
915
|
+
attr_accessor modification_time: ::String
|
916
|
+
attr_accessor outpost_arn: ::String
|
917
|
+
attr_accessor preferred_instance_type: ::String
|
918
|
+
attr_accessor resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK")
|
919
|
+
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class ResolverQueryLogConfig
|
924
|
+
attr_accessor id: ::String
|
925
|
+
attr_accessor owner_id: ::String
|
926
|
+
attr_accessor status: ("CREATING" | "CREATED" | "DELETING" | "FAILED")
|
927
|
+
attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
|
928
|
+
attr_accessor association_count: ::Integer
|
929
|
+
attr_accessor arn: ::String
|
930
|
+
attr_accessor name: ::String
|
931
|
+
attr_accessor destination_arn: ::String
|
932
|
+
attr_accessor creator_request_id: ::String
|
933
|
+
attr_accessor creation_time: ::String
|
934
|
+
SENSITIVE: []
|
935
|
+
end
|
936
|
+
|
937
|
+
class ResolverQueryLogConfigAssociation
|
938
|
+
attr_accessor id: ::String
|
939
|
+
attr_accessor resolver_query_log_config_id: ::String
|
940
|
+
attr_accessor resource_id: ::String
|
941
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "ACTION_NEEDED" | "DELETING" | "FAILED")
|
942
|
+
attr_accessor error: ("NONE" | "DESTINATION_NOT_FOUND" | "ACCESS_DENIED" | "INTERNAL_SERVICE_ERROR")
|
943
|
+
attr_accessor error_message: ::String
|
944
|
+
attr_accessor creation_time: ::String
|
945
|
+
SENSITIVE: []
|
946
|
+
end
|
947
|
+
|
948
|
+
class ResolverRule
|
949
|
+
attr_accessor id: ::String
|
950
|
+
attr_accessor creator_request_id: ::String
|
951
|
+
attr_accessor arn: ::String
|
952
|
+
attr_accessor domain_name: ::String
|
953
|
+
attr_accessor status: ("COMPLETE" | "DELETING" | "UPDATING" | "FAILED")
|
954
|
+
attr_accessor status_message: ::String
|
955
|
+
attr_accessor rule_type: ("FORWARD" | "SYSTEM" | "RECURSIVE")
|
956
|
+
attr_accessor name: ::String
|
957
|
+
attr_accessor target_ips: ::Array[Types::TargetAddress]
|
958
|
+
attr_accessor resolver_endpoint_id: ::String
|
959
|
+
attr_accessor owner_id: ::String
|
960
|
+
attr_accessor share_status: ("NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME")
|
961
|
+
attr_accessor creation_time: ::String
|
962
|
+
attr_accessor modification_time: ::String
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class ResolverRuleAssociation
|
967
|
+
attr_accessor id: ::String
|
968
|
+
attr_accessor resolver_rule_id: ::String
|
969
|
+
attr_accessor name: ::String
|
970
|
+
attr_accessor vpc_id: ::String
|
971
|
+
attr_accessor status: ("CREATING" | "COMPLETE" | "DELETING" | "FAILED" | "OVERRIDDEN")
|
972
|
+
attr_accessor status_message: ::String
|
973
|
+
SENSITIVE: []
|
974
|
+
end
|
975
|
+
|
976
|
+
class ResolverRuleConfig
|
977
|
+
attr_accessor name: ::String
|
978
|
+
attr_accessor target_ips: ::Array[Types::TargetAddress]
|
979
|
+
attr_accessor resolver_endpoint_id: ::String
|
980
|
+
SENSITIVE: []
|
981
|
+
end
|
982
|
+
|
983
|
+
class ResourceExistsException
|
984
|
+
attr_accessor message: ::String
|
985
|
+
attr_accessor resource_type: ::String
|
986
|
+
SENSITIVE: []
|
987
|
+
end
|
988
|
+
|
989
|
+
class ResourceInUseException
|
990
|
+
attr_accessor message: ::String
|
991
|
+
attr_accessor resource_type: ::String
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class ResourceNotFoundException
|
996
|
+
attr_accessor message: ::String
|
997
|
+
attr_accessor resource_type: ::String
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class ResourceUnavailableException
|
1002
|
+
attr_accessor message: ::String
|
1003
|
+
attr_accessor resource_type: ::String
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class ServiceQuotaExceededException
|
1008
|
+
attr_accessor message: ::String
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class Tag
|
1013
|
+
attr_accessor key: ::String
|
1014
|
+
attr_accessor value: ::String
|
1015
|
+
SENSITIVE: []
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class TagResourceRequest
|
1019
|
+
attr_accessor resource_arn: ::String
|
1020
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1021
|
+
SENSITIVE: []
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class TargetAddress
|
1028
|
+
attr_accessor ip: ::String
|
1029
|
+
attr_accessor port: ::Integer
|
1030
|
+
attr_accessor ipv_6: ::String
|
1031
|
+
attr_accessor protocol: ("DoH" | "Do53" | "DoH-FIPS")
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class ThrottlingException
|
1036
|
+
attr_accessor message: ::String
|
1037
|
+
SENSITIVE: []
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class UnknownResourceException
|
1041
|
+
attr_accessor message: ::String
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class UntagResourceRequest
|
1046
|
+
attr_accessor resource_arn: ::String
|
1047
|
+
attr_accessor tag_keys: ::Array[::String]
|
1048
|
+
SENSITIVE: []
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class UpdateFirewallConfigRequest
|
1055
|
+
attr_accessor resource_id: ::String
|
1056
|
+
attr_accessor firewall_fail_open: ("ENABLED" | "DISABLED" | "USE_LOCAL_RESOURCE_SETTING")
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class UpdateFirewallConfigResponse
|
1061
|
+
attr_accessor firewall_config: Types::FirewallConfig
|
1062
|
+
SENSITIVE: []
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
class UpdateFirewallDomainsRequest
|
1066
|
+
attr_accessor firewall_domain_list_id: ::String
|
1067
|
+
attr_accessor operation: ("ADD" | "REMOVE" | "REPLACE")
|
1068
|
+
attr_accessor domains: ::Array[::String]
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class UpdateFirewallDomainsResponse
|
1073
|
+
attr_accessor id: ::String
|
1074
|
+
attr_accessor name: ::String
|
1075
|
+
attr_accessor status: ("COMPLETE" | "COMPLETE_IMPORT_FAILED" | "IMPORTING" | "DELETING" | "UPDATING")
|
1076
|
+
attr_accessor status_message: ::String
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class UpdateFirewallRuleGroupAssociationRequest
|
1081
|
+
attr_accessor firewall_rule_group_association_id: ::String
|
1082
|
+
attr_accessor priority: ::Integer
|
1083
|
+
attr_accessor mutation_protection: ("ENABLED" | "DISABLED")
|
1084
|
+
attr_accessor name: ::String
|
1085
|
+
SENSITIVE: []
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class UpdateFirewallRuleGroupAssociationResponse
|
1089
|
+
attr_accessor firewall_rule_group_association: Types::FirewallRuleGroupAssociation
|
1090
|
+
SENSITIVE: []
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class UpdateFirewallRuleRequest
|
1094
|
+
attr_accessor firewall_rule_group_id: ::String
|
1095
|
+
attr_accessor firewall_domain_list_id: ::String
|
1096
|
+
attr_accessor priority: ::Integer
|
1097
|
+
attr_accessor action: ("ALLOW" | "BLOCK" | "ALERT")
|
1098
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
1099
|
+
attr_accessor block_override_domain: ::String
|
1100
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
1101
|
+
attr_accessor block_override_ttl: ::Integer
|
1102
|
+
attr_accessor name: ::String
|
1103
|
+
attr_accessor qtype: ::String
|
1104
|
+
SENSITIVE: []
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class UpdateFirewallRuleResponse
|
1108
|
+
attr_accessor firewall_rule: Types::FirewallRule
|
1109
|
+
SENSITIVE: []
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
class UpdateIpAddress
|
1113
|
+
attr_accessor ip_id: ::String
|
1114
|
+
attr_accessor ipv_6: ::String
|
1115
|
+
SENSITIVE: []
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class UpdateOutpostResolverRequest
|
1119
|
+
attr_accessor id: ::String
|
1120
|
+
attr_accessor name: ::String
|
1121
|
+
attr_accessor instance_count: ::Integer
|
1122
|
+
attr_accessor preferred_instance_type: ::String
|
1123
|
+
SENSITIVE: []
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class UpdateOutpostResolverResponse
|
1127
|
+
attr_accessor outpost_resolver: Types::OutpostResolver
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class UpdateResolverConfigRequest
|
1132
|
+
attr_accessor resource_id: ::String
|
1133
|
+
attr_accessor autodefined_reverse_flag: ("ENABLE" | "DISABLE" | "USE_LOCAL_RESOURCE_SETTING")
|
1134
|
+
SENSITIVE: []
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class UpdateResolverConfigResponse
|
1138
|
+
attr_accessor resolver_config: Types::ResolverConfig
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class UpdateResolverDnssecConfigRequest
|
1143
|
+
attr_accessor resource_id: ::String
|
1144
|
+
attr_accessor validation: ("ENABLE" | "DISABLE" | "USE_LOCAL_RESOURCE_SETTING")
|
1145
|
+
SENSITIVE: []
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class UpdateResolverDnssecConfigResponse
|
1149
|
+
attr_accessor resolver_dnssec_config: Types::ResolverDnssecConfig
|
1150
|
+
SENSITIVE: []
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
class UpdateResolverEndpointRequest
|
1154
|
+
attr_accessor resolver_endpoint_id: ::String
|
1155
|
+
attr_accessor name: ::String
|
1156
|
+
attr_accessor resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK")
|
1157
|
+
attr_accessor update_ip_addresses: ::Array[Types::UpdateIpAddress]
|
1158
|
+
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
1159
|
+
SENSITIVE: []
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
class UpdateResolverEndpointResponse
|
1163
|
+
attr_accessor resolver_endpoint: Types::ResolverEndpoint
|
1164
|
+
SENSITIVE: []
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class UpdateResolverRuleRequest
|
1168
|
+
attr_accessor resolver_rule_id: ::String
|
1169
|
+
attr_accessor config: Types::ResolverRuleConfig
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class UpdateResolverRuleResponse
|
1174
|
+
attr_accessor resolver_rule: Types::ResolverRule
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class ValidationException
|
1179
|
+
attr_accessor message: ::String
|
1180
|
+
SENSITIVE: []
|
1181
|
+
end
|
1182
|
+
end
|
1183
|
+
end
|