aws-sdk-waf 1.57.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1350 @@
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::WAF
9
+ module Types
10
+
11
+ class ActivatedRule
12
+ attr_accessor priority: ::Integer
13
+ attr_accessor rule_id: ::String
14
+ attr_accessor action: Types::WafAction
15
+ attr_accessor override_action: Types::WafOverrideAction
16
+ attr_accessor type: ("REGULAR" | "RATE_BASED" | "GROUP")
17
+ attr_accessor excluded_rules: ::Array[Types::ExcludedRule]
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class ByteMatchSet
22
+ attr_accessor byte_match_set_id: ::String
23
+ attr_accessor name: ::String
24
+ attr_accessor byte_match_tuples: ::Array[Types::ByteMatchTuple]
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class ByteMatchSetSummary
29
+ attr_accessor byte_match_set_id: ::String
30
+ attr_accessor name: ::String
31
+ SENSITIVE: []
32
+ end
33
+
34
+ class ByteMatchSetUpdate
35
+ attr_accessor action: ("INSERT" | "DELETE")
36
+ attr_accessor byte_match_tuple: Types::ByteMatchTuple
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class ByteMatchTuple
41
+ attr_accessor field_to_match: Types::FieldToMatch
42
+ attr_accessor target_string: ::String
43
+ attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
44
+ attr_accessor positional_constraint: ("EXACTLY" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS" | "CONTAINS_WORD")
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class CreateByteMatchSetRequest
49
+ attr_accessor name: ::String
50
+ attr_accessor change_token: ::String
51
+ SENSITIVE: []
52
+ end
53
+
54
+ class CreateByteMatchSetResponse
55
+ attr_accessor byte_match_set: Types::ByteMatchSet
56
+ attr_accessor change_token: ::String
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class CreateGeoMatchSetRequest
61
+ attr_accessor name: ::String
62
+ attr_accessor change_token: ::String
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class CreateGeoMatchSetResponse
67
+ attr_accessor geo_match_set: Types::GeoMatchSet
68
+ attr_accessor change_token: ::String
69
+ SENSITIVE: []
70
+ end
71
+
72
+ class CreateIPSetRequest
73
+ attr_accessor name: ::String
74
+ attr_accessor change_token: ::String
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class CreateIPSetResponse
79
+ attr_accessor ip_set: Types::IPSet
80
+ attr_accessor change_token: ::String
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class CreateRateBasedRuleRequest
85
+ attr_accessor name: ::String
86
+ attr_accessor metric_name: ::String
87
+ attr_accessor rate_key: ("IP")
88
+ attr_accessor rate_limit: ::Integer
89
+ attr_accessor change_token: ::String
90
+ attr_accessor tags: ::Array[Types::Tag]
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class CreateRateBasedRuleResponse
95
+ attr_accessor rule: Types::RateBasedRule
96
+ attr_accessor change_token: ::String
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class CreateRegexMatchSetRequest
101
+ attr_accessor name: ::String
102
+ attr_accessor change_token: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class CreateRegexMatchSetResponse
107
+ attr_accessor regex_match_set: Types::RegexMatchSet
108
+ attr_accessor change_token: ::String
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class CreateRegexPatternSetRequest
113
+ attr_accessor name: ::String
114
+ attr_accessor change_token: ::String
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class CreateRegexPatternSetResponse
119
+ attr_accessor regex_pattern_set: Types::RegexPatternSet
120
+ attr_accessor change_token: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class CreateRuleGroupRequest
125
+ attr_accessor name: ::String
126
+ attr_accessor metric_name: ::String
127
+ attr_accessor change_token: ::String
128
+ attr_accessor tags: ::Array[Types::Tag]
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class CreateRuleGroupResponse
133
+ attr_accessor rule_group: Types::RuleGroup
134
+ attr_accessor change_token: ::String
135
+ SENSITIVE: []
136
+ end
137
+
138
+ class CreateRuleRequest
139
+ attr_accessor name: ::String
140
+ attr_accessor metric_name: ::String
141
+ attr_accessor change_token: ::String
142
+ attr_accessor tags: ::Array[Types::Tag]
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class CreateRuleResponse
147
+ attr_accessor rule: Types::Rule
148
+ attr_accessor change_token: ::String
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class CreateSizeConstraintSetRequest
153
+ attr_accessor name: ::String
154
+ attr_accessor change_token: ::String
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class CreateSizeConstraintSetResponse
159
+ attr_accessor size_constraint_set: Types::SizeConstraintSet
160
+ attr_accessor change_token: ::String
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class CreateSqlInjectionMatchSetRequest
165
+ attr_accessor name: ::String
166
+ attr_accessor change_token: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class CreateSqlInjectionMatchSetResponse
171
+ attr_accessor sql_injection_match_set: Types::SqlInjectionMatchSet
172
+ attr_accessor change_token: ::String
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class CreateWebACLMigrationStackRequest
177
+ attr_accessor web_acl_id: ::String
178
+ attr_accessor s3_bucket_name: ::String
179
+ attr_accessor ignore_unsupported_type: bool
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class CreateWebACLMigrationStackResponse
184
+ attr_accessor s3_object_url: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class CreateWebACLRequest
189
+ attr_accessor name: ::String
190
+ attr_accessor metric_name: ::String
191
+ attr_accessor default_action: Types::WafAction
192
+ attr_accessor change_token: ::String
193
+ attr_accessor tags: ::Array[Types::Tag]
194
+ SENSITIVE: []
195
+ end
196
+
197
+ class CreateWebACLResponse
198
+ attr_accessor web_acl: Types::WebACL
199
+ attr_accessor change_token: ::String
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class CreateXssMatchSetRequest
204
+ attr_accessor name: ::String
205
+ attr_accessor change_token: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class CreateXssMatchSetResponse
210
+ attr_accessor xss_match_set: Types::XssMatchSet
211
+ attr_accessor change_token: ::String
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class DeleteByteMatchSetRequest
216
+ attr_accessor byte_match_set_id: ::String
217
+ attr_accessor change_token: ::String
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class DeleteByteMatchSetResponse
222
+ attr_accessor change_token: ::String
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class DeleteGeoMatchSetRequest
227
+ attr_accessor geo_match_set_id: ::String
228
+ attr_accessor change_token: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class DeleteGeoMatchSetResponse
233
+ attr_accessor change_token: ::String
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class DeleteIPSetRequest
238
+ attr_accessor ip_set_id: ::String
239
+ attr_accessor change_token: ::String
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class DeleteIPSetResponse
244
+ attr_accessor change_token: ::String
245
+ SENSITIVE: []
246
+ end
247
+
248
+ class DeleteLoggingConfigurationRequest
249
+ attr_accessor resource_arn: ::String
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class DeleteLoggingConfigurationResponse < Aws::EmptyStructure
254
+ end
255
+
256
+ class DeletePermissionPolicyRequest
257
+ attr_accessor resource_arn: ::String
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class DeletePermissionPolicyResponse < Aws::EmptyStructure
262
+ end
263
+
264
+ class DeleteRateBasedRuleRequest
265
+ attr_accessor rule_id: ::String
266
+ attr_accessor change_token: ::String
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class DeleteRateBasedRuleResponse
271
+ attr_accessor change_token: ::String
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class DeleteRegexMatchSetRequest
276
+ attr_accessor regex_match_set_id: ::String
277
+ attr_accessor change_token: ::String
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class DeleteRegexMatchSetResponse
282
+ attr_accessor change_token: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class DeleteRegexPatternSetRequest
287
+ attr_accessor regex_pattern_set_id: ::String
288
+ attr_accessor change_token: ::String
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class DeleteRegexPatternSetResponse
293
+ attr_accessor change_token: ::String
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class DeleteRuleGroupRequest
298
+ attr_accessor rule_group_id: ::String
299
+ attr_accessor change_token: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class DeleteRuleGroupResponse
304
+ attr_accessor change_token: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class DeleteRuleRequest
309
+ attr_accessor rule_id: ::String
310
+ attr_accessor change_token: ::String
311
+ SENSITIVE: []
312
+ end
313
+
314
+ class DeleteRuleResponse
315
+ attr_accessor change_token: ::String
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class DeleteSizeConstraintSetRequest
320
+ attr_accessor size_constraint_set_id: ::String
321
+ attr_accessor change_token: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class DeleteSizeConstraintSetResponse
326
+ attr_accessor change_token: ::String
327
+ SENSITIVE: []
328
+ end
329
+
330
+ class DeleteSqlInjectionMatchSetRequest
331
+ attr_accessor sql_injection_match_set_id: ::String
332
+ attr_accessor change_token: ::String
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class DeleteSqlInjectionMatchSetResponse
337
+ attr_accessor change_token: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class DeleteWebACLRequest
342
+ attr_accessor web_acl_id: ::String
343
+ attr_accessor change_token: ::String
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class DeleteWebACLResponse
348
+ attr_accessor change_token: ::String
349
+ SENSITIVE: []
350
+ end
351
+
352
+ class DeleteXssMatchSetRequest
353
+ attr_accessor xss_match_set_id: ::String
354
+ attr_accessor change_token: ::String
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class DeleteXssMatchSetResponse
359
+ attr_accessor change_token: ::String
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class ExcludedRule
364
+ attr_accessor rule_id: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class FieldToMatch
369
+ attr_accessor type: ("URI" | "QUERY_STRING" | "HEADER" | "METHOD" | "BODY" | "SINGLE_QUERY_ARG" | "ALL_QUERY_ARGS")
370
+ attr_accessor data: ::String
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class GeoMatchConstraint
375
+ attr_accessor type: ("Country")
376
+ attr_accessor value: ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW")
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class GeoMatchSet
381
+ attr_accessor geo_match_set_id: ::String
382
+ attr_accessor name: ::String
383
+ attr_accessor geo_match_constraints: ::Array[Types::GeoMatchConstraint]
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class GeoMatchSetSummary
388
+ attr_accessor geo_match_set_id: ::String
389
+ attr_accessor name: ::String
390
+ SENSITIVE: []
391
+ end
392
+
393
+ class GeoMatchSetUpdate
394
+ attr_accessor action: ("INSERT" | "DELETE")
395
+ attr_accessor geo_match_constraint: Types::GeoMatchConstraint
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class GetByteMatchSetRequest
400
+ attr_accessor byte_match_set_id: ::String
401
+ SENSITIVE: []
402
+ end
403
+
404
+ class GetByteMatchSetResponse
405
+ attr_accessor byte_match_set: Types::ByteMatchSet
406
+ SENSITIVE: []
407
+ end
408
+
409
+ class GetChangeTokenRequest < Aws::EmptyStructure
410
+ end
411
+
412
+ class GetChangeTokenResponse
413
+ attr_accessor change_token: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class GetChangeTokenStatusRequest
418
+ attr_accessor change_token: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class GetChangeTokenStatusResponse
423
+ attr_accessor change_token_status: ("PROVISIONED" | "PENDING" | "INSYNC")
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class GetGeoMatchSetRequest
428
+ attr_accessor geo_match_set_id: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class GetGeoMatchSetResponse
433
+ attr_accessor geo_match_set: Types::GeoMatchSet
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class GetIPSetRequest
438
+ attr_accessor ip_set_id: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class GetIPSetResponse
443
+ attr_accessor ip_set: Types::IPSet
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class GetLoggingConfigurationRequest
448
+ attr_accessor resource_arn: ::String
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class GetLoggingConfigurationResponse
453
+ attr_accessor logging_configuration: Types::LoggingConfiguration
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class GetPermissionPolicyRequest
458
+ attr_accessor resource_arn: ::String
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class GetPermissionPolicyResponse
463
+ attr_accessor policy: ::String
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class GetRateBasedRuleManagedKeysRequest
468
+ attr_accessor rule_id: ::String
469
+ attr_accessor next_marker: ::String
470
+ SENSITIVE: []
471
+ end
472
+
473
+ class GetRateBasedRuleManagedKeysResponse
474
+ attr_accessor managed_keys: ::Array[::String]
475
+ attr_accessor next_marker: ::String
476
+ SENSITIVE: []
477
+ end
478
+
479
+ class GetRateBasedRuleRequest
480
+ attr_accessor rule_id: ::String
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class GetRateBasedRuleResponse
485
+ attr_accessor rule: Types::RateBasedRule
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class GetRegexMatchSetRequest
490
+ attr_accessor regex_match_set_id: ::String
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class GetRegexMatchSetResponse
495
+ attr_accessor regex_match_set: Types::RegexMatchSet
496
+ SENSITIVE: []
497
+ end
498
+
499
+ class GetRegexPatternSetRequest
500
+ attr_accessor regex_pattern_set_id: ::String
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class GetRegexPatternSetResponse
505
+ attr_accessor regex_pattern_set: Types::RegexPatternSet
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class GetRuleGroupRequest
510
+ attr_accessor rule_group_id: ::String
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class GetRuleGroupResponse
515
+ attr_accessor rule_group: Types::RuleGroup
516
+ SENSITIVE: []
517
+ end
518
+
519
+ class GetRuleRequest
520
+ attr_accessor rule_id: ::String
521
+ SENSITIVE: []
522
+ end
523
+
524
+ class GetRuleResponse
525
+ attr_accessor rule: Types::Rule
526
+ SENSITIVE: []
527
+ end
528
+
529
+ class GetSampledRequestsRequest
530
+ attr_accessor web_acl_id: ::String
531
+ attr_accessor rule_id: ::String
532
+ attr_accessor time_window: Types::TimeWindow
533
+ attr_accessor max_items: ::Integer
534
+ SENSITIVE: []
535
+ end
536
+
537
+ class GetSampledRequestsResponse
538
+ attr_accessor sampled_requests: ::Array[Types::SampledHTTPRequest]
539
+ attr_accessor population_size: ::Integer
540
+ attr_accessor time_window: Types::TimeWindow
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class GetSizeConstraintSetRequest
545
+ attr_accessor size_constraint_set_id: ::String
546
+ SENSITIVE: []
547
+ end
548
+
549
+ class GetSizeConstraintSetResponse
550
+ attr_accessor size_constraint_set: Types::SizeConstraintSet
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class GetSqlInjectionMatchSetRequest
555
+ attr_accessor sql_injection_match_set_id: ::String
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class GetSqlInjectionMatchSetResponse
560
+ attr_accessor sql_injection_match_set: Types::SqlInjectionMatchSet
561
+ SENSITIVE: []
562
+ end
563
+
564
+ class GetWebACLRequest
565
+ attr_accessor web_acl_id: ::String
566
+ SENSITIVE: []
567
+ end
568
+
569
+ class GetWebACLResponse
570
+ attr_accessor web_acl: Types::WebACL
571
+ SENSITIVE: []
572
+ end
573
+
574
+ class GetXssMatchSetRequest
575
+ attr_accessor xss_match_set_id: ::String
576
+ SENSITIVE: []
577
+ end
578
+
579
+ class GetXssMatchSetResponse
580
+ attr_accessor xss_match_set: Types::XssMatchSet
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class HTTPHeader
585
+ attr_accessor name: ::String
586
+ attr_accessor value: ::String
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class HTTPRequest
591
+ attr_accessor client_ip: ::String
592
+ attr_accessor country: ::String
593
+ attr_accessor uri: ::String
594
+ attr_accessor method: ::String
595
+ attr_accessor http_version: ::String
596
+ attr_accessor headers: ::Array[Types::HTTPHeader]
597
+ SENSITIVE: []
598
+ end
599
+
600
+ class IPSet
601
+ attr_accessor ip_set_id: ::String
602
+ attr_accessor name: ::String
603
+ attr_accessor ip_set_descriptors: ::Array[Types::IPSetDescriptor]
604
+ SENSITIVE: []
605
+ end
606
+
607
+ class IPSetDescriptor
608
+ attr_accessor type: ("IPV4" | "IPV6")
609
+ attr_accessor value: ::String
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class IPSetSummary
614
+ attr_accessor ip_set_id: ::String
615
+ attr_accessor name: ::String
616
+ SENSITIVE: []
617
+ end
618
+
619
+ class IPSetUpdate
620
+ attr_accessor action: ("INSERT" | "DELETE")
621
+ attr_accessor ip_set_descriptor: Types::IPSetDescriptor
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class ListActivatedRulesInRuleGroupRequest
626
+ attr_accessor rule_group_id: ::String
627
+ attr_accessor next_marker: ::String
628
+ attr_accessor limit: ::Integer
629
+ SENSITIVE: []
630
+ end
631
+
632
+ class ListActivatedRulesInRuleGroupResponse
633
+ attr_accessor next_marker: ::String
634
+ attr_accessor activated_rules: ::Array[Types::ActivatedRule]
635
+ SENSITIVE: []
636
+ end
637
+
638
+ class ListByteMatchSetsRequest
639
+ attr_accessor next_marker: ::String
640
+ attr_accessor limit: ::Integer
641
+ SENSITIVE: []
642
+ end
643
+
644
+ class ListByteMatchSetsResponse
645
+ attr_accessor next_marker: ::String
646
+ attr_accessor byte_match_sets: ::Array[Types::ByteMatchSetSummary]
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class ListGeoMatchSetsRequest
651
+ attr_accessor next_marker: ::String
652
+ attr_accessor limit: ::Integer
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class ListGeoMatchSetsResponse
657
+ attr_accessor next_marker: ::String
658
+ attr_accessor geo_match_sets: ::Array[Types::GeoMatchSetSummary]
659
+ SENSITIVE: []
660
+ end
661
+
662
+ class ListIPSetsRequest
663
+ attr_accessor next_marker: ::String
664
+ attr_accessor limit: ::Integer
665
+ SENSITIVE: []
666
+ end
667
+
668
+ class ListIPSetsResponse
669
+ attr_accessor next_marker: ::String
670
+ attr_accessor ip_sets: ::Array[Types::IPSetSummary]
671
+ SENSITIVE: []
672
+ end
673
+
674
+ class ListLoggingConfigurationsRequest
675
+ attr_accessor next_marker: ::String
676
+ attr_accessor limit: ::Integer
677
+ SENSITIVE: []
678
+ end
679
+
680
+ class ListLoggingConfigurationsResponse
681
+ attr_accessor logging_configurations: ::Array[Types::LoggingConfiguration]
682
+ attr_accessor next_marker: ::String
683
+ SENSITIVE: []
684
+ end
685
+
686
+ class ListRateBasedRulesRequest
687
+ attr_accessor next_marker: ::String
688
+ attr_accessor limit: ::Integer
689
+ SENSITIVE: []
690
+ end
691
+
692
+ class ListRateBasedRulesResponse
693
+ attr_accessor next_marker: ::String
694
+ attr_accessor rules: ::Array[Types::RuleSummary]
695
+ SENSITIVE: []
696
+ end
697
+
698
+ class ListRegexMatchSetsRequest
699
+ attr_accessor next_marker: ::String
700
+ attr_accessor limit: ::Integer
701
+ SENSITIVE: []
702
+ end
703
+
704
+ class ListRegexMatchSetsResponse
705
+ attr_accessor next_marker: ::String
706
+ attr_accessor regex_match_sets: ::Array[Types::RegexMatchSetSummary]
707
+ SENSITIVE: []
708
+ end
709
+
710
+ class ListRegexPatternSetsRequest
711
+ attr_accessor next_marker: ::String
712
+ attr_accessor limit: ::Integer
713
+ SENSITIVE: []
714
+ end
715
+
716
+ class ListRegexPatternSetsResponse
717
+ attr_accessor next_marker: ::String
718
+ attr_accessor regex_pattern_sets: ::Array[Types::RegexPatternSetSummary]
719
+ SENSITIVE: []
720
+ end
721
+
722
+ class ListRuleGroupsRequest
723
+ attr_accessor next_marker: ::String
724
+ attr_accessor limit: ::Integer
725
+ SENSITIVE: []
726
+ end
727
+
728
+ class ListRuleGroupsResponse
729
+ attr_accessor next_marker: ::String
730
+ attr_accessor rule_groups: ::Array[Types::RuleGroupSummary]
731
+ SENSITIVE: []
732
+ end
733
+
734
+ class ListRulesRequest
735
+ attr_accessor next_marker: ::String
736
+ attr_accessor limit: ::Integer
737
+ SENSITIVE: []
738
+ end
739
+
740
+ class ListRulesResponse
741
+ attr_accessor next_marker: ::String
742
+ attr_accessor rules: ::Array[Types::RuleSummary]
743
+ SENSITIVE: []
744
+ end
745
+
746
+ class ListSizeConstraintSetsRequest
747
+ attr_accessor next_marker: ::String
748
+ attr_accessor limit: ::Integer
749
+ SENSITIVE: []
750
+ end
751
+
752
+ class ListSizeConstraintSetsResponse
753
+ attr_accessor next_marker: ::String
754
+ attr_accessor size_constraint_sets: ::Array[Types::SizeConstraintSetSummary]
755
+ SENSITIVE: []
756
+ end
757
+
758
+ class ListSqlInjectionMatchSetsRequest
759
+ attr_accessor next_marker: ::String
760
+ attr_accessor limit: ::Integer
761
+ SENSITIVE: []
762
+ end
763
+
764
+ class ListSqlInjectionMatchSetsResponse
765
+ attr_accessor next_marker: ::String
766
+ attr_accessor sql_injection_match_sets: ::Array[Types::SqlInjectionMatchSetSummary]
767
+ SENSITIVE: []
768
+ end
769
+
770
+ class ListSubscribedRuleGroupsRequest
771
+ attr_accessor next_marker: ::String
772
+ attr_accessor limit: ::Integer
773
+ SENSITIVE: []
774
+ end
775
+
776
+ class ListSubscribedRuleGroupsResponse
777
+ attr_accessor next_marker: ::String
778
+ attr_accessor rule_groups: ::Array[Types::SubscribedRuleGroupSummary]
779
+ SENSITIVE: []
780
+ end
781
+
782
+ class ListTagsForResourceRequest
783
+ attr_accessor next_marker: ::String
784
+ attr_accessor limit: ::Integer
785
+ attr_accessor resource_arn: ::String
786
+ SENSITIVE: []
787
+ end
788
+
789
+ class ListTagsForResourceResponse
790
+ attr_accessor next_marker: ::String
791
+ attr_accessor tag_info_for_resource: Types::TagInfoForResource
792
+ SENSITIVE: []
793
+ end
794
+
795
+ class ListWebACLsRequest
796
+ attr_accessor next_marker: ::String
797
+ attr_accessor limit: ::Integer
798
+ SENSITIVE: []
799
+ end
800
+
801
+ class ListWebACLsResponse
802
+ attr_accessor next_marker: ::String
803
+ attr_accessor web_acls: ::Array[Types::WebACLSummary]
804
+ SENSITIVE: []
805
+ end
806
+
807
+ class ListXssMatchSetsRequest
808
+ attr_accessor next_marker: ::String
809
+ attr_accessor limit: ::Integer
810
+ SENSITIVE: []
811
+ end
812
+
813
+ class ListXssMatchSetsResponse
814
+ attr_accessor next_marker: ::String
815
+ attr_accessor xss_match_sets: ::Array[Types::XssMatchSetSummary]
816
+ SENSITIVE: []
817
+ end
818
+
819
+ class LoggingConfiguration
820
+ attr_accessor resource_arn: ::String
821
+ attr_accessor log_destination_configs: ::Array[::String]
822
+ attr_accessor redacted_fields: ::Array[Types::FieldToMatch]
823
+ SENSITIVE: []
824
+ end
825
+
826
+ class Predicate
827
+ attr_accessor negated: bool
828
+ attr_accessor type: ("IPMatch" | "ByteMatch" | "SqlInjectionMatch" | "GeoMatch" | "SizeConstraint" | "XssMatch" | "RegexMatch")
829
+ attr_accessor data_id: ::String
830
+ SENSITIVE: []
831
+ end
832
+
833
+ class PutLoggingConfigurationRequest
834
+ attr_accessor logging_configuration: Types::LoggingConfiguration
835
+ SENSITIVE: []
836
+ end
837
+
838
+ class PutLoggingConfigurationResponse
839
+ attr_accessor logging_configuration: Types::LoggingConfiguration
840
+ SENSITIVE: []
841
+ end
842
+
843
+ class PutPermissionPolicyRequest
844
+ attr_accessor resource_arn: ::String
845
+ attr_accessor policy: ::String
846
+ SENSITIVE: []
847
+ end
848
+
849
+ class PutPermissionPolicyResponse < Aws::EmptyStructure
850
+ end
851
+
852
+ class RateBasedRule
853
+ attr_accessor rule_id: ::String
854
+ attr_accessor name: ::String
855
+ attr_accessor metric_name: ::String
856
+ attr_accessor match_predicates: ::Array[Types::Predicate]
857
+ attr_accessor rate_key: ("IP")
858
+ attr_accessor rate_limit: ::Integer
859
+ SENSITIVE: []
860
+ end
861
+
862
+ class RegexMatchSet
863
+ attr_accessor regex_match_set_id: ::String
864
+ attr_accessor name: ::String
865
+ attr_accessor regex_match_tuples: ::Array[Types::RegexMatchTuple]
866
+ SENSITIVE: []
867
+ end
868
+
869
+ class RegexMatchSetSummary
870
+ attr_accessor regex_match_set_id: ::String
871
+ attr_accessor name: ::String
872
+ SENSITIVE: []
873
+ end
874
+
875
+ class RegexMatchSetUpdate
876
+ attr_accessor action: ("INSERT" | "DELETE")
877
+ attr_accessor regex_match_tuple: Types::RegexMatchTuple
878
+ SENSITIVE: []
879
+ end
880
+
881
+ class RegexMatchTuple
882
+ attr_accessor field_to_match: Types::FieldToMatch
883
+ attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
884
+ attr_accessor regex_pattern_set_id: ::String
885
+ SENSITIVE: []
886
+ end
887
+
888
+ class RegexPatternSet
889
+ attr_accessor regex_pattern_set_id: ::String
890
+ attr_accessor name: ::String
891
+ attr_accessor regex_pattern_strings: ::Array[::String]
892
+ SENSITIVE: []
893
+ end
894
+
895
+ class RegexPatternSetSummary
896
+ attr_accessor regex_pattern_set_id: ::String
897
+ attr_accessor name: ::String
898
+ SENSITIVE: []
899
+ end
900
+
901
+ class RegexPatternSetUpdate
902
+ attr_accessor action: ("INSERT" | "DELETE")
903
+ attr_accessor regex_pattern_string: ::String
904
+ SENSITIVE: []
905
+ end
906
+
907
+ class Rule
908
+ attr_accessor rule_id: ::String
909
+ attr_accessor name: ::String
910
+ attr_accessor metric_name: ::String
911
+ attr_accessor predicates: ::Array[Types::Predicate]
912
+ SENSITIVE: []
913
+ end
914
+
915
+ class RuleGroup
916
+ attr_accessor rule_group_id: ::String
917
+ attr_accessor name: ::String
918
+ attr_accessor metric_name: ::String
919
+ SENSITIVE: []
920
+ end
921
+
922
+ class RuleGroupSummary
923
+ attr_accessor rule_group_id: ::String
924
+ attr_accessor name: ::String
925
+ SENSITIVE: []
926
+ end
927
+
928
+ class RuleGroupUpdate
929
+ attr_accessor action: ("INSERT" | "DELETE")
930
+ attr_accessor activated_rule: Types::ActivatedRule
931
+ SENSITIVE: []
932
+ end
933
+
934
+ class RuleSummary
935
+ attr_accessor rule_id: ::String
936
+ attr_accessor name: ::String
937
+ SENSITIVE: []
938
+ end
939
+
940
+ class RuleUpdate
941
+ attr_accessor action: ("INSERT" | "DELETE")
942
+ attr_accessor predicate: Types::Predicate
943
+ SENSITIVE: []
944
+ end
945
+
946
+ class SampledHTTPRequest
947
+ attr_accessor request: Types::HTTPRequest
948
+ attr_accessor weight: ::Integer
949
+ attr_accessor timestamp: ::Time
950
+ attr_accessor action: ::String
951
+ attr_accessor rule_within_rule_group: ::String
952
+ SENSITIVE: []
953
+ end
954
+
955
+ class SizeConstraint
956
+ attr_accessor field_to_match: Types::FieldToMatch
957
+ attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
958
+ attr_accessor comparison_operator: ("EQ" | "NE" | "LE" | "LT" | "GE" | "GT")
959
+ attr_accessor size: ::Integer
960
+ SENSITIVE: []
961
+ end
962
+
963
+ class SizeConstraintSet
964
+ attr_accessor size_constraint_set_id: ::String
965
+ attr_accessor name: ::String
966
+ attr_accessor size_constraints: ::Array[Types::SizeConstraint]
967
+ SENSITIVE: []
968
+ end
969
+
970
+ class SizeConstraintSetSummary
971
+ attr_accessor size_constraint_set_id: ::String
972
+ attr_accessor name: ::String
973
+ SENSITIVE: []
974
+ end
975
+
976
+ class SizeConstraintSetUpdate
977
+ attr_accessor action: ("INSERT" | "DELETE")
978
+ attr_accessor size_constraint: Types::SizeConstraint
979
+ SENSITIVE: []
980
+ end
981
+
982
+ class SqlInjectionMatchSet
983
+ attr_accessor sql_injection_match_set_id: ::String
984
+ attr_accessor name: ::String
985
+ attr_accessor sql_injection_match_tuples: ::Array[Types::SqlInjectionMatchTuple]
986
+ SENSITIVE: []
987
+ end
988
+
989
+ class SqlInjectionMatchSetSummary
990
+ attr_accessor sql_injection_match_set_id: ::String
991
+ attr_accessor name: ::String
992
+ SENSITIVE: []
993
+ end
994
+
995
+ class SqlInjectionMatchSetUpdate
996
+ attr_accessor action: ("INSERT" | "DELETE")
997
+ attr_accessor sql_injection_match_tuple: Types::SqlInjectionMatchTuple
998
+ SENSITIVE: []
999
+ end
1000
+
1001
+ class SqlInjectionMatchTuple
1002
+ attr_accessor field_to_match: Types::FieldToMatch
1003
+ attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
1004
+ SENSITIVE: []
1005
+ end
1006
+
1007
+ class SubscribedRuleGroupSummary
1008
+ attr_accessor rule_group_id: ::String
1009
+ attr_accessor name: ::String
1010
+ attr_accessor metric_name: ::String
1011
+ SENSITIVE: []
1012
+ end
1013
+
1014
+ class Tag
1015
+ attr_accessor key: ::String
1016
+ attr_accessor value: ::String
1017
+ SENSITIVE: []
1018
+ end
1019
+
1020
+ class TagInfoForResource
1021
+ attr_accessor resource_arn: ::String
1022
+ attr_accessor tag_list: ::Array[Types::Tag]
1023
+ SENSITIVE: []
1024
+ end
1025
+
1026
+ class TagResourceRequest
1027
+ attr_accessor resource_arn: ::String
1028
+ attr_accessor tags: ::Array[Types::Tag]
1029
+ SENSITIVE: []
1030
+ end
1031
+
1032
+ class TagResourceResponse < Aws::EmptyStructure
1033
+ end
1034
+
1035
+ class TimeWindow
1036
+ attr_accessor start_time: ::Time
1037
+ attr_accessor end_time: ::Time
1038
+ SENSITIVE: []
1039
+ end
1040
+
1041
+ class UntagResourceRequest
1042
+ attr_accessor resource_arn: ::String
1043
+ attr_accessor tag_keys: ::Array[::String]
1044
+ SENSITIVE: []
1045
+ end
1046
+
1047
+ class UntagResourceResponse < Aws::EmptyStructure
1048
+ end
1049
+
1050
+ class UpdateByteMatchSetRequest
1051
+ attr_accessor byte_match_set_id: ::String
1052
+ attr_accessor change_token: ::String
1053
+ attr_accessor updates: ::Array[Types::ByteMatchSetUpdate]
1054
+ SENSITIVE: []
1055
+ end
1056
+
1057
+ class UpdateByteMatchSetResponse
1058
+ attr_accessor change_token: ::String
1059
+ SENSITIVE: []
1060
+ end
1061
+
1062
+ class UpdateGeoMatchSetRequest
1063
+ attr_accessor geo_match_set_id: ::String
1064
+ attr_accessor change_token: ::String
1065
+ attr_accessor updates: ::Array[Types::GeoMatchSetUpdate]
1066
+ SENSITIVE: []
1067
+ end
1068
+
1069
+ class UpdateGeoMatchSetResponse
1070
+ attr_accessor change_token: ::String
1071
+ SENSITIVE: []
1072
+ end
1073
+
1074
+ class UpdateIPSetRequest
1075
+ attr_accessor ip_set_id: ::String
1076
+ attr_accessor change_token: ::String
1077
+ attr_accessor updates: ::Array[Types::IPSetUpdate]
1078
+ SENSITIVE: []
1079
+ end
1080
+
1081
+ class UpdateIPSetResponse
1082
+ attr_accessor change_token: ::String
1083
+ SENSITIVE: []
1084
+ end
1085
+
1086
+ class UpdateRateBasedRuleRequest
1087
+ attr_accessor rule_id: ::String
1088
+ attr_accessor change_token: ::String
1089
+ attr_accessor updates: ::Array[Types::RuleUpdate]
1090
+ attr_accessor rate_limit: ::Integer
1091
+ SENSITIVE: []
1092
+ end
1093
+
1094
+ class UpdateRateBasedRuleResponse
1095
+ attr_accessor change_token: ::String
1096
+ SENSITIVE: []
1097
+ end
1098
+
1099
+ class UpdateRegexMatchSetRequest
1100
+ attr_accessor regex_match_set_id: ::String
1101
+ attr_accessor updates: ::Array[Types::RegexMatchSetUpdate]
1102
+ attr_accessor change_token: ::String
1103
+ SENSITIVE: []
1104
+ end
1105
+
1106
+ class UpdateRegexMatchSetResponse
1107
+ attr_accessor change_token: ::String
1108
+ SENSITIVE: []
1109
+ end
1110
+
1111
+ class UpdateRegexPatternSetRequest
1112
+ attr_accessor regex_pattern_set_id: ::String
1113
+ attr_accessor updates: ::Array[Types::RegexPatternSetUpdate]
1114
+ attr_accessor change_token: ::String
1115
+ SENSITIVE: []
1116
+ end
1117
+
1118
+ class UpdateRegexPatternSetResponse
1119
+ attr_accessor change_token: ::String
1120
+ SENSITIVE: []
1121
+ end
1122
+
1123
+ class UpdateRuleGroupRequest
1124
+ attr_accessor rule_group_id: ::String
1125
+ attr_accessor updates: ::Array[Types::RuleGroupUpdate]
1126
+ attr_accessor change_token: ::String
1127
+ SENSITIVE: []
1128
+ end
1129
+
1130
+ class UpdateRuleGroupResponse
1131
+ attr_accessor change_token: ::String
1132
+ SENSITIVE: []
1133
+ end
1134
+
1135
+ class UpdateRuleRequest
1136
+ attr_accessor rule_id: ::String
1137
+ attr_accessor change_token: ::String
1138
+ attr_accessor updates: ::Array[Types::RuleUpdate]
1139
+ SENSITIVE: []
1140
+ end
1141
+
1142
+ class UpdateRuleResponse
1143
+ attr_accessor change_token: ::String
1144
+ SENSITIVE: []
1145
+ end
1146
+
1147
+ class UpdateSizeConstraintSetRequest
1148
+ attr_accessor size_constraint_set_id: ::String
1149
+ attr_accessor change_token: ::String
1150
+ attr_accessor updates: ::Array[Types::SizeConstraintSetUpdate]
1151
+ SENSITIVE: []
1152
+ end
1153
+
1154
+ class UpdateSizeConstraintSetResponse
1155
+ attr_accessor change_token: ::String
1156
+ SENSITIVE: []
1157
+ end
1158
+
1159
+ class UpdateSqlInjectionMatchSetRequest
1160
+ attr_accessor sql_injection_match_set_id: ::String
1161
+ attr_accessor change_token: ::String
1162
+ attr_accessor updates: ::Array[Types::SqlInjectionMatchSetUpdate]
1163
+ SENSITIVE: []
1164
+ end
1165
+
1166
+ class UpdateSqlInjectionMatchSetResponse
1167
+ attr_accessor change_token: ::String
1168
+ SENSITIVE: []
1169
+ end
1170
+
1171
+ class UpdateWebACLRequest
1172
+ attr_accessor web_acl_id: ::String
1173
+ attr_accessor change_token: ::String
1174
+ attr_accessor updates: ::Array[Types::WebACLUpdate]
1175
+ attr_accessor default_action: Types::WafAction
1176
+ SENSITIVE: []
1177
+ end
1178
+
1179
+ class UpdateWebACLResponse
1180
+ attr_accessor change_token: ::String
1181
+ SENSITIVE: []
1182
+ end
1183
+
1184
+ class UpdateXssMatchSetRequest
1185
+ attr_accessor xss_match_set_id: ::String
1186
+ attr_accessor change_token: ::String
1187
+ attr_accessor updates: ::Array[Types::XssMatchSetUpdate]
1188
+ SENSITIVE: []
1189
+ end
1190
+
1191
+ class UpdateXssMatchSetResponse
1192
+ attr_accessor change_token: ::String
1193
+ SENSITIVE: []
1194
+ end
1195
+
1196
+ class WAFBadRequestException
1197
+ attr_accessor message: ::String
1198
+ SENSITIVE: []
1199
+ end
1200
+
1201
+ class WAFDisallowedNameException
1202
+ attr_accessor message: ::String
1203
+ SENSITIVE: []
1204
+ end
1205
+
1206
+ class WAFEntityMigrationException
1207
+ attr_accessor message: ::String
1208
+ attr_accessor migration_error_type: ("ENTITY_NOT_SUPPORTED" | "ENTITY_NOT_FOUND" | "S3_BUCKET_NO_PERMISSION" | "S3_BUCKET_NOT_ACCESSIBLE" | "S3_BUCKET_NOT_FOUND" | "S3_BUCKET_INVALID_REGION" | "S3_INTERNAL_ERROR")
1209
+ attr_accessor migration_error_reason: ::String
1210
+ SENSITIVE: []
1211
+ end
1212
+
1213
+ class WAFInternalErrorException
1214
+ attr_accessor message: ::String
1215
+ SENSITIVE: []
1216
+ end
1217
+
1218
+ class WAFInvalidAccountException < Aws::EmptyStructure
1219
+ end
1220
+
1221
+ class WAFInvalidOperationException
1222
+ attr_accessor message: ::String
1223
+ SENSITIVE: []
1224
+ end
1225
+
1226
+ class WAFInvalidParameterException
1227
+ attr_accessor field: ("CHANGE_ACTION" | "WAF_ACTION" | "WAF_OVERRIDE_ACTION" | "PREDICATE_TYPE" | "IPSET_TYPE" | "BYTE_MATCH_FIELD_TYPE" | "SQL_INJECTION_MATCH_FIELD_TYPE" | "BYTE_MATCH_TEXT_TRANSFORMATION" | "BYTE_MATCH_POSITIONAL_CONSTRAINT" | "SIZE_CONSTRAINT_COMPARISON_OPERATOR" | "GEO_MATCH_LOCATION_TYPE" | "GEO_MATCH_LOCATION_VALUE" | "RATE_KEY" | "RULE_TYPE" | "NEXT_MARKER" | "RESOURCE_ARN" | "TAGS" | "TAG_KEYS")
1228
+ attr_accessor parameter: ::String
1229
+ attr_accessor reason: ("INVALID_OPTION" | "ILLEGAL_COMBINATION" | "ILLEGAL_ARGUMENT" | "INVALID_TAG_KEY")
1230
+ SENSITIVE: []
1231
+ end
1232
+
1233
+ class WAFInvalidPermissionPolicyException
1234
+ attr_accessor message: ::String
1235
+ SENSITIVE: []
1236
+ end
1237
+
1238
+ class WAFInvalidRegexPatternException
1239
+ attr_accessor message: ::String
1240
+ SENSITIVE: []
1241
+ end
1242
+
1243
+ class WAFLimitsExceededException
1244
+ attr_accessor message: ::String
1245
+ SENSITIVE: []
1246
+ end
1247
+
1248
+ class WAFNonEmptyEntityException
1249
+ attr_accessor message: ::String
1250
+ SENSITIVE: []
1251
+ end
1252
+
1253
+ class WAFNonexistentContainerException
1254
+ attr_accessor message: ::String
1255
+ SENSITIVE: []
1256
+ end
1257
+
1258
+ class WAFNonexistentItemException
1259
+ attr_accessor message: ::String
1260
+ SENSITIVE: []
1261
+ end
1262
+
1263
+ class WAFReferencedItemException
1264
+ attr_accessor message: ::String
1265
+ SENSITIVE: []
1266
+ end
1267
+
1268
+ class WAFServiceLinkedRoleErrorException
1269
+ attr_accessor message: ::String
1270
+ SENSITIVE: []
1271
+ end
1272
+
1273
+ class WAFStaleDataException
1274
+ attr_accessor message: ::String
1275
+ SENSITIVE: []
1276
+ end
1277
+
1278
+ class WAFSubscriptionNotFoundException
1279
+ attr_accessor message: ::String
1280
+ SENSITIVE: []
1281
+ end
1282
+
1283
+ class WAFTagOperationException
1284
+ attr_accessor message: ::String
1285
+ SENSITIVE: []
1286
+ end
1287
+
1288
+ class WAFTagOperationInternalErrorException
1289
+ attr_accessor message: ::String
1290
+ SENSITIVE: []
1291
+ end
1292
+
1293
+ class WafAction
1294
+ attr_accessor type: ("BLOCK" | "ALLOW" | "COUNT")
1295
+ SENSITIVE: []
1296
+ end
1297
+
1298
+ class WafOverrideAction
1299
+ attr_accessor type: ("NONE" | "COUNT")
1300
+ SENSITIVE: []
1301
+ end
1302
+
1303
+ class WebACL
1304
+ attr_accessor web_acl_id: ::String
1305
+ attr_accessor name: ::String
1306
+ attr_accessor metric_name: ::String
1307
+ attr_accessor default_action: Types::WafAction
1308
+ attr_accessor rules: ::Array[Types::ActivatedRule]
1309
+ attr_accessor web_acl_arn: ::String
1310
+ SENSITIVE: []
1311
+ end
1312
+
1313
+ class WebACLSummary
1314
+ attr_accessor web_acl_id: ::String
1315
+ attr_accessor name: ::String
1316
+ SENSITIVE: []
1317
+ end
1318
+
1319
+ class WebACLUpdate
1320
+ attr_accessor action: ("INSERT" | "DELETE")
1321
+ attr_accessor activated_rule: Types::ActivatedRule
1322
+ SENSITIVE: []
1323
+ end
1324
+
1325
+ class XssMatchSet
1326
+ attr_accessor xss_match_set_id: ::String
1327
+ attr_accessor name: ::String
1328
+ attr_accessor xss_match_tuples: ::Array[Types::XssMatchTuple]
1329
+ SENSITIVE: []
1330
+ end
1331
+
1332
+ class XssMatchSetSummary
1333
+ attr_accessor xss_match_set_id: ::String
1334
+ attr_accessor name: ::String
1335
+ SENSITIVE: []
1336
+ end
1337
+
1338
+ class XssMatchSetUpdate
1339
+ attr_accessor action: ("INSERT" | "DELETE")
1340
+ attr_accessor xss_match_tuple: Types::XssMatchTuple
1341
+ SENSITIVE: []
1342
+ end
1343
+
1344
+ class XssMatchTuple
1345
+ attr_accessor field_to_match: Types::FieldToMatch
1346
+ attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
1347
+ SENSITIVE: []
1348
+ end
1349
+ end
1350
+ end