@aws-sdk/client-waf-regional 3.428.0 → 3.429.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.
|
@@ -48,7 +48,7 @@ export interface WafAction {
|
|
|
48
48
|
* </li>
|
|
49
49
|
* </ul>
|
|
50
50
|
*/
|
|
51
|
-
Type: WafActionType |
|
|
51
|
+
Type: WafActionType | undefined;
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* @public
|
|
@@ -101,7 +101,7 @@ export interface WafOverrideAction {
|
|
|
101
101
|
* <p>
|
|
102
102
|
* <code>COUNT</code> overrides the action specified by the individual rule within a <code>RuleGroup</code> . If set to <code>NONE</code>, the rule's action will take place.</p>
|
|
103
103
|
*/
|
|
104
|
-
Type: WafOverrideActionType |
|
|
104
|
+
Type: WafOverrideActionType | undefined;
|
|
105
105
|
}
|
|
106
106
|
/**
|
|
107
107
|
* @public
|
|
@@ -189,7 +189,7 @@ export interface ActivatedRule {
|
|
|
189
189
|
* <p>The rule type, either <code>REGULAR</code>, as defined by <a>Rule</a>, <code>RATE_BASED</code>, as defined by <a>RateBasedRule</a>, or <code>GROUP</code>, as defined by <a>RuleGroup</a>. The default is REGULAR. Although this field is optional, be aware that if you try to add a RATE_BASED rule to a web ACL without setting the type, the <a>UpdateWebACL</a> request will fail because the request tries to add a REGULAR rule with the specified ID, which does not exist.
|
|
190
190
|
* </p>
|
|
191
191
|
*/
|
|
192
|
-
Type?: WafRuleType
|
|
192
|
+
Type?: WafRuleType;
|
|
193
193
|
/**
|
|
194
194
|
* @public
|
|
195
195
|
* <p>An array of rules to exclude from a rule group. This is applicable only when the <code>ActivatedRule</code> refers to a <code>RuleGroup</code>.</p>
|
|
@@ -379,9 +379,9 @@ export type ParameterExceptionReason = (typeof ParameterExceptionReason)[keyof t
|
|
|
379
379
|
export declare class WAFInvalidParameterException extends __BaseException {
|
|
380
380
|
readonly name: "WAFInvalidParameterException";
|
|
381
381
|
readonly $fault: "client";
|
|
382
|
-
field?: ParameterExceptionField
|
|
382
|
+
field?: ParameterExceptionField;
|
|
383
383
|
parameter?: string;
|
|
384
|
-
reason?: ParameterExceptionReason
|
|
384
|
+
reason?: ParameterExceptionReason;
|
|
385
385
|
/**
|
|
386
386
|
* @internal
|
|
387
387
|
*/
|
|
@@ -500,7 +500,7 @@ export interface FieldToMatch {
|
|
|
500
500
|
* </li>
|
|
501
501
|
* </ul>
|
|
502
502
|
*/
|
|
503
|
-
Type: MatchFieldType |
|
|
503
|
+
Type: MatchFieldType | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* @public
|
|
506
506
|
* <p>When the value of <code>Type</code> is <code>HEADER</code>, enter the name of the header that you want AWS WAF to search,
|
|
@@ -724,7 +724,7 @@ export interface ByteMatchTuple {
|
|
|
724
724
|
* </p>
|
|
725
725
|
* <p>Specify <code>NONE</code> if you don't want to perform any text transformations.</p>
|
|
726
726
|
*/
|
|
727
|
-
TextTransformation: TextTransformation |
|
|
727
|
+
TextTransformation: TextTransformation | undefined;
|
|
728
728
|
/**
|
|
729
729
|
* @public
|
|
730
730
|
* <p>Within the portion of a web request that you want to search (for example, in the query string, if any), specify where you want AWS WAF to search. Valid values include the following:</p>
|
|
@@ -773,7 +773,7 @@ export interface ByteMatchTuple {
|
|
|
773
773
|
* </p>
|
|
774
774
|
* <p>The value of <code>TargetString</code> must appear at the end of the specified part of the web request.</p>
|
|
775
775
|
*/
|
|
776
|
-
PositionalConstraint: PositionalConstraint |
|
|
776
|
+
PositionalConstraint: PositionalConstraint | undefined;
|
|
777
777
|
}
|
|
778
778
|
/**
|
|
779
779
|
* @public
|
|
@@ -1170,12 +1170,12 @@ export interface GeoMatchConstraint {
|
|
|
1170
1170
|
* @public
|
|
1171
1171
|
* <p>The type of geographical area you want AWS WAF to search for. Currently <code>Country</code> is the only valid value.</p>
|
|
1172
1172
|
*/
|
|
1173
|
-
Type: GeoMatchConstraintType |
|
|
1173
|
+
Type: GeoMatchConstraintType | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* @public
|
|
1176
1176
|
* <p>The country that you want AWS WAF to search for.</p>
|
|
1177
1177
|
*/
|
|
1178
|
-
Value: GeoMatchConstraintValue |
|
|
1178
|
+
Value: GeoMatchConstraintValue | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
1181
|
* @public
|
|
@@ -1269,7 +1269,7 @@ export interface IPSetDescriptor {
|
|
|
1269
1269
|
* @public
|
|
1270
1270
|
* <p>Specify <code>IPV4</code> or <code>IPV6</code>.</p>
|
|
1271
1271
|
*/
|
|
1272
|
-
Type: IPSetDescriptorType |
|
|
1272
|
+
Type: IPSetDescriptorType | undefined;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* @public
|
|
1275
1275
|
* <p>Specify an IPv4 address by using CIDR notation. For example:</p>
|
|
@@ -1415,7 +1415,7 @@ export interface CreateRateBasedRuleRequest {
|
|
|
1415
1415
|
* address are subject to the <code>RateLimit</code> that is specified in
|
|
1416
1416
|
* the <code>RateBasedRule</code>.</p>
|
|
1417
1417
|
*/
|
|
1418
|
-
RateKey: RateKey |
|
|
1418
|
+
RateKey: RateKey | undefined;
|
|
1419
1419
|
/**
|
|
1420
1420
|
* @public
|
|
1421
1421
|
* <p>The maximum number of requests, which have an identical value in the field that is
|
|
@@ -1485,7 +1485,7 @@ export interface Predicate {
|
|
|
1485
1485
|
* @public
|
|
1486
1486
|
* <p>The type of predicate in a <code>Rule</code>, such as <code>ByteMatch</code> or <code>IPSet</code>.</p>
|
|
1487
1487
|
*/
|
|
1488
|
-
Type: PredicateType |
|
|
1488
|
+
Type: PredicateType | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* @public
|
|
1491
1491
|
* <p>A unique identifier for a predicate in a <code>Rule</code>, such as <code>ByteMatchSetId</code> or <code>IPSetId</code>.
|
|
@@ -1558,7 +1558,7 @@ export interface RateBasedRule {
|
|
|
1558
1558
|
* address are subject to the <code>RateLimit</code> that is specified in the
|
|
1559
1559
|
* <code>RateBasedRule</code>.</p>
|
|
1560
1560
|
*/
|
|
1561
|
-
RateKey: RateKey |
|
|
1561
|
+
RateKey: RateKey | undefined;
|
|
1562
1562
|
/**
|
|
1563
1563
|
* @public
|
|
1564
1564
|
* <p>The maximum number of requests, which have an identical value in the field specified
|
|
@@ -1762,7 +1762,7 @@ export interface RegexMatchTuple {
|
|
|
1762
1762
|
* </p>
|
|
1763
1763
|
* <p>Specify <code>NONE</code> if you don't want to perform any text transformations.</p>
|
|
1764
1764
|
*/
|
|
1765
|
-
TextTransformation: TextTransformation |
|
|
1765
|
+
TextTransformation: TextTransformation | undefined;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* @public
|
|
1768
1768
|
* <p>The <code>RegexPatternSetId</code> for a <code>RegexPatternSet</code>. You use <code>RegexPatternSetId</code> to get information about a
|
|
@@ -2239,7 +2239,7 @@ export interface SizeConstraint {
|
|
|
2239
2239
|
* </p>
|
|
2240
2240
|
* <p>Use this option to decode a URL-encoded value.</p>
|
|
2241
2241
|
*/
|
|
2242
|
-
TextTransformation: TextTransformation |
|
|
2242
|
+
TextTransformation: TextTransformation | undefined;
|
|
2243
2243
|
/**
|
|
2244
2244
|
* @public
|
|
2245
2245
|
* <p>The type of comparison you want AWS WAF to perform. AWS WAF uses this in combination with the provided <code>Size</code> and <code>FieldToMatch</code>
|
|
@@ -2265,7 +2265,7 @@ export interface SizeConstraint {
|
|
|
2265
2265
|
* <b>GT</b>: Used to test if the <code>Size</code> is strictly greater than the size of the <code>FieldToMatch</code>
|
|
2266
2266
|
* </p>
|
|
2267
2267
|
*/
|
|
2268
|
-
ComparisonOperator: ComparisonOperator |
|
|
2268
|
+
ComparisonOperator: ComparisonOperator | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* @public
|
|
2271
2271
|
* <p>The size in bytes that you want AWS WAF to compare against the size of the specified <code>FieldToMatch</code>. AWS WAF uses this in combination
|
|
@@ -2462,7 +2462,7 @@ export interface SqlInjectionMatchTuple {
|
|
|
2462
2462
|
* </p>
|
|
2463
2463
|
* <p>Specify <code>NONE</code> if you don't want to perform any text transformations.</p>
|
|
2464
2464
|
*/
|
|
2465
|
-
TextTransformation: TextTransformation |
|
|
2465
|
+
TextTransformation: TextTransformation | undefined;
|
|
2466
2466
|
}
|
|
2467
2467
|
/**
|
|
2468
2468
|
* @public
|
|
@@ -2723,7 +2723,7 @@ export type MigrationErrorType = (typeof MigrationErrorType)[keyof typeof Migrat
|
|
|
2723
2723
|
export declare class WAFEntityMigrationException extends __BaseException {
|
|
2724
2724
|
readonly name: "WAFEntityMigrationException";
|
|
2725
2725
|
readonly $fault: "client";
|
|
2726
|
-
MigrationErrorType?: MigrationErrorType
|
|
2726
|
+
MigrationErrorType?: MigrationErrorType;
|
|
2727
2727
|
MigrationErrorReason?: string;
|
|
2728
2728
|
/**
|
|
2729
2729
|
* @internal
|
|
@@ -2893,7 +2893,7 @@ export interface XssMatchTuple {
|
|
|
2893
2893
|
* </p>
|
|
2894
2894
|
* <p>Specify <code>NONE</code> if you don't want to perform any text transformations.</p>
|
|
2895
2895
|
*/
|
|
2896
|
-
TextTransformation: TextTransformation |
|
|
2896
|
+
TextTransformation: TextTransformation | undefined;
|
|
2897
2897
|
}
|
|
2898
2898
|
/**
|
|
2899
2899
|
* @public
|
|
@@ -3474,7 +3474,7 @@ export interface GetChangeTokenStatusResponse {
|
|
|
3474
3474
|
* @public
|
|
3475
3475
|
* <p>The status of the change token.</p>
|
|
3476
3476
|
*/
|
|
3477
|
-
ChangeTokenStatus?: ChangeTokenStatus
|
|
3477
|
+
ChangeTokenStatus?: ChangeTokenStatus;
|
|
3478
3478
|
}
|
|
3479
3479
|
/**
|
|
3480
3480
|
* @public
|
|
@@ -4709,7 +4709,7 @@ export interface ListResourcesForWebACLRequest {
|
|
|
4709
4709
|
* @public
|
|
4710
4710
|
* <p>The type of resource to list, either an application load balancer or Amazon API Gateway.</p>
|
|
4711
4711
|
*/
|
|
4712
|
-
ResourceType?: ResourceType
|
|
4712
|
+
ResourceType?: ResourceType;
|
|
4713
4713
|
}
|
|
4714
4714
|
/**
|
|
4715
4715
|
* @public
|
|
@@ -5361,7 +5361,7 @@ export interface ByteMatchSetUpdate {
|
|
|
5361
5361
|
* @public
|
|
5362
5362
|
* <p>Specifies whether to insert or delete a <a>ByteMatchTuple</a>.</p>
|
|
5363
5363
|
*/
|
|
5364
|
-
Action: ChangeAction |
|
|
5364
|
+
Action: ChangeAction | undefined;
|
|
5365
5365
|
/**
|
|
5366
5366
|
* @public
|
|
5367
5367
|
* <p>Information about the part of a web request that you want AWS WAF to inspect and the value that you want AWS WAF to search for.
|
|
@@ -5465,7 +5465,7 @@ export interface GeoMatchSetUpdate {
|
|
|
5465
5465
|
* @public
|
|
5466
5466
|
* <p>Specifies whether to insert or delete a country with <a>UpdateGeoMatchSet</a>.</p>
|
|
5467
5467
|
*/
|
|
5468
|
-
Action: ChangeAction |
|
|
5468
|
+
Action: ChangeAction | undefined;
|
|
5469
5469
|
/**
|
|
5470
5470
|
* @public
|
|
5471
5471
|
* <p>The country from which web requests originate that you want AWS WAF to search for.</p>
|
|
@@ -5535,7 +5535,7 @@ export interface IPSetUpdate {
|
|
|
5535
5535
|
* @public
|
|
5536
5536
|
* <p>Specifies whether to insert or delete an IP address with <a>UpdateIPSet</a>.</p>
|
|
5537
5537
|
*/
|
|
5538
|
-
Action: ChangeAction |
|
|
5538
|
+
Action: ChangeAction | undefined;
|
|
5539
5539
|
/**
|
|
5540
5540
|
* @public
|
|
5541
5541
|
* <p>The IP address type (<code>IPV4</code> or <code>IPV6</code>) and the IP address range (in CIDR notation) that web requests originate from.</p>
|
|
@@ -5607,7 +5607,7 @@ export interface RuleUpdate {
|
|
|
5607
5607
|
* <p>Specify <code>INSERT</code> to add a <code>Predicate</code> to a <code>Rule</code>. Use <code>DELETE</code> to remove a
|
|
5608
5608
|
* <code>Predicate</code> from a <code>Rule</code>.</p>
|
|
5609
5609
|
*/
|
|
5610
|
-
Action: ChangeAction |
|
|
5610
|
+
Action: ChangeAction | undefined;
|
|
5611
5611
|
/**
|
|
5612
5612
|
* @public
|
|
5613
5613
|
* <p>The ID of the <code>Predicate</code> (such as an <code>IPSet</code>) that you want to add to a <code>Rule</code>.</p>
|
|
@@ -5674,7 +5674,7 @@ export interface RegexMatchSetUpdate {
|
|
|
5674
5674
|
* @public
|
|
5675
5675
|
* <p>Specifies whether to insert or delete a <a>RegexMatchTuple</a>.</p>
|
|
5676
5676
|
*/
|
|
5677
|
-
Action: ChangeAction |
|
|
5677
|
+
Action: ChangeAction | undefined;
|
|
5678
5678
|
/**
|
|
5679
5679
|
* @public
|
|
5680
5680
|
* <p>Information about the part of a web request that you want AWS WAF to inspect and the identifier of the regular expression (regex) pattern that you want AWS WAF to search for.
|
|
@@ -5734,7 +5734,7 @@ export interface RegexPatternSetUpdate {
|
|
|
5734
5734
|
* @public
|
|
5735
5735
|
* <p>Specifies whether to insert or delete a <code>RegexPatternString</code>.</p>
|
|
5736
5736
|
*/
|
|
5737
|
-
Action: ChangeAction |
|
|
5737
|
+
Action: ChangeAction | undefined;
|
|
5738
5738
|
/**
|
|
5739
5739
|
* @public
|
|
5740
5740
|
* <p>Specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as <code>B[a@]dB[o0]t</code>.</p>
|
|
@@ -5854,7 +5854,7 @@ export interface RuleGroupUpdate {
|
|
|
5854
5854
|
* <p>Specify <code>INSERT</code> to add an <code>ActivatedRule</code> to a <code>RuleGroup</code>. Use <code>DELETE</code> to remove an
|
|
5855
5855
|
* <code>ActivatedRule</code> from a <code>RuleGroup</code>.</p>
|
|
5856
5856
|
*/
|
|
5857
|
-
Action: ChangeAction |
|
|
5857
|
+
Action: ChangeAction | undefined;
|
|
5858
5858
|
/**
|
|
5859
5859
|
* @public
|
|
5860
5860
|
* <p>The <code>ActivatedRule</code> object specifies a <code>Rule</code> that you want to insert or delete,
|
|
@@ -5918,7 +5918,7 @@ export interface SizeConstraintSetUpdate {
|
|
|
5918
5918
|
* <p>Specify <code>INSERT</code> to add a <a>SizeConstraintSetUpdate</a> to a <a>SizeConstraintSet</a>.
|
|
5919
5919
|
* Use <code>DELETE</code> to remove a <code>SizeConstraintSetUpdate</code> from a <code>SizeConstraintSet</code>.</p>
|
|
5920
5920
|
*/
|
|
5921
|
-
Action: ChangeAction |
|
|
5921
|
+
Action: ChangeAction | undefined;
|
|
5922
5922
|
/**
|
|
5923
5923
|
* @public
|
|
5924
5924
|
* <p>Specifies a constraint on the size of a part of the web request. AWS WAF uses the <code>Size</code>, <code>ComparisonOperator</code>, and <code>FieldToMatch</code> to build
|
|
@@ -5998,7 +5998,7 @@ export interface SqlInjectionMatchSetUpdate {
|
|
|
5998
5998
|
* <p>Specify <code>INSERT</code> to add a <a>SqlInjectionMatchSetUpdate</a> to a <a>SqlInjectionMatchSet</a>.
|
|
5999
5999
|
* Use <code>DELETE</code> to remove a <code>SqlInjectionMatchSetUpdate</code> from a <code>SqlInjectionMatchSet</code>.</p>
|
|
6000
6000
|
*/
|
|
6001
|
-
Action: ChangeAction |
|
|
6001
|
+
Action: ChangeAction | undefined;
|
|
6002
6002
|
/**
|
|
6003
6003
|
* @public
|
|
6004
6004
|
* <p>Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.</p>
|
|
@@ -6074,7 +6074,7 @@ export interface WebACLUpdate {
|
|
|
6074
6074
|
* @public
|
|
6075
6075
|
* <p>Specifies whether to insert a <code>Rule</code> into or delete a <code>Rule</code> from a <code>WebACL</code>.</p>
|
|
6076
6076
|
*/
|
|
6077
|
-
Action: ChangeAction |
|
|
6077
|
+
Action: ChangeAction | undefined;
|
|
6078
6078
|
/**
|
|
6079
6079
|
* @public
|
|
6080
6080
|
* <p>The <code>ActivatedRule</code> object in an <a>UpdateWebACL</a> request specifies a <code>Rule</code> that you want to insert or delete,
|
|
@@ -6179,7 +6179,7 @@ export interface XssMatchSetUpdate {
|
|
|
6179
6179
|
* <code>DELETE</code> to remove an
|
|
6180
6180
|
* <code>XssMatchSetUpdate</code> from an <code>XssMatchSet</code>.</p>
|
|
6181
6181
|
*/
|
|
6182
|
-
Action: ChangeAction |
|
|
6182
|
+
Action: ChangeAction | undefined;
|
|
6183
6183
|
/**
|
|
6184
6184
|
* @public
|
|
6185
6185
|
* <p>Specifies the part of a web request that you want AWS WAF to inspect for cross-site scripting attacks and, if you want AWS WAF to inspect a header, the name of the header.</p>
|
|
@@ -7,7 +7,7 @@ export declare const WafActionType: {
|
|
|
7
7
|
};
|
|
8
8
|
export type WafActionType = (typeof WafActionType)[keyof typeof WafActionType];
|
|
9
9
|
export interface WafAction {
|
|
10
|
-
Type: WafActionType |
|
|
10
|
+
Type: WafActionType | undefined;
|
|
11
11
|
}
|
|
12
12
|
export interface ExcludedRule {
|
|
13
13
|
RuleId: string | undefined;
|
|
@@ -19,7 +19,7 @@ export declare const WafOverrideActionType: {
|
|
|
19
19
|
export type WafOverrideActionType =
|
|
20
20
|
(typeof WafOverrideActionType)[keyof typeof WafOverrideActionType];
|
|
21
21
|
export interface WafOverrideAction {
|
|
22
|
-
Type: WafOverrideActionType |
|
|
22
|
+
Type: WafOverrideActionType | undefined;
|
|
23
23
|
}
|
|
24
24
|
export declare const WafRuleType: {
|
|
25
25
|
readonly GROUP: "GROUP";
|
|
@@ -32,7 +32,7 @@ export interface ActivatedRule {
|
|
|
32
32
|
RuleId: string | undefined;
|
|
33
33
|
Action?: WafAction;
|
|
34
34
|
OverrideAction?: WafOverrideAction;
|
|
35
|
-
Type?: WafRuleType
|
|
35
|
+
Type?: WafRuleType;
|
|
36
36
|
ExcludedRules?: ExcludedRule[];
|
|
37
37
|
}
|
|
38
38
|
export interface AssociateWebACLRequest {
|
|
@@ -87,9 +87,9 @@ export type ParameterExceptionReason =
|
|
|
87
87
|
export declare class WAFInvalidParameterException extends __BaseException {
|
|
88
88
|
readonly name: "WAFInvalidParameterException";
|
|
89
89
|
readonly $fault: "client";
|
|
90
|
-
field?: ParameterExceptionField
|
|
90
|
+
field?: ParameterExceptionField;
|
|
91
91
|
parameter?: string;
|
|
92
|
-
reason?: ParameterExceptionReason
|
|
92
|
+
reason?: ParameterExceptionReason;
|
|
93
93
|
constructor(
|
|
94
94
|
opts: __ExceptionOptionType<WAFInvalidParameterException, __BaseException>
|
|
95
95
|
);
|
|
@@ -124,7 +124,7 @@ export declare const MatchFieldType: {
|
|
|
124
124
|
export type MatchFieldType =
|
|
125
125
|
(typeof MatchFieldType)[keyof typeof MatchFieldType];
|
|
126
126
|
export interface FieldToMatch {
|
|
127
|
-
Type: MatchFieldType |
|
|
127
|
+
Type: MatchFieldType | undefined;
|
|
128
128
|
Data?: string;
|
|
129
129
|
}
|
|
130
130
|
export declare const PositionalConstraint: {
|
|
@@ -149,8 +149,8 @@ export type TextTransformation =
|
|
|
149
149
|
export interface ByteMatchTuple {
|
|
150
150
|
FieldToMatch: FieldToMatch | undefined;
|
|
151
151
|
TargetString: Uint8Array | undefined;
|
|
152
|
-
TextTransformation: TextTransformation |
|
|
153
|
-
PositionalConstraint: PositionalConstraint |
|
|
152
|
+
TextTransformation: TextTransformation | undefined;
|
|
153
|
+
PositionalConstraint: PositionalConstraint | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface ByteMatchSet {
|
|
156
156
|
ByteMatchSetId: string | undefined;
|
|
@@ -445,8 +445,8 @@ export declare const GeoMatchConstraintValue: {
|
|
|
445
445
|
export type GeoMatchConstraintValue =
|
|
446
446
|
(typeof GeoMatchConstraintValue)[keyof typeof GeoMatchConstraintValue];
|
|
447
447
|
export interface GeoMatchConstraint {
|
|
448
|
-
Type: GeoMatchConstraintType |
|
|
449
|
-
Value: GeoMatchConstraintValue |
|
|
448
|
+
Type: GeoMatchConstraintType | undefined;
|
|
449
|
+
Value: GeoMatchConstraintValue | undefined;
|
|
450
450
|
}
|
|
451
451
|
export interface GeoMatchSet {
|
|
452
452
|
GeoMatchSetId: string | undefined;
|
|
@@ -468,7 +468,7 @@ export declare const IPSetDescriptorType: {
|
|
|
468
468
|
export type IPSetDescriptorType =
|
|
469
469
|
(typeof IPSetDescriptorType)[keyof typeof IPSetDescriptorType];
|
|
470
470
|
export interface IPSetDescriptor {
|
|
471
|
-
Type: IPSetDescriptorType |
|
|
471
|
+
Type: IPSetDescriptorType | undefined;
|
|
472
472
|
Value: string | undefined;
|
|
473
473
|
}
|
|
474
474
|
export interface IPSet {
|
|
@@ -491,7 +491,7 @@ export interface Tag {
|
|
|
491
491
|
export interface CreateRateBasedRuleRequest {
|
|
492
492
|
Name: string | undefined;
|
|
493
493
|
MetricName: string | undefined;
|
|
494
|
-
RateKey: RateKey |
|
|
494
|
+
RateKey: RateKey | undefined;
|
|
495
495
|
RateLimit: number | undefined;
|
|
496
496
|
ChangeToken: string | undefined;
|
|
497
497
|
Tags?: Tag[];
|
|
@@ -508,7 +508,7 @@ export declare const PredicateType: {
|
|
|
508
508
|
export type PredicateType = (typeof PredicateType)[keyof typeof PredicateType];
|
|
509
509
|
export interface Predicate {
|
|
510
510
|
Negated: boolean | undefined;
|
|
511
|
-
Type: PredicateType |
|
|
511
|
+
Type: PredicateType | undefined;
|
|
512
512
|
DataId: string | undefined;
|
|
513
513
|
}
|
|
514
514
|
export interface RateBasedRule {
|
|
@@ -516,7 +516,7 @@ export interface RateBasedRule {
|
|
|
516
516
|
Name?: string;
|
|
517
517
|
MetricName?: string;
|
|
518
518
|
MatchPredicates: Predicate[] | undefined;
|
|
519
|
-
RateKey: RateKey |
|
|
519
|
+
RateKey: RateKey | undefined;
|
|
520
520
|
RateLimit: number | undefined;
|
|
521
521
|
}
|
|
522
522
|
export interface CreateRateBasedRuleResponse {
|
|
@@ -553,7 +553,7 @@ export interface CreateRegexMatchSetRequest {
|
|
|
553
553
|
}
|
|
554
554
|
export interface RegexMatchTuple {
|
|
555
555
|
FieldToMatch: FieldToMatch | undefined;
|
|
556
|
-
TextTransformation: TextTransformation |
|
|
556
|
+
TextTransformation: TextTransformation | undefined;
|
|
557
557
|
RegexPatternSetId: string | undefined;
|
|
558
558
|
}
|
|
559
559
|
export interface RegexMatchSet {
|
|
@@ -625,8 +625,8 @@ export type ComparisonOperator =
|
|
|
625
625
|
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
626
626
|
export interface SizeConstraint {
|
|
627
627
|
FieldToMatch: FieldToMatch | undefined;
|
|
628
|
-
TextTransformation: TextTransformation |
|
|
629
|
-
ComparisonOperator: ComparisonOperator |
|
|
628
|
+
TextTransformation: TextTransformation | undefined;
|
|
629
|
+
ComparisonOperator: ComparisonOperator | undefined;
|
|
630
630
|
Size: number | undefined;
|
|
631
631
|
}
|
|
632
632
|
export interface SizeConstraintSet {
|
|
@@ -644,7 +644,7 @@ export interface CreateSqlInjectionMatchSetRequest {
|
|
|
644
644
|
}
|
|
645
645
|
export interface SqlInjectionMatchTuple {
|
|
646
646
|
FieldToMatch: FieldToMatch | undefined;
|
|
647
|
-
TextTransformation: TextTransformation |
|
|
647
|
+
TextTransformation: TextTransformation | undefined;
|
|
648
648
|
}
|
|
649
649
|
export interface SqlInjectionMatchSet {
|
|
650
650
|
SqlInjectionMatchSetId: string | undefined;
|
|
@@ -696,7 +696,7 @@ export type MigrationErrorType =
|
|
|
696
696
|
export declare class WAFEntityMigrationException extends __BaseException {
|
|
697
697
|
readonly name: "WAFEntityMigrationException";
|
|
698
698
|
readonly $fault: "client";
|
|
699
|
-
MigrationErrorType?: MigrationErrorType
|
|
699
|
+
MigrationErrorType?: MigrationErrorType;
|
|
700
700
|
MigrationErrorReason?: string;
|
|
701
701
|
constructor(
|
|
702
702
|
opts: __ExceptionOptionType<WAFEntityMigrationException, __BaseException>
|
|
@@ -715,7 +715,7 @@ export interface CreateXssMatchSetRequest {
|
|
|
715
715
|
}
|
|
716
716
|
export interface XssMatchTuple {
|
|
717
717
|
FieldToMatch: FieldToMatch | undefined;
|
|
718
|
-
TextTransformation: TextTransformation |
|
|
718
|
+
TextTransformation: TextTransformation | undefined;
|
|
719
719
|
}
|
|
720
720
|
export interface XssMatchSet {
|
|
721
721
|
XssMatchSetId: string | undefined;
|
|
@@ -857,7 +857,7 @@ export declare const ChangeTokenStatus: {
|
|
|
857
857
|
export type ChangeTokenStatus =
|
|
858
858
|
(typeof ChangeTokenStatus)[keyof typeof ChangeTokenStatus];
|
|
859
859
|
export interface GetChangeTokenStatusResponse {
|
|
860
|
-
ChangeTokenStatus?: ChangeTokenStatus
|
|
860
|
+
ChangeTokenStatus?: ChangeTokenStatus;
|
|
861
861
|
}
|
|
862
862
|
export interface GetGeoMatchSetRequest {
|
|
863
863
|
GeoMatchSetId: string | undefined;
|
|
@@ -1090,7 +1090,7 @@ export declare const ResourceType: {
|
|
|
1090
1090
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1091
1091
|
export interface ListResourcesForWebACLRequest {
|
|
1092
1092
|
WebACLId: string | undefined;
|
|
1093
|
-
ResourceType?: ResourceType
|
|
1093
|
+
ResourceType?: ResourceType;
|
|
1094
1094
|
}
|
|
1095
1095
|
export interface ListResourcesForWebACLResponse {
|
|
1096
1096
|
ResourceArns?: string[];
|
|
@@ -1232,7 +1232,7 @@ export declare const ChangeAction: {
|
|
|
1232
1232
|
};
|
|
1233
1233
|
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
1234
1234
|
export interface ByteMatchSetUpdate {
|
|
1235
|
-
Action: ChangeAction |
|
|
1235
|
+
Action: ChangeAction | undefined;
|
|
1236
1236
|
ByteMatchTuple: ByteMatchTuple | undefined;
|
|
1237
1237
|
}
|
|
1238
1238
|
export interface UpdateByteMatchSetRequest {
|
|
@@ -1254,7 +1254,7 @@ export declare class WAFNonexistentContainerException extends __BaseException {
|
|
|
1254
1254
|
);
|
|
1255
1255
|
}
|
|
1256
1256
|
export interface GeoMatchSetUpdate {
|
|
1257
|
-
Action: ChangeAction |
|
|
1257
|
+
Action: ChangeAction | undefined;
|
|
1258
1258
|
GeoMatchConstraint: GeoMatchConstraint | undefined;
|
|
1259
1259
|
}
|
|
1260
1260
|
export interface UpdateGeoMatchSetRequest {
|
|
@@ -1266,7 +1266,7 @@ export interface UpdateGeoMatchSetResponse {
|
|
|
1266
1266
|
ChangeToken?: string;
|
|
1267
1267
|
}
|
|
1268
1268
|
export interface IPSetUpdate {
|
|
1269
|
-
Action: ChangeAction |
|
|
1269
|
+
Action: ChangeAction | undefined;
|
|
1270
1270
|
IPSetDescriptor: IPSetDescriptor | undefined;
|
|
1271
1271
|
}
|
|
1272
1272
|
export interface UpdateIPSetRequest {
|
|
@@ -1278,7 +1278,7 @@ export interface UpdateIPSetResponse {
|
|
|
1278
1278
|
ChangeToken?: string;
|
|
1279
1279
|
}
|
|
1280
1280
|
export interface RuleUpdate {
|
|
1281
|
-
Action: ChangeAction |
|
|
1281
|
+
Action: ChangeAction | undefined;
|
|
1282
1282
|
Predicate: Predicate | undefined;
|
|
1283
1283
|
}
|
|
1284
1284
|
export interface UpdateRateBasedRuleRequest {
|
|
@@ -1291,7 +1291,7 @@ export interface UpdateRateBasedRuleResponse {
|
|
|
1291
1291
|
ChangeToken?: string;
|
|
1292
1292
|
}
|
|
1293
1293
|
export interface RegexMatchSetUpdate {
|
|
1294
|
-
Action: ChangeAction |
|
|
1294
|
+
Action: ChangeAction | undefined;
|
|
1295
1295
|
RegexMatchTuple: RegexMatchTuple | undefined;
|
|
1296
1296
|
}
|
|
1297
1297
|
export interface UpdateRegexMatchSetRequest {
|
|
@@ -1303,7 +1303,7 @@ export interface UpdateRegexMatchSetResponse {
|
|
|
1303
1303
|
ChangeToken?: string;
|
|
1304
1304
|
}
|
|
1305
1305
|
export interface RegexPatternSetUpdate {
|
|
1306
|
-
Action: ChangeAction |
|
|
1306
|
+
Action: ChangeAction | undefined;
|
|
1307
1307
|
RegexPatternString: string | undefined;
|
|
1308
1308
|
}
|
|
1309
1309
|
export interface UpdateRegexPatternSetRequest {
|
|
@@ -1333,7 +1333,7 @@ export interface UpdateRuleResponse {
|
|
|
1333
1333
|
ChangeToken?: string;
|
|
1334
1334
|
}
|
|
1335
1335
|
export interface RuleGroupUpdate {
|
|
1336
|
-
Action: ChangeAction |
|
|
1336
|
+
Action: ChangeAction | undefined;
|
|
1337
1337
|
ActivatedRule: ActivatedRule | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
export interface UpdateRuleGroupRequest {
|
|
@@ -1345,7 +1345,7 @@ export interface UpdateRuleGroupResponse {
|
|
|
1345
1345
|
ChangeToken?: string;
|
|
1346
1346
|
}
|
|
1347
1347
|
export interface SizeConstraintSetUpdate {
|
|
1348
|
-
Action: ChangeAction |
|
|
1348
|
+
Action: ChangeAction | undefined;
|
|
1349
1349
|
SizeConstraint: SizeConstraint | undefined;
|
|
1350
1350
|
}
|
|
1351
1351
|
export interface UpdateSizeConstraintSetRequest {
|
|
@@ -1357,7 +1357,7 @@ export interface UpdateSizeConstraintSetResponse {
|
|
|
1357
1357
|
ChangeToken?: string;
|
|
1358
1358
|
}
|
|
1359
1359
|
export interface SqlInjectionMatchSetUpdate {
|
|
1360
|
-
Action: ChangeAction |
|
|
1360
|
+
Action: ChangeAction | undefined;
|
|
1361
1361
|
SqlInjectionMatchTuple: SqlInjectionMatchTuple | undefined;
|
|
1362
1362
|
}
|
|
1363
1363
|
export interface UpdateSqlInjectionMatchSetRequest {
|
|
@@ -1369,7 +1369,7 @@ export interface UpdateSqlInjectionMatchSetResponse {
|
|
|
1369
1369
|
ChangeToken?: string;
|
|
1370
1370
|
}
|
|
1371
1371
|
export interface WebACLUpdate {
|
|
1372
|
-
Action: ChangeAction |
|
|
1372
|
+
Action: ChangeAction | undefined;
|
|
1373
1373
|
ActivatedRule: ActivatedRule | undefined;
|
|
1374
1374
|
}
|
|
1375
1375
|
export interface UpdateWebACLRequest {
|
|
@@ -1392,7 +1392,7 @@ export declare class WAFSubscriptionNotFoundException extends __BaseException {
|
|
|
1392
1392
|
);
|
|
1393
1393
|
}
|
|
1394
1394
|
export interface XssMatchSetUpdate {
|
|
1395
|
-
Action: ChangeAction |
|
|
1395
|
+
Action: ChangeAction | undefined;
|
|
1396
1396
|
XssMatchTuple: XssMatchTuple | undefined;
|
|
1397
1397
|
}
|
|
1398
1398
|
export interface UpdateXssMatchSetRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-waf-regional",
|
|
3
3
|
"description": "AWS SDK for JavaScript Waf Regional Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|