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
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,1147 @@
|
|
|
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::Route53GlobalResolver
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AccessSourcesItem
|
|
17
|
+
attr_accessor arn: ::String
|
|
18
|
+
attr_accessor cidr: ::String
|
|
19
|
+
attr_accessor created_at: ::Time
|
|
20
|
+
attr_accessor id: ::String
|
|
21
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
22
|
+
attr_accessor name: ::String
|
|
23
|
+
attr_accessor dns_view_id: ::String
|
|
24
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
25
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
26
|
+
attr_accessor updated_at: ::Time
|
|
27
|
+
SENSITIVE: []
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
class AccessTokenItem
|
|
31
|
+
attr_accessor id: ::String
|
|
32
|
+
attr_accessor arn: ::String
|
|
33
|
+
attr_accessor created_at: ::Time
|
|
34
|
+
attr_accessor dns_view_id: ::String
|
|
35
|
+
attr_accessor expires_at: ::Time
|
|
36
|
+
attr_accessor global_resolver_id: ::String
|
|
37
|
+
attr_accessor name: ::String
|
|
38
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
39
|
+
attr_accessor updated_at: ::Time
|
|
40
|
+
SENSITIVE: []
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
class AssociateHostedZoneInput
|
|
44
|
+
attr_accessor hosted_zone_id: ::String
|
|
45
|
+
attr_accessor resource_arn: ::String
|
|
46
|
+
attr_accessor name: ::String
|
|
47
|
+
SENSITIVE: []
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
class AssociateHostedZoneOutput
|
|
51
|
+
attr_accessor id: ::String
|
|
52
|
+
attr_accessor resource_arn: ::String
|
|
53
|
+
attr_accessor hosted_zone_id: ::String
|
|
54
|
+
attr_accessor hosted_zone_name: ::String
|
|
55
|
+
attr_accessor name: ::String
|
|
56
|
+
attr_accessor created_at: ::Time
|
|
57
|
+
attr_accessor updated_at: ::Time
|
|
58
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
59
|
+
SENSITIVE: []
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class BatchCreateFirewallRuleInput
|
|
63
|
+
attr_accessor firewall_rules: ::Array[Types::BatchCreateFirewallRuleInputItem]
|
|
64
|
+
SENSITIVE: []
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class BatchCreateFirewallRuleInputItem
|
|
68
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
69
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
70
|
+
attr_accessor block_override_domain: ::String
|
|
71
|
+
attr_accessor block_override_ttl: ::Integer
|
|
72
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
73
|
+
attr_accessor client_token: ::String
|
|
74
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
75
|
+
attr_accessor description: ::String
|
|
76
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
77
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
78
|
+
attr_accessor name: ::String
|
|
79
|
+
attr_accessor priority: ::Integer
|
|
80
|
+
attr_accessor dns_view_id: ::String
|
|
81
|
+
attr_accessor q_type: ::String
|
|
82
|
+
SENSITIVE: []
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
class BatchCreateFirewallRuleOutput
|
|
86
|
+
attr_accessor failures: ::Array[Types::BatchCreateFirewallRuleOutputItem]
|
|
87
|
+
attr_accessor successes: ::Array[Types::BatchCreateFirewallRuleOutputItem]
|
|
88
|
+
SENSITIVE: []
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
class BatchCreateFirewallRuleOutputItem
|
|
92
|
+
attr_accessor firewall_rule: Types::BatchCreateFirewallRuleResult
|
|
93
|
+
attr_accessor code: ::Integer
|
|
94
|
+
attr_accessor message: ::String
|
|
95
|
+
SENSITIVE: []
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
class BatchCreateFirewallRuleResult
|
|
99
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
100
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
101
|
+
attr_accessor block_override_domain: ::String
|
|
102
|
+
attr_accessor block_override_ttl: ::Integer
|
|
103
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
104
|
+
attr_accessor client_token: ::String
|
|
105
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
106
|
+
attr_accessor created_at: ::Time
|
|
107
|
+
attr_accessor description: ::String
|
|
108
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
109
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
110
|
+
attr_accessor id: ::String
|
|
111
|
+
attr_accessor managed_domain_list_name: ::String
|
|
112
|
+
attr_accessor name: ::String
|
|
113
|
+
attr_accessor priority: ::Integer
|
|
114
|
+
attr_accessor dns_view_id: ::String
|
|
115
|
+
attr_accessor query_type: ::String
|
|
116
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
117
|
+
attr_accessor updated_at: ::Time
|
|
118
|
+
SENSITIVE: []
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
class BatchDeleteFirewallRuleInput
|
|
122
|
+
attr_accessor firewall_rules: ::Array[Types::BatchDeleteFirewallRuleInputItem]
|
|
123
|
+
SENSITIVE: []
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
class BatchDeleteFirewallRuleInputItem
|
|
127
|
+
attr_accessor firewall_rule_id: ::String
|
|
128
|
+
SENSITIVE: []
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
class BatchDeleteFirewallRuleOutput
|
|
132
|
+
attr_accessor failures: ::Array[Types::BatchDeleteFirewallRuleOutputItem]
|
|
133
|
+
attr_accessor successes: ::Array[Types::BatchDeleteFirewallRuleOutputItem]
|
|
134
|
+
SENSITIVE: []
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
class BatchDeleteFirewallRuleOutputItem
|
|
138
|
+
attr_accessor firewall_rule: Types::BatchDeleteFirewallRuleResult
|
|
139
|
+
attr_accessor code: ::Integer
|
|
140
|
+
attr_accessor message: ::String
|
|
141
|
+
SENSITIVE: []
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
class BatchDeleteFirewallRuleResult
|
|
145
|
+
attr_accessor client_token: ::String
|
|
146
|
+
attr_accessor id: ::String
|
|
147
|
+
attr_accessor name: ::String
|
|
148
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
149
|
+
SENSITIVE: []
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
class BatchUpdateFirewallRuleInput
|
|
153
|
+
attr_accessor firewall_rules: ::Array[Types::BatchUpdateFirewallRuleInputItem]
|
|
154
|
+
SENSITIVE: []
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
class BatchUpdateFirewallRuleInputItem
|
|
158
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
159
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
160
|
+
attr_accessor block_override_domain: ::String
|
|
161
|
+
attr_accessor block_override_ttl: ::Integer
|
|
162
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
163
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
164
|
+
attr_accessor description: ::String
|
|
165
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
166
|
+
attr_accessor firewall_rule_id: ::String
|
|
167
|
+
attr_accessor name: ::String
|
|
168
|
+
attr_accessor priority: ::Integer
|
|
169
|
+
SENSITIVE: []
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
class BatchUpdateFirewallRuleOutput
|
|
173
|
+
attr_accessor failures: ::Array[Types::BatchUpdateFirewallRuleOutputItem]
|
|
174
|
+
attr_accessor successes: ::Array[Types::BatchUpdateFirewallRuleOutputItem]
|
|
175
|
+
SENSITIVE: []
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
class BatchUpdateFirewallRuleOutputItem
|
|
179
|
+
attr_accessor firewall_rule: Types::BatchUpdateFirewallRuleResult
|
|
180
|
+
attr_accessor code: ::Integer
|
|
181
|
+
attr_accessor message: ::String
|
|
182
|
+
SENSITIVE: []
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
class BatchUpdateFirewallRuleResult
|
|
186
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
187
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
188
|
+
attr_accessor block_override_domain: ::String
|
|
189
|
+
attr_accessor block_override_ttl: ::Integer
|
|
190
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
191
|
+
attr_accessor client_token: ::String
|
|
192
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
193
|
+
attr_accessor created_at: ::Time
|
|
194
|
+
attr_accessor description: ::String
|
|
195
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
196
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
197
|
+
attr_accessor id: ::String
|
|
198
|
+
attr_accessor name: ::String
|
|
199
|
+
attr_accessor priority: ::Integer
|
|
200
|
+
attr_accessor dns_view_id: ::String
|
|
201
|
+
attr_accessor query_type: ::String
|
|
202
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
203
|
+
attr_accessor updated_at: ::Time
|
|
204
|
+
SENSITIVE: []
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
class ConflictException
|
|
208
|
+
attr_accessor message: ::String
|
|
209
|
+
attr_accessor resource_id: ::String
|
|
210
|
+
attr_accessor resource_type: ::String
|
|
211
|
+
SENSITIVE: []
|
|
212
|
+
end
|
|
213
|
+
|
|
214
|
+
class CreateAccessSourceInput
|
|
215
|
+
attr_accessor cidr: ::String
|
|
216
|
+
attr_accessor client_token: ::String
|
|
217
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
218
|
+
attr_accessor name: ::String
|
|
219
|
+
attr_accessor dns_view_id: ::String
|
|
220
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
221
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
222
|
+
SENSITIVE: []
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
class CreateAccessSourceOutput
|
|
226
|
+
attr_accessor arn: ::String
|
|
227
|
+
attr_accessor cidr: ::String
|
|
228
|
+
attr_accessor created_at: ::Time
|
|
229
|
+
attr_accessor id: ::String
|
|
230
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
231
|
+
attr_accessor name: ::String
|
|
232
|
+
attr_accessor dns_view_id: ::String
|
|
233
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
234
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
235
|
+
attr_accessor updated_at: ::Time
|
|
236
|
+
SENSITIVE: []
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
class CreateAccessTokenInput
|
|
240
|
+
attr_accessor client_token: ::String
|
|
241
|
+
attr_accessor dns_view_id: ::String
|
|
242
|
+
attr_accessor expires_at: ::Time
|
|
243
|
+
attr_accessor name: ::String
|
|
244
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
245
|
+
SENSITIVE: []
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
class CreateAccessTokenOutput
|
|
249
|
+
attr_accessor id: ::String
|
|
250
|
+
attr_accessor arn: ::String
|
|
251
|
+
attr_accessor client_token: ::String
|
|
252
|
+
attr_accessor created_at: ::Time
|
|
253
|
+
attr_accessor dns_view_id: ::String
|
|
254
|
+
attr_accessor expires_at: ::Time
|
|
255
|
+
attr_accessor name: ::String
|
|
256
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
257
|
+
attr_accessor value: ::String
|
|
258
|
+
SENSITIVE: [:value]
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
class CreateDNSViewInput
|
|
262
|
+
attr_accessor global_resolver_id: ::String
|
|
263
|
+
attr_accessor client_token: ::String
|
|
264
|
+
attr_accessor name: ::String
|
|
265
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
266
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
267
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
268
|
+
attr_accessor description: ::String
|
|
269
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
270
|
+
SENSITIVE: []
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
class CreateDNSViewOutput
|
|
274
|
+
attr_accessor id: ::String
|
|
275
|
+
attr_accessor arn: ::String
|
|
276
|
+
attr_accessor client_token: ::String
|
|
277
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
278
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
279
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
280
|
+
attr_accessor name: ::String
|
|
281
|
+
attr_accessor description: ::String
|
|
282
|
+
attr_accessor global_resolver_id: ::String
|
|
283
|
+
attr_accessor created_at: ::Time
|
|
284
|
+
attr_accessor updated_at: ::Time
|
|
285
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
286
|
+
SENSITIVE: []
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
class CreateFirewallDomainListInput
|
|
290
|
+
attr_accessor client_token: ::String
|
|
291
|
+
attr_accessor global_resolver_id: ::String
|
|
292
|
+
attr_accessor description: ::String
|
|
293
|
+
attr_accessor name: ::String
|
|
294
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
295
|
+
SENSITIVE: []
|
|
296
|
+
end
|
|
297
|
+
|
|
298
|
+
class CreateFirewallDomainListOutput
|
|
299
|
+
attr_accessor arn: ::String
|
|
300
|
+
attr_accessor global_resolver_id: ::String
|
|
301
|
+
attr_accessor created_at: ::Time
|
|
302
|
+
attr_accessor description: ::String
|
|
303
|
+
attr_accessor domain_count: ::Integer
|
|
304
|
+
attr_accessor id: ::String
|
|
305
|
+
attr_accessor name: ::String
|
|
306
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
307
|
+
attr_accessor updated_at: ::Time
|
|
308
|
+
SENSITIVE: []
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
class CreateFirewallRuleInput
|
|
312
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
313
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
314
|
+
attr_accessor block_override_domain: ::String
|
|
315
|
+
attr_accessor block_override_ttl: ::Integer
|
|
316
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
317
|
+
attr_accessor client_token: ::String
|
|
318
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
319
|
+
attr_accessor description: ::String
|
|
320
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
321
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
322
|
+
attr_accessor name: ::String
|
|
323
|
+
attr_accessor priority: ::Integer
|
|
324
|
+
attr_accessor dns_view_id: ::String
|
|
325
|
+
attr_accessor q_type: ::String
|
|
326
|
+
SENSITIVE: []
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
class CreateFirewallRuleOutput
|
|
330
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
331
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
332
|
+
attr_accessor block_override_domain: ::String
|
|
333
|
+
attr_accessor block_override_ttl: ::Integer
|
|
334
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
335
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
336
|
+
attr_accessor created_at: ::Time
|
|
337
|
+
attr_accessor description: ::String
|
|
338
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
339
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
340
|
+
attr_accessor id: ::String
|
|
341
|
+
attr_accessor name: ::String
|
|
342
|
+
attr_accessor priority: ::Integer
|
|
343
|
+
attr_accessor dns_view_id: ::String
|
|
344
|
+
attr_accessor query_type: ::String
|
|
345
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
346
|
+
attr_accessor updated_at: ::Time
|
|
347
|
+
SENSITIVE: []
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
class CreateGlobalResolverInput
|
|
351
|
+
attr_accessor client_token: ::String
|
|
352
|
+
attr_accessor description: ::String
|
|
353
|
+
attr_accessor name: ::String
|
|
354
|
+
attr_accessor observability_region: ::String
|
|
355
|
+
attr_accessor regions: ::Array[::String]
|
|
356
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
357
|
+
SENSITIVE: []
|
|
358
|
+
end
|
|
359
|
+
|
|
360
|
+
class CreateGlobalResolverOutput
|
|
361
|
+
attr_accessor id: ::String
|
|
362
|
+
attr_accessor arn: ::String
|
|
363
|
+
attr_accessor client_token: ::String
|
|
364
|
+
attr_accessor created_at: ::Time
|
|
365
|
+
attr_accessor description: ::String
|
|
366
|
+
attr_accessor dns_name: ::String
|
|
367
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
|
368
|
+
attr_accessor name: ::String
|
|
369
|
+
attr_accessor observability_region: ::String
|
|
370
|
+
attr_accessor regions: ::Array[::String]
|
|
371
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
372
|
+
attr_accessor updated_at: ::Time
|
|
373
|
+
SENSITIVE: []
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
class DNSViewSummary
|
|
377
|
+
attr_accessor id: ::String
|
|
378
|
+
attr_accessor arn: ::String
|
|
379
|
+
attr_accessor client_token: ::String
|
|
380
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
381
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
382
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
383
|
+
attr_accessor name: ::String
|
|
384
|
+
attr_accessor description: ::String
|
|
385
|
+
attr_accessor global_resolver_id: ::String
|
|
386
|
+
attr_accessor created_at: ::Time
|
|
387
|
+
attr_accessor updated_at: ::Time
|
|
388
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
389
|
+
SENSITIVE: []
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class DeleteAccessSourceInput
|
|
393
|
+
attr_accessor access_source_id: ::String
|
|
394
|
+
SENSITIVE: []
|
|
395
|
+
end
|
|
396
|
+
|
|
397
|
+
class DeleteAccessSourceOutput
|
|
398
|
+
attr_accessor arn: ::String
|
|
399
|
+
attr_accessor cidr: ::String
|
|
400
|
+
attr_accessor created_at: ::Time
|
|
401
|
+
attr_accessor id: ::String
|
|
402
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
403
|
+
attr_accessor name: ::String
|
|
404
|
+
attr_accessor dns_view_id: ::String
|
|
405
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
406
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
407
|
+
attr_accessor updated_at: ::Time
|
|
408
|
+
SENSITIVE: []
|
|
409
|
+
end
|
|
410
|
+
|
|
411
|
+
class DeleteAccessTokenInput
|
|
412
|
+
attr_accessor access_token_id: ::String
|
|
413
|
+
SENSITIVE: []
|
|
414
|
+
end
|
|
415
|
+
|
|
416
|
+
class DeleteAccessTokenOutput
|
|
417
|
+
attr_accessor id: ::String
|
|
418
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
419
|
+
attr_accessor deleted_at: ::Time
|
|
420
|
+
SENSITIVE: []
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
class DeleteDNSViewInput
|
|
424
|
+
attr_accessor dns_view_id: ::String
|
|
425
|
+
SENSITIVE: []
|
|
426
|
+
end
|
|
427
|
+
|
|
428
|
+
class DeleteDNSViewOutput
|
|
429
|
+
attr_accessor id: ::String
|
|
430
|
+
attr_accessor arn: ::String
|
|
431
|
+
attr_accessor client_token: ::String
|
|
432
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
433
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
434
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
435
|
+
attr_accessor name: ::String
|
|
436
|
+
attr_accessor description: ::String
|
|
437
|
+
attr_accessor global_resolver_id: ::String
|
|
438
|
+
attr_accessor created_at: ::Time
|
|
439
|
+
attr_accessor updated_at: ::Time
|
|
440
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
441
|
+
SENSITIVE: []
|
|
442
|
+
end
|
|
443
|
+
|
|
444
|
+
class DeleteFirewallDomainListInput
|
|
445
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
446
|
+
SENSITIVE: []
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
class DeleteFirewallDomainListOutput
|
|
450
|
+
attr_accessor arn: ::String
|
|
451
|
+
attr_accessor id: ::String
|
|
452
|
+
attr_accessor name: ::String
|
|
453
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
454
|
+
SENSITIVE: []
|
|
455
|
+
end
|
|
456
|
+
|
|
457
|
+
class DeleteFirewallRuleInput
|
|
458
|
+
attr_accessor firewall_rule_id: ::String
|
|
459
|
+
SENSITIVE: []
|
|
460
|
+
end
|
|
461
|
+
|
|
462
|
+
class DeleteFirewallRuleOutput
|
|
463
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
464
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
465
|
+
attr_accessor block_override_domain: ::String
|
|
466
|
+
attr_accessor block_override_ttl: ::Integer
|
|
467
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
468
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
469
|
+
attr_accessor created_at: ::Time
|
|
470
|
+
attr_accessor description: ::String
|
|
471
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
472
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
473
|
+
attr_accessor id: ::String
|
|
474
|
+
attr_accessor name: ::String
|
|
475
|
+
attr_accessor priority: ::Integer
|
|
476
|
+
attr_accessor dns_view_id: ::String
|
|
477
|
+
attr_accessor query_type: ::String
|
|
478
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
479
|
+
attr_accessor updated_at: ::Time
|
|
480
|
+
SENSITIVE: []
|
|
481
|
+
end
|
|
482
|
+
|
|
483
|
+
class DeleteGlobalResolverInput
|
|
484
|
+
attr_accessor global_resolver_id: ::String
|
|
485
|
+
SENSITIVE: []
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
class DeleteGlobalResolverOutput
|
|
489
|
+
attr_accessor id: ::String
|
|
490
|
+
attr_accessor arn: ::String
|
|
491
|
+
attr_accessor client_token: ::String
|
|
492
|
+
attr_accessor dns_name: ::String
|
|
493
|
+
attr_accessor observability_region: ::String
|
|
494
|
+
attr_accessor name: ::String
|
|
495
|
+
attr_accessor description: ::String
|
|
496
|
+
attr_accessor regions: ::Array[::String]
|
|
497
|
+
attr_accessor created_at: ::Time
|
|
498
|
+
attr_accessor updated_at: ::Time
|
|
499
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
500
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
|
501
|
+
SENSITIVE: []
|
|
502
|
+
end
|
|
503
|
+
|
|
504
|
+
class DisableDNSViewInput
|
|
505
|
+
attr_accessor dns_view_id: ::String
|
|
506
|
+
SENSITIVE: []
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
class DisableDNSViewOutput
|
|
510
|
+
attr_accessor id: ::String
|
|
511
|
+
attr_accessor arn: ::String
|
|
512
|
+
attr_accessor client_token: ::String
|
|
513
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
514
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
515
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
516
|
+
attr_accessor name: ::String
|
|
517
|
+
attr_accessor description: ::String
|
|
518
|
+
attr_accessor global_resolver_id: ::String
|
|
519
|
+
attr_accessor created_at: ::Time
|
|
520
|
+
attr_accessor updated_at: ::Time
|
|
521
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
522
|
+
SENSITIVE: []
|
|
523
|
+
end
|
|
524
|
+
|
|
525
|
+
class DisassociateHostedZoneInput
|
|
526
|
+
attr_accessor hosted_zone_id: ::String
|
|
527
|
+
attr_accessor resource_arn: ::String
|
|
528
|
+
SENSITIVE: []
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
class DisassociateHostedZoneOutput
|
|
532
|
+
attr_accessor id: ::String
|
|
533
|
+
attr_accessor resource_arn: ::String
|
|
534
|
+
attr_accessor hosted_zone_id: ::String
|
|
535
|
+
attr_accessor hosted_zone_name: ::String
|
|
536
|
+
attr_accessor name: ::String
|
|
537
|
+
attr_accessor created_at: ::Time
|
|
538
|
+
attr_accessor updated_at: ::Time
|
|
539
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
540
|
+
SENSITIVE: []
|
|
541
|
+
end
|
|
542
|
+
|
|
543
|
+
class EnableDNSViewInput
|
|
544
|
+
attr_accessor dns_view_id: ::String
|
|
545
|
+
SENSITIVE: []
|
|
546
|
+
end
|
|
547
|
+
|
|
548
|
+
class EnableDNSViewOutput
|
|
549
|
+
attr_accessor id: ::String
|
|
550
|
+
attr_accessor arn: ::String
|
|
551
|
+
attr_accessor client_token: ::String
|
|
552
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
553
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
554
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
555
|
+
attr_accessor name: ::String
|
|
556
|
+
attr_accessor description: ::String
|
|
557
|
+
attr_accessor global_resolver_id: ::String
|
|
558
|
+
attr_accessor created_at: ::Time
|
|
559
|
+
attr_accessor updated_at: ::Time
|
|
560
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
561
|
+
SENSITIVE: []
|
|
562
|
+
end
|
|
563
|
+
|
|
564
|
+
class FirewallDomainListsItem
|
|
565
|
+
attr_accessor arn: ::String
|
|
566
|
+
attr_accessor global_resolver_id: ::String
|
|
567
|
+
attr_accessor created_at: ::Time
|
|
568
|
+
attr_accessor description: ::String
|
|
569
|
+
attr_accessor id: ::String
|
|
570
|
+
attr_accessor name: ::String
|
|
571
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
572
|
+
attr_accessor updated_at: ::Time
|
|
573
|
+
SENSITIVE: []
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
class FirewallRulesItem
|
|
577
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
578
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
579
|
+
attr_accessor block_override_domain: ::String
|
|
580
|
+
attr_accessor block_override_ttl: ::Integer
|
|
581
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
582
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
583
|
+
attr_accessor created_at: ::Time
|
|
584
|
+
attr_accessor description: ::String
|
|
585
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
586
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
587
|
+
attr_accessor id: ::String
|
|
588
|
+
attr_accessor name: ::String
|
|
589
|
+
attr_accessor priority: ::Integer
|
|
590
|
+
attr_accessor dns_view_id: ::String
|
|
591
|
+
attr_accessor query_type: ::String
|
|
592
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
593
|
+
attr_accessor updated_at: ::Time
|
|
594
|
+
SENSITIVE: []
|
|
595
|
+
end
|
|
596
|
+
|
|
597
|
+
class GetAccessSourceInput
|
|
598
|
+
attr_accessor access_source_id: ::String
|
|
599
|
+
SENSITIVE: []
|
|
600
|
+
end
|
|
601
|
+
|
|
602
|
+
class GetAccessSourceOutput
|
|
603
|
+
attr_accessor arn: ::String
|
|
604
|
+
attr_accessor cidr: ::String
|
|
605
|
+
attr_accessor created_at: ::Time
|
|
606
|
+
attr_accessor id: ::String
|
|
607
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
608
|
+
attr_accessor name: ::String
|
|
609
|
+
attr_accessor dns_view_id: ::String
|
|
610
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
611
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
612
|
+
attr_accessor updated_at: ::Time
|
|
613
|
+
SENSITIVE: []
|
|
614
|
+
end
|
|
615
|
+
|
|
616
|
+
class GetAccessTokenInput
|
|
617
|
+
attr_accessor access_token_id: ::String
|
|
618
|
+
SENSITIVE: []
|
|
619
|
+
end
|
|
620
|
+
|
|
621
|
+
class GetAccessTokenOutput
|
|
622
|
+
attr_accessor id: ::String
|
|
623
|
+
attr_accessor arn: ::String
|
|
624
|
+
attr_accessor client_token: ::String
|
|
625
|
+
attr_accessor created_at: ::Time
|
|
626
|
+
attr_accessor dns_view_id: ::String
|
|
627
|
+
attr_accessor expires_at: ::Time
|
|
628
|
+
attr_accessor global_resolver_id: ::String
|
|
629
|
+
attr_accessor name: ::String
|
|
630
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
631
|
+
attr_accessor updated_at: ::Time
|
|
632
|
+
attr_accessor value: ::String
|
|
633
|
+
SENSITIVE: [:value]
|
|
634
|
+
end
|
|
635
|
+
|
|
636
|
+
class GetDNSViewInput
|
|
637
|
+
attr_accessor dns_view_id: ::String
|
|
638
|
+
SENSITIVE: []
|
|
639
|
+
end
|
|
640
|
+
|
|
641
|
+
class GetDNSViewOutput
|
|
642
|
+
attr_accessor id: ::String
|
|
643
|
+
attr_accessor arn: ::String
|
|
644
|
+
attr_accessor client_token: ::String
|
|
645
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
646
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
647
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
648
|
+
attr_accessor name: ::String
|
|
649
|
+
attr_accessor description: ::String
|
|
650
|
+
attr_accessor global_resolver_id: ::String
|
|
651
|
+
attr_accessor created_at: ::Time
|
|
652
|
+
attr_accessor updated_at: ::Time
|
|
653
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
654
|
+
SENSITIVE: []
|
|
655
|
+
end
|
|
656
|
+
|
|
657
|
+
class GetFirewallDomainListInput
|
|
658
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
659
|
+
SENSITIVE: []
|
|
660
|
+
end
|
|
661
|
+
|
|
662
|
+
class GetFirewallDomainListOutput
|
|
663
|
+
attr_accessor arn: ::String
|
|
664
|
+
attr_accessor global_resolver_id: ::String
|
|
665
|
+
attr_accessor client_token: ::String
|
|
666
|
+
attr_accessor created_at: ::Time
|
|
667
|
+
attr_accessor description: ::String
|
|
668
|
+
attr_accessor domain_count: ::Integer
|
|
669
|
+
attr_accessor id: ::String
|
|
670
|
+
attr_accessor name: ::String
|
|
671
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
672
|
+
attr_accessor status_message: ::String
|
|
673
|
+
attr_accessor updated_at: ::Time
|
|
674
|
+
SENSITIVE: []
|
|
675
|
+
end
|
|
676
|
+
|
|
677
|
+
class GetFirewallRuleInput
|
|
678
|
+
attr_accessor firewall_rule_id: ::String
|
|
679
|
+
SENSITIVE: []
|
|
680
|
+
end
|
|
681
|
+
|
|
682
|
+
class GetFirewallRuleOutput
|
|
683
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
684
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
685
|
+
attr_accessor block_override_domain: ::String
|
|
686
|
+
attr_accessor block_override_ttl: ::Integer
|
|
687
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
688
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
689
|
+
attr_accessor created_at: ::Time
|
|
690
|
+
attr_accessor description: ::String
|
|
691
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
692
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
693
|
+
attr_accessor id: ::String
|
|
694
|
+
attr_accessor name: ::String
|
|
695
|
+
attr_accessor priority: ::Integer
|
|
696
|
+
attr_accessor dns_view_id: ::String
|
|
697
|
+
attr_accessor query_type: ::String
|
|
698
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
699
|
+
attr_accessor updated_at: ::Time
|
|
700
|
+
SENSITIVE: []
|
|
701
|
+
end
|
|
702
|
+
|
|
703
|
+
class GetGlobalResolverInput
|
|
704
|
+
attr_accessor global_resolver_id: ::String
|
|
705
|
+
SENSITIVE: []
|
|
706
|
+
end
|
|
707
|
+
|
|
708
|
+
class GetGlobalResolverOutput
|
|
709
|
+
attr_accessor id: ::String
|
|
710
|
+
attr_accessor arn: ::String
|
|
711
|
+
attr_accessor client_token: ::String
|
|
712
|
+
attr_accessor dns_name: ::String
|
|
713
|
+
attr_accessor observability_region: ::String
|
|
714
|
+
attr_accessor name: ::String
|
|
715
|
+
attr_accessor description: ::String
|
|
716
|
+
attr_accessor regions: ::Array[::String]
|
|
717
|
+
attr_accessor created_at: ::Time
|
|
718
|
+
attr_accessor updated_at: ::Time
|
|
719
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
720
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
|
721
|
+
SENSITIVE: []
|
|
722
|
+
end
|
|
723
|
+
|
|
724
|
+
class GetHostedZoneAssociationInput
|
|
725
|
+
attr_accessor hosted_zone_association_id: ::String
|
|
726
|
+
SENSITIVE: []
|
|
727
|
+
end
|
|
728
|
+
|
|
729
|
+
class GetHostedZoneAssociationOutput
|
|
730
|
+
attr_accessor id: ::String
|
|
731
|
+
attr_accessor resource_arn: ::String
|
|
732
|
+
attr_accessor hosted_zone_id: ::String
|
|
733
|
+
attr_accessor hosted_zone_name: ::String
|
|
734
|
+
attr_accessor name: ::String
|
|
735
|
+
attr_accessor created_at: ::Time
|
|
736
|
+
attr_accessor updated_at: ::Time
|
|
737
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
738
|
+
SENSITIVE: []
|
|
739
|
+
end
|
|
740
|
+
|
|
741
|
+
class GetManagedFirewallDomainListInput
|
|
742
|
+
attr_accessor managed_firewall_domain_list_id: ::String
|
|
743
|
+
SENSITIVE: []
|
|
744
|
+
end
|
|
745
|
+
|
|
746
|
+
class GetManagedFirewallDomainListOutput
|
|
747
|
+
attr_accessor description: ::String
|
|
748
|
+
attr_accessor id: ::String
|
|
749
|
+
attr_accessor name: ::String
|
|
750
|
+
attr_accessor managed_list_type: ::String
|
|
751
|
+
SENSITIVE: []
|
|
752
|
+
end
|
|
753
|
+
|
|
754
|
+
class GlobalResolversItem
|
|
755
|
+
attr_accessor id: ::String
|
|
756
|
+
attr_accessor arn: ::String
|
|
757
|
+
attr_accessor client_token: ::String
|
|
758
|
+
attr_accessor dns_name: ::String
|
|
759
|
+
attr_accessor observability_region: ::String
|
|
760
|
+
attr_accessor name: ::String
|
|
761
|
+
attr_accessor description: ::String
|
|
762
|
+
attr_accessor regions: ::Array[::String]
|
|
763
|
+
attr_accessor created_at: ::Time
|
|
764
|
+
attr_accessor updated_at: ::Time
|
|
765
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
766
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
|
767
|
+
SENSITIVE: []
|
|
768
|
+
end
|
|
769
|
+
|
|
770
|
+
class HostedZoneAssociationSummary
|
|
771
|
+
attr_accessor id: ::String
|
|
772
|
+
attr_accessor resource_arn: ::String
|
|
773
|
+
attr_accessor hosted_zone_id: ::String
|
|
774
|
+
attr_accessor hosted_zone_name: ::String
|
|
775
|
+
attr_accessor name: ::String
|
|
776
|
+
attr_accessor created_at: ::Time
|
|
777
|
+
attr_accessor updated_at: ::Time
|
|
778
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
779
|
+
SENSITIVE: []
|
|
780
|
+
end
|
|
781
|
+
|
|
782
|
+
class ImportFirewallDomainsInput
|
|
783
|
+
attr_accessor domain_file_url: ::String
|
|
784
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
785
|
+
attr_accessor operation: ::String
|
|
786
|
+
SENSITIVE: []
|
|
787
|
+
end
|
|
788
|
+
|
|
789
|
+
class ImportFirewallDomainsOutput
|
|
790
|
+
attr_accessor id: ::String
|
|
791
|
+
attr_accessor name: ::String
|
|
792
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
793
|
+
SENSITIVE: []
|
|
794
|
+
end
|
|
795
|
+
|
|
796
|
+
class InternalServerException
|
|
797
|
+
attr_accessor message: ::String
|
|
798
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
799
|
+
SENSITIVE: []
|
|
800
|
+
end
|
|
801
|
+
|
|
802
|
+
class ListAccessSourcesInput
|
|
803
|
+
attr_accessor max_results: ::Integer
|
|
804
|
+
attr_accessor next_token: ::String
|
|
805
|
+
attr_accessor filters: ::Hash[::String, ::Array[::String]]
|
|
806
|
+
SENSITIVE: []
|
|
807
|
+
end
|
|
808
|
+
|
|
809
|
+
class ListAccessSourcesOutput
|
|
810
|
+
attr_accessor next_token: ::String
|
|
811
|
+
attr_accessor access_sources: ::Array[Types::AccessSourcesItem]
|
|
812
|
+
SENSITIVE: []
|
|
813
|
+
end
|
|
814
|
+
|
|
815
|
+
class ListAccessTokensInput
|
|
816
|
+
attr_accessor max_results: ::Integer
|
|
817
|
+
attr_accessor next_token: ::String
|
|
818
|
+
attr_accessor dns_view_id: ::String
|
|
819
|
+
attr_accessor filters: ::Hash[::String, ::Array[::String]]
|
|
820
|
+
SENSITIVE: []
|
|
821
|
+
end
|
|
822
|
+
|
|
823
|
+
class ListAccessTokensOutput
|
|
824
|
+
attr_accessor next_token: ::String
|
|
825
|
+
attr_accessor access_tokens: ::Array[Types::AccessTokenItem]
|
|
826
|
+
SENSITIVE: []
|
|
827
|
+
end
|
|
828
|
+
|
|
829
|
+
class ListDNSViewsInput
|
|
830
|
+
attr_accessor max_results: ::Integer
|
|
831
|
+
attr_accessor next_token: ::String
|
|
832
|
+
attr_accessor global_resolver_id: ::String
|
|
833
|
+
SENSITIVE: []
|
|
834
|
+
end
|
|
835
|
+
|
|
836
|
+
class ListDNSViewsOutput
|
|
837
|
+
attr_accessor next_token: ::String
|
|
838
|
+
attr_accessor dns_views: ::Array[Types::DNSViewSummary]
|
|
839
|
+
SENSITIVE: []
|
|
840
|
+
end
|
|
841
|
+
|
|
842
|
+
class ListFirewallDomainListsInput
|
|
843
|
+
attr_accessor max_results: ::Integer
|
|
844
|
+
attr_accessor next_token: ::String
|
|
845
|
+
attr_accessor global_resolver_id: ::String
|
|
846
|
+
SENSITIVE: []
|
|
847
|
+
end
|
|
848
|
+
|
|
849
|
+
class ListFirewallDomainListsOutput
|
|
850
|
+
attr_accessor next_token: ::String
|
|
851
|
+
attr_accessor firewall_domain_lists: ::Array[Types::FirewallDomainListsItem]
|
|
852
|
+
SENSITIVE: []
|
|
853
|
+
end
|
|
854
|
+
|
|
855
|
+
class ListFirewallDomainsInput
|
|
856
|
+
attr_accessor max_results: ::Integer
|
|
857
|
+
attr_accessor next_token: ::String
|
|
858
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
859
|
+
SENSITIVE: []
|
|
860
|
+
end
|
|
861
|
+
|
|
862
|
+
class ListFirewallDomainsOutput
|
|
863
|
+
attr_accessor next_token: ::String
|
|
864
|
+
attr_accessor domains: ::Array[::String]
|
|
865
|
+
SENSITIVE: []
|
|
866
|
+
end
|
|
867
|
+
|
|
868
|
+
class ListFirewallRulesInput
|
|
869
|
+
attr_accessor max_results: ::Integer
|
|
870
|
+
attr_accessor next_token: ::String
|
|
871
|
+
attr_accessor dns_view_id: ::String
|
|
872
|
+
attr_accessor filters: ::Hash[::String, ::Array[::String]]
|
|
873
|
+
SENSITIVE: []
|
|
874
|
+
end
|
|
875
|
+
|
|
876
|
+
class ListFirewallRulesOutput
|
|
877
|
+
attr_accessor next_token: ::String
|
|
878
|
+
attr_accessor firewall_rules: ::Array[Types::FirewallRulesItem]
|
|
879
|
+
SENSITIVE: []
|
|
880
|
+
end
|
|
881
|
+
|
|
882
|
+
class ListGlobalResolversInput
|
|
883
|
+
attr_accessor max_results: ::Integer
|
|
884
|
+
attr_accessor next_token: ::String
|
|
885
|
+
SENSITIVE: []
|
|
886
|
+
end
|
|
887
|
+
|
|
888
|
+
class ListGlobalResolversOutput
|
|
889
|
+
attr_accessor next_token: ::String
|
|
890
|
+
attr_accessor global_resolvers: ::Array[Types::GlobalResolversItem]
|
|
891
|
+
SENSITIVE: []
|
|
892
|
+
end
|
|
893
|
+
|
|
894
|
+
class ListHostedZoneAssociationsInput
|
|
895
|
+
attr_accessor max_results: ::Integer
|
|
896
|
+
attr_accessor next_token: ::String
|
|
897
|
+
attr_accessor resource_arn: ::String
|
|
898
|
+
SENSITIVE: []
|
|
899
|
+
end
|
|
900
|
+
|
|
901
|
+
class ListHostedZoneAssociationsOutput
|
|
902
|
+
attr_accessor next_token: ::String
|
|
903
|
+
attr_accessor hosted_zone_associations: ::Array[Types::HostedZoneAssociationSummary]
|
|
904
|
+
SENSITIVE: []
|
|
905
|
+
end
|
|
906
|
+
|
|
907
|
+
class ListManagedFirewallDomainListsInput
|
|
908
|
+
attr_accessor max_results: ::Integer
|
|
909
|
+
attr_accessor next_token: ::String
|
|
910
|
+
attr_accessor managed_firewall_domain_list_type: ::String
|
|
911
|
+
SENSITIVE: []
|
|
912
|
+
end
|
|
913
|
+
|
|
914
|
+
class ListManagedFirewallDomainListsOutput
|
|
915
|
+
attr_accessor next_token: ::String
|
|
916
|
+
attr_accessor managed_firewall_domain_lists: ::Array[Types::ManagedFirewallDomainListsItem]
|
|
917
|
+
SENSITIVE: []
|
|
918
|
+
end
|
|
919
|
+
|
|
920
|
+
class ListTagsForResourceRequest
|
|
921
|
+
attr_accessor resource_arn: ::String
|
|
922
|
+
SENSITIVE: []
|
|
923
|
+
end
|
|
924
|
+
|
|
925
|
+
class ListTagsForResourceResponse
|
|
926
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
927
|
+
SENSITIVE: []
|
|
928
|
+
end
|
|
929
|
+
|
|
930
|
+
class ManagedFirewallDomainListsItem
|
|
931
|
+
attr_accessor description: ::String
|
|
932
|
+
attr_accessor id: ::String
|
|
933
|
+
attr_accessor name: ::String
|
|
934
|
+
attr_accessor managed_list_type: ::String
|
|
935
|
+
SENSITIVE: []
|
|
936
|
+
end
|
|
937
|
+
|
|
938
|
+
class ResourceNotFoundException
|
|
939
|
+
attr_accessor message: ::String
|
|
940
|
+
attr_accessor resource_id: ::String
|
|
941
|
+
attr_accessor resource_type: ::String
|
|
942
|
+
SENSITIVE: []
|
|
943
|
+
end
|
|
944
|
+
|
|
945
|
+
class ServiceQuotaExceededException
|
|
946
|
+
attr_accessor message: ::String
|
|
947
|
+
attr_accessor resource_id: ::String
|
|
948
|
+
attr_accessor resource_type: ::String
|
|
949
|
+
attr_accessor service_code: ::String
|
|
950
|
+
attr_accessor quota_code: ::String
|
|
951
|
+
SENSITIVE: []
|
|
952
|
+
end
|
|
953
|
+
|
|
954
|
+
class TagResourceRequest
|
|
955
|
+
attr_accessor resource_arn: ::String
|
|
956
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
957
|
+
SENSITIVE: []
|
|
958
|
+
end
|
|
959
|
+
|
|
960
|
+
class TagResourceResponse < Aws::EmptyStructure
|
|
961
|
+
end
|
|
962
|
+
|
|
963
|
+
class ThrottlingException
|
|
964
|
+
attr_accessor message: ::String
|
|
965
|
+
attr_accessor service_code: ::String
|
|
966
|
+
attr_accessor quota_code: ::String
|
|
967
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
968
|
+
SENSITIVE: []
|
|
969
|
+
end
|
|
970
|
+
|
|
971
|
+
class UntagResourceRequest
|
|
972
|
+
attr_accessor resource_arn: ::String
|
|
973
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
974
|
+
SENSITIVE: []
|
|
975
|
+
end
|
|
976
|
+
|
|
977
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
|
978
|
+
end
|
|
979
|
+
|
|
980
|
+
class UpdateAccessSourceInput
|
|
981
|
+
attr_accessor access_source_id: ::String
|
|
982
|
+
attr_accessor cidr: ::String
|
|
983
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
984
|
+
attr_accessor name: ::String
|
|
985
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
986
|
+
SENSITIVE: []
|
|
987
|
+
end
|
|
988
|
+
|
|
989
|
+
class UpdateAccessSourceOutput
|
|
990
|
+
attr_accessor arn: ::String
|
|
991
|
+
attr_accessor cidr: ::String
|
|
992
|
+
attr_accessor created_at: ::Time
|
|
993
|
+
attr_accessor id: ::String
|
|
994
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
|
995
|
+
attr_accessor name: ::String
|
|
996
|
+
attr_accessor dns_view_id: ::String
|
|
997
|
+
attr_accessor protocol: ("DO53" | "DOH" | "DOT")
|
|
998
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
999
|
+
attr_accessor updated_at: ::Time
|
|
1000
|
+
SENSITIVE: []
|
|
1001
|
+
end
|
|
1002
|
+
|
|
1003
|
+
class UpdateAccessTokenInput
|
|
1004
|
+
attr_accessor access_token_id: ::String
|
|
1005
|
+
attr_accessor name: ::String
|
|
1006
|
+
SENSITIVE: []
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
class UpdateAccessTokenOutput
|
|
1010
|
+
attr_accessor id: ::String
|
|
1011
|
+
attr_accessor name: ::String
|
|
1012
|
+
SENSITIVE: []
|
|
1013
|
+
end
|
|
1014
|
+
|
|
1015
|
+
class UpdateDNSViewInput
|
|
1016
|
+
attr_accessor dns_view_id: ::String
|
|
1017
|
+
attr_accessor name: ::String
|
|
1018
|
+
attr_accessor description: ::String
|
|
1019
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
1020
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
1021
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
1022
|
+
SENSITIVE: []
|
|
1023
|
+
end
|
|
1024
|
+
|
|
1025
|
+
class UpdateDNSViewOutput
|
|
1026
|
+
attr_accessor id: ::String
|
|
1027
|
+
attr_accessor arn: ::String
|
|
1028
|
+
attr_accessor client_token: ::String
|
|
1029
|
+
attr_accessor dnssec_validation: ("ENABLED" | "DISABLED")
|
|
1030
|
+
attr_accessor edns_client_subnet: ("ENABLED" | "DISABLED")
|
|
1031
|
+
attr_accessor firewall_rules_fail_open: ("ENABLED" | "DISABLED")
|
|
1032
|
+
attr_accessor name: ::String
|
|
1033
|
+
attr_accessor description: ::String
|
|
1034
|
+
attr_accessor global_resolver_id: ::String
|
|
1035
|
+
attr_accessor created_at: ::Time
|
|
1036
|
+
attr_accessor updated_at: ::Time
|
|
1037
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "ENABLING" | "DISABLING" | "DISABLED" | "DELETING")
|
|
1038
|
+
SENSITIVE: []
|
|
1039
|
+
end
|
|
1040
|
+
|
|
1041
|
+
class UpdateFirewallDomainsInput
|
|
1042
|
+
attr_accessor domains: ::Array[::String]
|
|
1043
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
1044
|
+
attr_accessor operation: ::String
|
|
1045
|
+
SENSITIVE: []
|
|
1046
|
+
end
|
|
1047
|
+
|
|
1048
|
+
class UpdateFirewallDomainsOutput
|
|
1049
|
+
attr_accessor id: ::String
|
|
1050
|
+
attr_accessor name: ::String
|
|
1051
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
1052
|
+
SENSITIVE: []
|
|
1053
|
+
end
|
|
1054
|
+
|
|
1055
|
+
class UpdateFirewallRuleInput
|
|
1056
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
1057
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
1058
|
+
attr_accessor block_override_domain: ::String
|
|
1059
|
+
attr_accessor block_override_ttl: ::Integer
|
|
1060
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
1061
|
+
attr_accessor client_token: ::String
|
|
1062
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
1063
|
+
attr_accessor description: ::String
|
|
1064
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
1065
|
+
attr_accessor firewall_rule_id: ::String
|
|
1066
|
+
attr_accessor name: ::String
|
|
1067
|
+
attr_accessor priority: ::Integer
|
|
1068
|
+
SENSITIVE: []
|
|
1069
|
+
end
|
|
1070
|
+
|
|
1071
|
+
class UpdateFirewallRuleOutput
|
|
1072
|
+
attr_accessor action: ("ALLOW" | "ALERT" | "BLOCK")
|
|
1073
|
+
attr_accessor block_override_dns_type: ("CNAME")
|
|
1074
|
+
attr_accessor block_override_domain: ::String
|
|
1075
|
+
attr_accessor block_override_ttl: ::Integer
|
|
1076
|
+
attr_accessor block_response: ("NODATA" | "NXDOMAIN" | "OVERRIDE")
|
|
1077
|
+
attr_accessor confidence_threshold: ("LOW" | "MEDIUM" | "HIGH")
|
|
1078
|
+
attr_accessor created_at: ::Time
|
|
1079
|
+
attr_accessor description: ::String
|
|
1080
|
+
attr_accessor dns_advanced_protection: ("DGA" | "DNS_TUNNELING")
|
|
1081
|
+
attr_accessor firewall_domain_list_id: ::String
|
|
1082
|
+
attr_accessor id: ::String
|
|
1083
|
+
attr_accessor name: ::String
|
|
1084
|
+
attr_accessor priority: ::Integer
|
|
1085
|
+
attr_accessor dns_view_id: ::String
|
|
1086
|
+
attr_accessor query_type: ::String
|
|
1087
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
1088
|
+
attr_accessor updated_at: ::Time
|
|
1089
|
+
SENSITIVE: []
|
|
1090
|
+
end
|
|
1091
|
+
|
|
1092
|
+
class UpdateGlobalResolverInput
|
|
1093
|
+
attr_accessor global_resolver_id: ::String
|
|
1094
|
+
attr_accessor name: ::String
|
|
1095
|
+
attr_accessor observability_region: ::String
|
|
1096
|
+
attr_accessor description: ::String
|
|
1097
|
+
SENSITIVE: []
|
|
1098
|
+
end
|
|
1099
|
+
|
|
1100
|
+
class UpdateGlobalResolverOutput
|
|
1101
|
+
attr_accessor id: ::String
|
|
1102
|
+
attr_accessor arn: ::String
|
|
1103
|
+
attr_accessor client_token: ::String
|
|
1104
|
+
attr_accessor dns_name: ::String
|
|
1105
|
+
attr_accessor observability_region: ::String
|
|
1106
|
+
attr_accessor name: ::String
|
|
1107
|
+
attr_accessor description: ::String
|
|
1108
|
+
attr_accessor regions: ::Array[::String]
|
|
1109
|
+
attr_accessor created_at: ::Time
|
|
1110
|
+
attr_accessor updated_at: ::Time
|
|
1111
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "UPDATING" | "DELETING")
|
|
1112
|
+
attr_accessor ipv4_addresses: ::Array[::String]
|
|
1113
|
+
SENSITIVE: []
|
|
1114
|
+
end
|
|
1115
|
+
|
|
1116
|
+
class UpdateHostedZoneAssociationInput
|
|
1117
|
+
attr_accessor hosted_zone_association_id: ::String
|
|
1118
|
+
attr_accessor name: ::String
|
|
1119
|
+
SENSITIVE: []
|
|
1120
|
+
end
|
|
1121
|
+
|
|
1122
|
+
class UpdateHostedZoneAssociationOutput
|
|
1123
|
+
attr_accessor id: ::String
|
|
1124
|
+
attr_accessor resource_arn: ::String
|
|
1125
|
+
attr_accessor hosted_zone_id: ::String
|
|
1126
|
+
attr_accessor hosted_zone_name: ::String
|
|
1127
|
+
attr_accessor name: ::String
|
|
1128
|
+
attr_accessor created_at: ::Time
|
|
1129
|
+
attr_accessor updated_at: ::Time
|
|
1130
|
+
attr_accessor status: ("CREATING" | "OPERATIONAL" | "DELETING")
|
|
1131
|
+
SENSITIVE: []
|
|
1132
|
+
end
|
|
1133
|
+
|
|
1134
|
+
class ValidationException
|
|
1135
|
+
attr_accessor message: ::String
|
|
1136
|
+
attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER")
|
|
1137
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
|
1138
|
+
SENSITIVE: []
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1141
|
+
class ValidationExceptionField
|
|
1142
|
+
attr_accessor name: ::String
|
|
1143
|
+
attr_accessor message: ::String
|
|
1144
|
+
SENSITIVE: []
|
|
1145
|
+
end
|
|
1146
|
+
end
|
|
1147
|
+
end
|