mypy-boto3-waf-regional 1.28.12__py3-none-any.whl → 1.28.15.post1__py3-none-any.whl
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.
Potentially problematic release.
This version of mypy-boto3-waf-regional might be problematic. Click here for more details.
- mypy_boto3_waf_regional/__main__.py +3 -3
- mypy_boto3_waf_regional/client.py +12 -3
- mypy_boto3_waf_regional/client.pyi +12 -3
- mypy_boto3_waf_regional/type_defs.py +130 -252
- mypy_boto3_waf_regional/type_defs.pyi +130 -250
- mypy_boto3_waf_regional/version.py +1 -1
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/METADATA +17 -29
- mypy_boto3_waf_regional-1.28.15.post1.dist-info/RECORD +16 -0
- mypy_boto3_waf_regional-1.28.12.dist-info/RECORD +0 -16
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/LICENSE +0 -0
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/WHEEL +0 -0
- {mypy_boto3_waf_regional-1.28.12.dist-info → mypy_boto3_waf_regional-1.28.15.post1.dist-info}/top_level.txt +0 -0
|
@@ -6,9 +6,9 @@ Type annotations for waf-regional service type definitions.
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
8
8
|
```python
|
|
9
|
-
from mypy_boto3_waf_regional.type_defs import
|
|
9
|
+
from mypy_boto3_waf_regional.type_defs import ExcludedRuleTypeDef
|
|
10
10
|
|
|
11
|
-
data:
|
|
11
|
+
data: ExcludedRuleTypeDef = {...}
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
@@ -44,15 +44,11 @@ else:
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
__all__ = (
|
|
47
|
-
"ExcludedRuleOutputTypeDef",
|
|
48
|
-
"WafActionOutputTypeDef",
|
|
49
|
-
"WafOverrideActionOutputTypeDef",
|
|
50
47
|
"ExcludedRuleTypeDef",
|
|
51
48
|
"WafActionTypeDef",
|
|
52
49
|
"WafOverrideActionTypeDef",
|
|
53
50
|
"AssociateWebACLRequestRequestTypeDef",
|
|
54
51
|
"ByteMatchSetSummaryTypeDef",
|
|
55
|
-
"FieldToMatchOutputTypeDef",
|
|
56
52
|
"FieldToMatchTypeDef",
|
|
57
53
|
"CreateByteMatchSetRequestRequestTypeDef",
|
|
58
54
|
"ResponseMetadataTypeDef",
|
|
@@ -82,7 +78,6 @@ __all__ = (
|
|
|
82
78
|
"DeleteWebACLRequestRequestTypeDef",
|
|
83
79
|
"DeleteXssMatchSetRequestRequestTypeDef",
|
|
84
80
|
"DisassociateWebACLRequestRequestTypeDef",
|
|
85
|
-
"GeoMatchConstraintOutputTypeDef",
|
|
86
81
|
"GeoMatchConstraintTypeDef",
|
|
87
82
|
"GeoMatchSetSummaryTypeDef",
|
|
88
83
|
"GetByteMatchSetRequestRequestTypeDef",
|
|
@@ -106,7 +101,6 @@ __all__ = (
|
|
|
106
101
|
"GetWebACLRequestRequestTypeDef",
|
|
107
102
|
"GetXssMatchSetRequestRequestTypeDef",
|
|
108
103
|
"HTTPHeaderTypeDef",
|
|
109
|
-
"IPSetDescriptorOutputTypeDef",
|
|
110
104
|
"IPSetDescriptorTypeDef",
|
|
111
105
|
"IPSetSummaryTypeDef",
|
|
112
106
|
"ListActivatedRulesInRuleGroupRequestRequestTypeDef",
|
|
@@ -134,21 +128,15 @@ __all__ = (
|
|
|
134
128
|
"ListWebACLsRequestRequestTypeDef",
|
|
135
129
|
"ListXssMatchSetsRequestRequestTypeDef",
|
|
136
130
|
"XssMatchSetSummaryTypeDef",
|
|
137
|
-
"PredicateOutputTypeDef",
|
|
138
131
|
"PredicateTypeDef",
|
|
139
132
|
"PutPermissionPolicyRequestRequestTypeDef",
|
|
140
133
|
"RegexPatternSetUpdateTypeDef",
|
|
141
|
-
"TagOutputTypeDef",
|
|
142
134
|
"UntagResourceRequestRequestTypeDef",
|
|
143
135
|
"ActivatedRuleOutputTypeDef",
|
|
144
136
|
"ActivatedRuleTypeDef",
|
|
145
137
|
"ByteMatchTupleOutputTypeDef",
|
|
146
|
-
"LoggingConfigurationOutputTypeDef",
|
|
147
|
-
"RegexMatchTupleOutputTypeDef",
|
|
148
|
-
"SizeConstraintOutputTypeDef",
|
|
149
|
-
"SqlInjectionMatchTupleOutputTypeDef",
|
|
150
|
-
"XssMatchTupleOutputTypeDef",
|
|
151
138
|
"ByteMatchTupleTypeDef",
|
|
139
|
+
"LoggingConfigurationOutputTypeDef",
|
|
152
140
|
"LoggingConfigurationTypeDef",
|
|
153
141
|
"RegexMatchTupleTypeDef",
|
|
154
142
|
"SizeConstraintTypeDef",
|
|
@@ -189,6 +177,7 @@ __all__ = (
|
|
|
189
177
|
"CreateRuleGroupRequestRequestTypeDef",
|
|
190
178
|
"CreateRuleRequestRequestTypeDef",
|
|
191
179
|
"CreateWebACLRequestRequestTypeDef",
|
|
180
|
+
"TagInfoForResourceTypeDef",
|
|
192
181
|
"TagResourceRequestRequestTypeDef",
|
|
193
182
|
"CreateRegexPatternSetResponseTypeDef",
|
|
194
183
|
"GetRegexPatternSetResponseTypeDef",
|
|
@@ -217,25 +206,25 @@ __all__ = (
|
|
|
217
206
|
"RuleTypeDef",
|
|
218
207
|
"RuleUpdateTypeDef",
|
|
219
208
|
"UpdateRegexPatternSetRequestRequestTypeDef",
|
|
220
|
-
"TagInfoForResourceTypeDef",
|
|
221
209
|
"ListActivatedRulesInRuleGroupResponseTypeDef",
|
|
222
210
|
"WebACLTypeDef",
|
|
223
211
|
"RuleGroupUpdateTypeDef",
|
|
224
212
|
"WebACLUpdateTypeDef",
|
|
225
213
|
"ByteMatchSetTypeDef",
|
|
214
|
+
"ByteMatchSetUpdateTypeDef",
|
|
226
215
|
"GetLoggingConfigurationResponseTypeDef",
|
|
227
216
|
"ListLoggingConfigurationsResponseTypeDef",
|
|
228
217
|
"PutLoggingConfigurationResponseTypeDef",
|
|
229
|
-
"RegexMatchSetTypeDef",
|
|
230
|
-
"SizeConstraintSetTypeDef",
|
|
231
|
-
"SqlInjectionMatchSetTypeDef",
|
|
232
|
-
"XssMatchSetTypeDef",
|
|
233
|
-
"ByteMatchSetUpdateTypeDef",
|
|
234
218
|
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
219
|
+
"RegexMatchSetTypeDef",
|
|
235
220
|
"RegexMatchSetUpdateTypeDef",
|
|
221
|
+
"SizeConstraintSetTypeDef",
|
|
236
222
|
"SizeConstraintSetUpdateTypeDef",
|
|
223
|
+
"SqlInjectionMatchSetTypeDef",
|
|
237
224
|
"SqlInjectionMatchSetUpdateTypeDef",
|
|
225
|
+
"XssMatchSetTypeDef",
|
|
238
226
|
"XssMatchSetUpdateTypeDef",
|
|
227
|
+
"ListTagsForResourceResponseTypeDef",
|
|
239
228
|
"CreateGeoMatchSetResponseTypeDef",
|
|
240
229
|
"GetGeoMatchSetResponseTypeDef",
|
|
241
230
|
"UpdateGeoMatchSetRequestRequestTypeDef",
|
|
@@ -249,50 +238,28 @@ __all__ = (
|
|
|
249
238
|
"GetRuleResponseTypeDef",
|
|
250
239
|
"UpdateRateBasedRuleRequestRequestTypeDef",
|
|
251
240
|
"UpdateRuleRequestRequestTypeDef",
|
|
252
|
-
"ListTagsForResourceResponseTypeDef",
|
|
253
241
|
"CreateWebACLResponseTypeDef",
|
|
254
242
|
"GetWebACLResponseTypeDef",
|
|
255
243
|
"UpdateRuleGroupRequestRequestTypeDef",
|
|
256
244
|
"UpdateWebACLRequestRequestTypeDef",
|
|
257
245
|
"CreateByteMatchSetResponseTypeDef",
|
|
258
246
|
"GetByteMatchSetResponseTypeDef",
|
|
247
|
+
"UpdateByteMatchSetRequestRequestTypeDef",
|
|
259
248
|
"CreateRegexMatchSetResponseTypeDef",
|
|
260
249
|
"GetRegexMatchSetResponseTypeDef",
|
|
250
|
+
"UpdateRegexMatchSetRequestRequestTypeDef",
|
|
261
251
|
"CreateSizeConstraintSetResponseTypeDef",
|
|
262
252
|
"GetSizeConstraintSetResponseTypeDef",
|
|
253
|
+
"UpdateSizeConstraintSetRequestRequestTypeDef",
|
|
263
254
|
"CreateSqlInjectionMatchSetResponseTypeDef",
|
|
264
255
|
"GetSqlInjectionMatchSetResponseTypeDef",
|
|
256
|
+
"UpdateSqlInjectionMatchSetRequestRequestTypeDef",
|
|
265
257
|
"CreateXssMatchSetResponseTypeDef",
|
|
266
258
|
"GetXssMatchSetResponseTypeDef",
|
|
267
|
-
"UpdateByteMatchSetRequestRequestTypeDef",
|
|
268
|
-
"UpdateRegexMatchSetRequestRequestTypeDef",
|
|
269
|
-
"UpdateSizeConstraintSetRequestRequestTypeDef",
|
|
270
|
-
"UpdateSqlInjectionMatchSetRequestRequestTypeDef",
|
|
271
259
|
"UpdateXssMatchSetRequestRequestTypeDef",
|
|
272
260
|
"GetSampledRequestsResponseTypeDef",
|
|
273
261
|
)
|
|
274
262
|
|
|
275
|
-
ExcludedRuleOutputTypeDef = TypedDict(
|
|
276
|
-
"ExcludedRuleOutputTypeDef",
|
|
277
|
-
{
|
|
278
|
-
"RuleId": str,
|
|
279
|
-
},
|
|
280
|
-
)
|
|
281
|
-
|
|
282
|
-
WafActionOutputTypeDef = TypedDict(
|
|
283
|
-
"WafActionOutputTypeDef",
|
|
284
|
-
{
|
|
285
|
-
"Type": WafActionTypeType,
|
|
286
|
-
},
|
|
287
|
-
)
|
|
288
|
-
|
|
289
|
-
WafOverrideActionOutputTypeDef = TypedDict(
|
|
290
|
-
"WafOverrideActionOutputTypeDef",
|
|
291
|
-
{
|
|
292
|
-
"Type": WafOverrideActionTypeType,
|
|
293
|
-
},
|
|
294
|
-
)
|
|
295
|
-
|
|
296
263
|
ExcludedRuleTypeDef = TypedDict(
|
|
297
264
|
"ExcludedRuleTypeDef",
|
|
298
265
|
{
|
|
@@ -330,27 +297,6 @@ ByteMatchSetSummaryTypeDef = TypedDict(
|
|
|
330
297
|
},
|
|
331
298
|
)
|
|
332
299
|
|
|
333
|
-
_RequiredFieldToMatchOutputTypeDef = TypedDict(
|
|
334
|
-
"_RequiredFieldToMatchOutputTypeDef",
|
|
335
|
-
{
|
|
336
|
-
"Type": MatchFieldTypeType,
|
|
337
|
-
},
|
|
338
|
-
)
|
|
339
|
-
_OptionalFieldToMatchOutputTypeDef = TypedDict(
|
|
340
|
-
"_OptionalFieldToMatchOutputTypeDef",
|
|
341
|
-
{
|
|
342
|
-
"Data": str,
|
|
343
|
-
},
|
|
344
|
-
total=False,
|
|
345
|
-
)
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
class FieldToMatchOutputTypeDef(
|
|
349
|
-
_RequiredFieldToMatchOutputTypeDef, _OptionalFieldToMatchOutputTypeDef
|
|
350
|
-
):
|
|
351
|
-
pass
|
|
352
|
-
|
|
353
|
-
|
|
354
300
|
_RequiredFieldToMatchTypeDef = TypedDict(
|
|
355
301
|
"_RequiredFieldToMatchTypeDef",
|
|
356
302
|
{
|
|
@@ -619,14 +565,6 @@ DisassociateWebACLRequestRequestTypeDef = TypedDict(
|
|
|
619
565
|
},
|
|
620
566
|
)
|
|
621
567
|
|
|
622
|
-
GeoMatchConstraintOutputTypeDef = TypedDict(
|
|
623
|
-
"GeoMatchConstraintOutputTypeDef",
|
|
624
|
-
{
|
|
625
|
-
"Type": Literal["Country"],
|
|
626
|
-
"Value": GeoMatchConstraintValueType,
|
|
627
|
-
},
|
|
628
|
-
)
|
|
629
|
-
|
|
630
568
|
GeoMatchConstraintTypeDef = TypedDict(
|
|
631
569
|
"GeoMatchConstraintTypeDef",
|
|
632
570
|
{
|
|
@@ -810,14 +748,6 @@ HTTPHeaderTypeDef = TypedDict(
|
|
|
810
748
|
total=False,
|
|
811
749
|
)
|
|
812
750
|
|
|
813
|
-
IPSetDescriptorOutputTypeDef = TypedDict(
|
|
814
|
-
"IPSetDescriptorOutputTypeDef",
|
|
815
|
-
{
|
|
816
|
-
"Type": IPSetDescriptorTypeType,
|
|
817
|
-
"Value": str,
|
|
818
|
-
},
|
|
819
|
-
)
|
|
820
|
-
|
|
821
751
|
IPSetDescriptorTypeDef = TypedDict(
|
|
822
752
|
"IPSetDescriptorTypeDef",
|
|
823
753
|
{
|
|
@@ -1080,15 +1010,6 @@ XssMatchSetSummaryTypeDef = TypedDict(
|
|
|
1080
1010
|
},
|
|
1081
1011
|
)
|
|
1082
1012
|
|
|
1083
|
-
PredicateOutputTypeDef = TypedDict(
|
|
1084
|
-
"PredicateOutputTypeDef",
|
|
1085
|
-
{
|
|
1086
|
-
"Negated": bool,
|
|
1087
|
-
"Type": PredicateTypeType,
|
|
1088
|
-
"DataId": str,
|
|
1089
|
-
},
|
|
1090
|
-
)
|
|
1091
|
-
|
|
1092
1013
|
PredicateTypeDef = TypedDict(
|
|
1093
1014
|
"PredicateTypeDef",
|
|
1094
1015
|
{
|
|
@@ -1114,14 +1035,6 @@ RegexPatternSetUpdateTypeDef = TypedDict(
|
|
|
1114
1035
|
},
|
|
1115
1036
|
)
|
|
1116
1037
|
|
|
1117
|
-
TagOutputTypeDef = TypedDict(
|
|
1118
|
-
"TagOutputTypeDef",
|
|
1119
|
-
{
|
|
1120
|
-
"Key": str,
|
|
1121
|
-
"Value": str,
|
|
1122
|
-
},
|
|
1123
|
-
)
|
|
1124
|
-
|
|
1125
1038
|
UntagResourceRequestRequestTypeDef = TypedDict(
|
|
1126
1039
|
"UntagResourceRequestRequestTypeDef",
|
|
1127
1040
|
{
|
|
@@ -1140,10 +1053,10 @@ _RequiredActivatedRuleOutputTypeDef = TypedDict(
|
|
|
1140
1053
|
_OptionalActivatedRuleOutputTypeDef = TypedDict(
|
|
1141
1054
|
"_OptionalActivatedRuleOutputTypeDef",
|
|
1142
1055
|
{
|
|
1143
|
-
"Action":
|
|
1144
|
-
"OverrideAction":
|
|
1056
|
+
"Action": WafActionTypeDef,
|
|
1057
|
+
"OverrideAction": WafOverrideActionTypeDef,
|
|
1145
1058
|
"Type": WafRuleTypeType,
|
|
1146
|
-
"ExcludedRules": List[
|
|
1059
|
+
"ExcludedRules": List[ExcludedRuleTypeDef],
|
|
1147
1060
|
},
|
|
1148
1061
|
total=False,
|
|
1149
1062
|
)
|
|
@@ -1181,13 +1094,23 @@ class ActivatedRuleTypeDef(_RequiredActivatedRuleTypeDef, _OptionalActivatedRule
|
|
|
1181
1094
|
ByteMatchTupleOutputTypeDef = TypedDict(
|
|
1182
1095
|
"ByteMatchTupleOutputTypeDef",
|
|
1183
1096
|
{
|
|
1184
|
-
"FieldToMatch":
|
|
1097
|
+
"FieldToMatch": FieldToMatchTypeDef,
|
|
1185
1098
|
"TargetString": bytes,
|
|
1186
1099
|
"TextTransformation": TextTransformationType,
|
|
1187
1100
|
"PositionalConstraint": PositionalConstraintType,
|
|
1188
1101
|
},
|
|
1189
1102
|
)
|
|
1190
1103
|
|
|
1104
|
+
ByteMatchTupleTypeDef = TypedDict(
|
|
1105
|
+
"ByteMatchTupleTypeDef",
|
|
1106
|
+
{
|
|
1107
|
+
"FieldToMatch": FieldToMatchTypeDef,
|
|
1108
|
+
"TargetString": Union[str, bytes, IO[Any], StreamingBody],
|
|
1109
|
+
"TextTransformation": TextTransformationType,
|
|
1110
|
+
"PositionalConstraint": PositionalConstraintType,
|
|
1111
|
+
},
|
|
1112
|
+
)
|
|
1113
|
+
|
|
1191
1114
|
_RequiredLoggingConfigurationOutputTypeDef = TypedDict(
|
|
1192
1115
|
"_RequiredLoggingConfigurationOutputTypeDef",
|
|
1193
1116
|
{
|
|
@@ -1198,7 +1121,7 @@ _RequiredLoggingConfigurationOutputTypeDef = TypedDict(
|
|
|
1198
1121
|
_OptionalLoggingConfigurationOutputTypeDef = TypedDict(
|
|
1199
1122
|
"_OptionalLoggingConfigurationOutputTypeDef",
|
|
1200
1123
|
{
|
|
1201
|
-
"RedactedFields": List[
|
|
1124
|
+
"RedactedFields": List[FieldToMatchTypeDef],
|
|
1202
1125
|
},
|
|
1203
1126
|
total=False,
|
|
1204
1127
|
)
|
|
@@ -1210,51 +1133,6 @@ class LoggingConfigurationOutputTypeDef(
|
|
|
1210
1133
|
pass
|
|
1211
1134
|
|
|
1212
1135
|
|
|
1213
|
-
RegexMatchTupleOutputTypeDef = TypedDict(
|
|
1214
|
-
"RegexMatchTupleOutputTypeDef",
|
|
1215
|
-
{
|
|
1216
|
-
"FieldToMatch": FieldToMatchOutputTypeDef,
|
|
1217
|
-
"TextTransformation": TextTransformationType,
|
|
1218
|
-
"RegexPatternSetId": str,
|
|
1219
|
-
},
|
|
1220
|
-
)
|
|
1221
|
-
|
|
1222
|
-
SizeConstraintOutputTypeDef = TypedDict(
|
|
1223
|
-
"SizeConstraintOutputTypeDef",
|
|
1224
|
-
{
|
|
1225
|
-
"FieldToMatch": FieldToMatchOutputTypeDef,
|
|
1226
|
-
"TextTransformation": TextTransformationType,
|
|
1227
|
-
"ComparisonOperator": ComparisonOperatorType,
|
|
1228
|
-
"Size": int,
|
|
1229
|
-
},
|
|
1230
|
-
)
|
|
1231
|
-
|
|
1232
|
-
SqlInjectionMatchTupleOutputTypeDef = TypedDict(
|
|
1233
|
-
"SqlInjectionMatchTupleOutputTypeDef",
|
|
1234
|
-
{
|
|
1235
|
-
"FieldToMatch": FieldToMatchOutputTypeDef,
|
|
1236
|
-
"TextTransformation": TextTransformationType,
|
|
1237
|
-
},
|
|
1238
|
-
)
|
|
1239
|
-
|
|
1240
|
-
XssMatchTupleOutputTypeDef = TypedDict(
|
|
1241
|
-
"XssMatchTupleOutputTypeDef",
|
|
1242
|
-
{
|
|
1243
|
-
"FieldToMatch": FieldToMatchOutputTypeDef,
|
|
1244
|
-
"TextTransformation": TextTransformationType,
|
|
1245
|
-
},
|
|
1246
|
-
)
|
|
1247
|
-
|
|
1248
|
-
ByteMatchTupleTypeDef = TypedDict(
|
|
1249
|
-
"ByteMatchTupleTypeDef",
|
|
1250
|
-
{
|
|
1251
|
-
"FieldToMatch": FieldToMatchTypeDef,
|
|
1252
|
-
"TargetString": Union[str, bytes, IO[Any], StreamingBody],
|
|
1253
|
-
"TextTransformation": TextTransformationType,
|
|
1254
|
-
"PositionalConstraint": PositionalConstraintType,
|
|
1255
|
-
},
|
|
1256
|
-
)
|
|
1257
|
-
|
|
1258
1136
|
_RequiredLoggingConfigurationTypeDef = TypedDict(
|
|
1259
1137
|
"_RequiredLoggingConfigurationTypeDef",
|
|
1260
1138
|
{
|
|
@@ -1658,6 +1536,15 @@ class CreateWebACLRequestRequestTypeDef(
|
|
|
1658
1536
|
pass
|
|
1659
1537
|
|
|
1660
1538
|
|
|
1539
|
+
TagInfoForResourceTypeDef = TypedDict(
|
|
1540
|
+
"TagInfoForResourceTypeDef",
|
|
1541
|
+
{
|
|
1542
|
+
"ResourceARN": str,
|
|
1543
|
+
"TagList": List[TagTypeDef],
|
|
1544
|
+
},
|
|
1545
|
+
total=False,
|
|
1546
|
+
)
|
|
1547
|
+
|
|
1661
1548
|
TagResourceRequestRequestTypeDef = TypedDict(
|
|
1662
1549
|
"TagResourceRequestRequestTypeDef",
|
|
1663
1550
|
{
|
|
@@ -1704,7 +1591,7 @@ _RequiredGeoMatchSetTypeDef = TypedDict(
|
|
|
1704
1591
|
"_RequiredGeoMatchSetTypeDef",
|
|
1705
1592
|
{
|
|
1706
1593
|
"GeoMatchSetId": str,
|
|
1707
|
-
"GeoMatchConstraints": List[
|
|
1594
|
+
"GeoMatchConstraints": List[GeoMatchConstraintTypeDef],
|
|
1708
1595
|
},
|
|
1709
1596
|
)
|
|
1710
1597
|
_OptionalGeoMatchSetTypeDef = TypedDict(
|
|
@@ -1781,7 +1668,7 @@ _RequiredIPSetTypeDef = TypedDict(
|
|
|
1781
1668
|
"_RequiredIPSetTypeDef",
|
|
1782
1669
|
{
|
|
1783
1670
|
"IPSetId": str,
|
|
1784
|
-
"IPSetDescriptors": List[
|
|
1671
|
+
"IPSetDescriptors": List[IPSetDescriptorTypeDef],
|
|
1785
1672
|
},
|
|
1786
1673
|
)
|
|
1787
1674
|
_OptionalIPSetTypeDef = TypedDict(
|
|
@@ -1899,7 +1786,7 @@ _RequiredRateBasedRuleTypeDef = TypedDict(
|
|
|
1899
1786
|
"_RequiredRateBasedRuleTypeDef",
|
|
1900
1787
|
{
|
|
1901
1788
|
"RuleId": str,
|
|
1902
|
-
"MatchPredicates": List[
|
|
1789
|
+
"MatchPredicates": List[PredicateTypeDef],
|
|
1903
1790
|
"RateKey": Literal["IP"],
|
|
1904
1791
|
"RateLimit": int,
|
|
1905
1792
|
},
|
|
@@ -1922,7 +1809,7 @@ _RequiredRuleTypeDef = TypedDict(
|
|
|
1922
1809
|
"_RequiredRuleTypeDef",
|
|
1923
1810
|
{
|
|
1924
1811
|
"RuleId": str,
|
|
1925
|
-
"Predicates": List[
|
|
1812
|
+
"Predicates": List[PredicateTypeDef],
|
|
1926
1813
|
},
|
|
1927
1814
|
)
|
|
1928
1815
|
_OptionalRuleTypeDef = TypedDict(
|
|
@@ -1956,15 +1843,6 @@ UpdateRegexPatternSetRequestRequestTypeDef = TypedDict(
|
|
|
1956
1843
|
},
|
|
1957
1844
|
)
|
|
1958
1845
|
|
|
1959
|
-
TagInfoForResourceTypeDef = TypedDict(
|
|
1960
|
-
"TagInfoForResourceTypeDef",
|
|
1961
|
-
{
|
|
1962
|
-
"ResourceARN": str,
|
|
1963
|
-
"TagList": List[TagOutputTypeDef],
|
|
1964
|
-
},
|
|
1965
|
-
total=False,
|
|
1966
|
-
)
|
|
1967
|
-
|
|
1968
1846
|
ListActivatedRulesInRuleGroupResponseTypeDef = TypedDict(
|
|
1969
1847
|
"ListActivatedRulesInRuleGroupResponseTypeDef",
|
|
1970
1848
|
{
|
|
@@ -1978,7 +1856,7 @@ _RequiredWebACLTypeDef = TypedDict(
|
|
|
1978
1856
|
"_RequiredWebACLTypeDef",
|
|
1979
1857
|
{
|
|
1980
1858
|
"WebACLId": str,
|
|
1981
|
-
"DefaultAction":
|
|
1859
|
+
"DefaultAction": WafActionTypeDef,
|
|
1982
1860
|
"Rules": List[ActivatedRuleOutputTypeDef],
|
|
1983
1861
|
},
|
|
1984
1862
|
)
|
|
@@ -2033,6 +1911,14 @@ class ByteMatchSetTypeDef(_RequiredByteMatchSetTypeDef, _OptionalByteMatchSetTyp
|
|
|
2033
1911
|
pass
|
|
2034
1912
|
|
|
2035
1913
|
|
|
1914
|
+
ByteMatchSetUpdateTypeDef = TypedDict(
|
|
1915
|
+
"ByteMatchSetUpdateTypeDef",
|
|
1916
|
+
{
|
|
1917
|
+
"Action": ChangeActionType,
|
|
1918
|
+
"ByteMatchTuple": ByteMatchTupleTypeDef,
|
|
1919
|
+
},
|
|
1920
|
+
)
|
|
1921
|
+
|
|
2036
1922
|
GetLoggingConfigurationResponseTypeDef = TypedDict(
|
|
2037
1923
|
"GetLoggingConfigurationResponseTypeDef",
|
|
2038
1924
|
{
|
|
@@ -2058,21 +1944,36 @@ PutLoggingConfigurationResponseTypeDef = TypedDict(
|
|
|
2058
1944
|
},
|
|
2059
1945
|
)
|
|
2060
1946
|
|
|
1947
|
+
PutLoggingConfigurationRequestRequestTypeDef = TypedDict(
|
|
1948
|
+
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
1949
|
+
{
|
|
1950
|
+
"LoggingConfiguration": LoggingConfigurationTypeDef,
|
|
1951
|
+
},
|
|
1952
|
+
)
|
|
1953
|
+
|
|
2061
1954
|
RegexMatchSetTypeDef = TypedDict(
|
|
2062
1955
|
"RegexMatchSetTypeDef",
|
|
2063
1956
|
{
|
|
2064
1957
|
"RegexMatchSetId": str,
|
|
2065
1958
|
"Name": str,
|
|
2066
|
-
"RegexMatchTuples": List[
|
|
1959
|
+
"RegexMatchTuples": List[RegexMatchTupleTypeDef],
|
|
2067
1960
|
},
|
|
2068
1961
|
total=False,
|
|
2069
1962
|
)
|
|
2070
1963
|
|
|
1964
|
+
RegexMatchSetUpdateTypeDef = TypedDict(
|
|
1965
|
+
"RegexMatchSetUpdateTypeDef",
|
|
1966
|
+
{
|
|
1967
|
+
"Action": ChangeActionType,
|
|
1968
|
+
"RegexMatchTuple": RegexMatchTupleTypeDef,
|
|
1969
|
+
},
|
|
1970
|
+
)
|
|
1971
|
+
|
|
2071
1972
|
_RequiredSizeConstraintSetTypeDef = TypedDict(
|
|
2072
1973
|
"_RequiredSizeConstraintSetTypeDef",
|
|
2073
1974
|
{
|
|
2074
1975
|
"SizeConstraintSetId": str,
|
|
2075
|
-
"SizeConstraints": List[
|
|
1976
|
+
"SizeConstraints": List[SizeConstraintTypeDef],
|
|
2076
1977
|
},
|
|
2077
1978
|
)
|
|
2078
1979
|
_OptionalSizeConstraintSetTypeDef = TypedDict(
|
|
@@ -2090,11 +1991,19 @@ class SizeConstraintSetTypeDef(
|
|
|
2090
1991
|
pass
|
|
2091
1992
|
|
|
2092
1993
|
|
|
1994
|
+
SizeConstraintSetUpdateTypeDef = TypedDict(
|
|
1995
|
+
"SizeConstraintSetUpdateTypeDef",
|
|
1996
|
+
{
|
|
1997
|
+
"Action": ChangeActionType,
|
|
1998
|
+
"SizeConstraint": SizeConstraintTypeDef,
|
|
1999
|
+
},
|
|
2000
|
+
)
|
|
2001
|
+
|
|
2093
2002
|
_RequiredSqlInjectionMatchSetTypeDef = TypedDict(
|
|
2094
2003
|
"_RequiredSqlInjectionMatchSetTypeDef",
|
|
2095
2004
|
{
|
|
2096
2005
|
"SqlInjectionMatchSetId": str,
|
|
2097
|
-
"SqlInjectionMatchTuples": List[
|
|
2006
|
+
"SqlInjectionMatchTuples": List[SqlInjectionMatchTupleTypeDef],
|
|
2098
2007
|
},
|
|
2099
2008
|
)
|
|
2100
2009
|
_OptionalSqlInjectionMatchSetTypeDef = TypedDict(
|
|
@@ -2112,11 +2021,19 @@ class SqlInjectionMatchSetTypeDef(
|
|
|
2112
2021
|
pass
|
|
2113
2022
|
|
|
2114
2023
|
|
|
2024
|
+
SqlInjectionMatchSetUpdateTypeDef = TypedDict(
|
|
2025
|
+
"SqlInjectionMatchSetUpdateTypeDef",
|
|
2026
|
+
{
|
|
2027
|
+
"Action": ChangeActionType,
|
|
2028
|
+
"SqlInjectionMatchTuple": SqlInjectionMatchTupleTypeDef,
|
|
2029
|
+
},
|
|
2030
|
+
)
|
|
2031
|
+
|
|
2115
2032
|
_RequiredXssMatchSetTypeDef = TypedDict(
|
|
2116
2033
|
"_RequiredXssMatchSetTypeDef",
|
|
2117
2034
|
{
|
|
2118
2035
|
"XssMatchSetId": str,
|
|
2119
|
-
"XssMatchTuples": List[
|
|
2036
|
+
"XssMatchTuples": List[XssMatchTupleTypeDef],
|
|
2120
2037
|
},
|
|
2121
2038
|
)
|
|
2122
2039
|
_OptionalXssMatchSetTypeDef = TypedDict(
|
|
@@ -2132,50 +2049,20 @@ class XssMatchSetTypeDef(_RequiredXssMatchSetTypeDef, _OptionalXssMatchSetTypeDe
|
|
|
2132
2049
|
pass
|
|
2133
2050
|
|
|
2134
2051
|
|
|
2135
|
-
|
|
2136
|
-
"
|
|
2137
|
-
{
|
|
2138
|
-
"Action": ChangeActionType,
|
|
2139
|
-
"ByteMatchTuple": ByteMatchTupleTypeDef,
|
|
2140
|
-
},
|
|
2141
|
-
)
|
|
2142
|
-
|
|
2143
|
-
PutLoggingConfigurationRequestRequestTypeDef = TypedDict(
|
|
2144
|
-
"PutLoggingConfigurationRequestRequestTypeDef",
|
|
2145
|
-
{
|
|
2146
|
-
"LoggingConfiguration": LoggingConfigurationTypeDef,
|
|
2147
|
-
},
|
|
2148
|
-
)
|
|
2149
|
-
|
|
2150
|
-
RegexMatchSetUpdateTypeDef = TypedDict(
|
|
2151
|
-
"RegexMatchSetUpdateTypeDef",
|
|
2152
|
-
{
|
|
2153
|
-
"Action": ChangeActionType,
|
|
2154
|
-
"RegexMatchTuple": RegexMatchTupleTypeDef,
|
|
2155
|
-
},
|
|
2156
|
-
)
|
|
2157
|
-
|
|
2158
|
-
SizeConstraintSetUpdateTypeDef = TypedDict(
|
|
2159
|
-
"SizeConstraintSetUpdateTypeDef",
|
|
2160
|
-
{
|
|
2161
|
-
"Action": ChangeActionType,
|
|
2162
|
-
"SizeConstraint": SizeConstraintTypeDef,
|
|
2163
|
-
},
|
|
2164
|
-
)
|
|
2165
|
-
|
|
2166
|
-
SqlInjectionMatchSetUpdateTypeDef = TypedDict(
|
|
2167
|
-
"SqlInjectionMatchSetUpdateTypeDef",
|
|
2052
|
+
XssMatchSetUpdateTypeDef = TypedDict(
|
|
2053
|
+
"XssMatchSetUpdateTypeDef",
|
|
2168
2054
|
{
|
|
2169
2055
|
"Action": ChangeActionType,
|
|
2170
|
-
"
|
|
2056
|
+
"XssMatchTuple": XssMatchTupleTypeDef,
|
|
2171
2057
|
},
|
|
2172
2058
|
)
|
|
2173
2059
|
|
|
2174
|
-
|
|
2175
|
-
"
|
|
2060
|
+
ListTagsForResourceResponseTypeDef = TypedDict(
|
|
2061
|
+
"ListTagsForResourceResponseTypeDef",
|
|
2176
2062
|
{
|
|
2177
|
-
"
|
|
2178
|
-
"
|
|
2063
|
+
"NextMarker": str,
|
|
2064
|
+
"TagInfoForResource": TagInfoForResourceTypeDef,
|
|
2065
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2179
2066
|
},
|
|
2180
2067
|
)
|
|
2181
2068
|
|
|
@@ -2308,15 +2195,6 @@ UpdateRuleRequestRequestTypeDef = TypedDict(
|
|
|
2308
2195
|
},
|
|
2309
2196
|
)
|
|
2310
2197
|
|
|
2311
|
-
ListTagsForResourceResponseTypeDef = TypedDict(
|
|
2312
|
-
"ListTagsForResourceResponseTypeDef",
|
|
2313
|
-
{
|
|
2314
|
-
"NextMarker": str,
|
|
2315
|
-
"TagInfoForResource": TagInfoForResourceTypeDef,
|
|
2316
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2317
|
-
},
|
|
2318
|
-
)
|
|
2319
|
-
|
|
2320
2198
|
CreateWebACLResponseTypeDef = TypedDict(
|
|
2321
2199
|
"CreateWebACLResponseTypeDef",
|
|
2322
2200
|
{
|
|
@@ -2383,6 +2261,15 @@ GetByteMatchSetResponseTypeDef = TypedDict(
|
|
|
2383
2261
|
},
|
|
2384
2262
|
)
|
|
2385
2263
|
|
|
2264
|
+
UpdateByteMatchSetRequestRequestTypeDef = TypedDict(
|
|
2265
|
+
"UpdateByteMatchSetRequestRequestTypeDef",
|
|
2266
|
+
{
|
|
2267
|
+
"ByteMatchSetId": str,
|
|
2268
|
+
"ChangeToken": str,
|
|
2269
|
+
"Updates": Sequence[ByteMatchSetUpdateTypeDef],
|
|
2270
|
+
},
|
|
2271
|
+
)
|
|
2272
|
+
|
|
2386
2273
|
CreateRegexMatchSetResponseTypeDef = TypedDict(
|
|
2387
2274
|
"CreateRegexMatchSetResponseTypeDef",
|
|
2388
2275
|
{
|
|
@@ -2400,6 +2287,15 @@ GetRegexMatchSetResponseTypeDef = TypedDict(
|
|
|
2400
2287
|
},
|
|
2401
2288
|
)
|
|
2402
2289
|
|
|
2290
|
+
UpdateRegexMatchSetRequestRequestTypeDef = TypedDict(
|
|
2291
|
+
"UpdateRegexMatchSetRequestRequestTypeDef",
|
|
2292
|
+
{
|
|
2293
|
+
"RegexMatchSetId": str,
|
|
2294
|
+
"Updates": Sequence[RegexMatchSetUpdateTypeDef],
|
|
2295
|
+
"ChangeToken": str,
|
|
2296
|
+
},
|
|
2297
|
+
)
|
|
2298
|
+
|
|
2403
2299
|
CreateSizeConstraintSetResponseTypeDef = TypedDict(
|
|
2404
2300
|
"CreateSizeConstraintSetResponseTypeDef",
|
|
2405
2301
|
{
|
|
@@ -2417,6 +2313,15 @@ GetSizeConstraintSetResponseTypeDef = TypedDict(
|
|
|
2417
2313
|
},
|
|
2418
2314
|
)
|
|
2419
2315
|
|
|
2316
|
+
UpdateSizeConstraintSetRequestRequestTypeDef = TypedDict(
|
|
2317
|
+
"UpdateSizeConstraintSetRequestRequestTypeDef",
|
|
2318
|
+
{
|
|
2319
|
+
"SizeConstraintSetId": str,
|
|
2320
|
+
"ChangeToken": str,
|
|
2321
|
+
"Updates": Sequence[SizeConstraintSetUpdateTypeDef],
|
|
2322
|
+
},
|
|
2323
|
+
)
|
|
2324
|
+
|
|
2420
2325
|
CreateSqlInjectionMatchSetResponseTypeDef = TypedDict(
|
|
2421
2326
|
"CreateSqlInjectionMatchSetResponseTypeDef",
|
|
2422
2327
|
{
|
|
@@ -2434,6 +2339,15 @@ GetSqlInjectionMatchSetResponseTypeDef = TypedDict(
|
|
|
2434
2339
|
},
|
|
2435
2340
|
)
|
|
2436
2341
|
|
|
2342
|
+
UpdateSqlInjectionMatchSetRequestRequestTypeDef = TypedDict(
|
|
2343
|
+
"UpdateSqlInjectionMatchSetRequestRequestTypeDef",
|
|
2344
|
+
{
|
|
2345
|
+
"SqlInjectionMatchSetId": str,
|
|
2346
|
+
"ChangeToken": str,
|
|
2347
|
+
"Updates": Sequence[SqlInjectionMatchSetUpdateTypeDef],
|
|
2348
|
+
},
|
|
2349
|
+
)
|
|
2350
|
+
|
|
2437
2351
|
CreateXssMatchSetResponseTypeDef = TypedDict(
|
|
2438
2352
|
"CreateXssMatchSetResponseTypeDef",
|
|
2439
2353
|
{
|
|
@@ -2451,42 +2365,6 @@ GetXssMatchSetResponseTypeDef = TypedDict(
|
|
|
2451
2365
|
},
|
|
2452
2366
|
)
|
|
2453
2367
|
|
|
2454
|
-
UpdateByteMatchSetRequestRequestTypeDef = TypedDict(
|
|
2455
|
-
"UpdateByteMatchSetRequestRequestTypeDef",
|
|
2456
|
-
{
|
|
2457
|
-
"ByteMatchSetId": str,
|
|
2458
|
-
"ChangeToken": str,
|
|
2459
|
-
"Updates": Sequence[ByteMatchSetUpdateTypeDef],
|
|
2460
|
-
},
|
|
2461
|
-
)
|
|
2462
|
-
|
|
2463
|
-
UpdateRegexMatchSetRequestRequestTypeDef = TypedDict(
|
|
2464
|
-
"UpdateRegexMatchSetRequestRequestTypeDef",
|
|
2465
|
-
{
|
|
2466
|
-
"RegexMatchSetId": str,
|
|
2467
|
-
"Updates": Sequence[RegexMatchSetUpdateTypeDef],
|
|
2468
|
-
"ChangeToken": str,
|
|
2469
|
-
},
|
|
2470
|
-
)
|
|
2471
|
-
|
|
2472
|
-
UpdateSizeConstraintSetRequestRequestTypeDef = TypedDict(
|
|
2473
|
-
"UpdateSizeConstraintSetRequestRequestTypeDef",
|
|
2474
|
-
{
|
|
2475
|
-
"SizeConstraintSetId": str,
|
|
2476
|
-
"ChangeToken": str,
|
|
2477
|
-
"Updates": Sequence[SizeConstraintSetUpdateTypeDef],
|
|
2478
|
-
},
|
|
2479
|
-
)
|
|
2480
|
-
|
|
2481
|
-
UpdateSqlInjectionMatchSetRequestRequestTypeDef = TypedDict(
|
|
2482
|
-
"UpdateSqlInjectionMatchSetRequestRequestTypeDef",
|
|
2483
|
-
{
|
|
2484
|
-
"SqlInjectionMatchSetId": str,
|
|
2485
|
-
"ChangeToken": str,
|
|
2486
|
-
"Updates": Sequence[SqlInjectionMatchSetUpdateTypeDef],
|
|
2487
|
-
},
|
|
2488
|
-
)
|
|
2489
|
-
|
|
2490
2368
|
UpdateXssMatchSetRequestRequestTypeDef = TypedDict(
|
|
2491
2369
|
"UpdateXssMatchSetRequestRequestTypeDef",
|
|
2492
2370
|
{
|