@aws-sdk/client-network-firewall 3.135.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/AssociateSubnetsCommand.js +2 -2
- package/dist-cjs/commands/CreateFirewallCommand.js +2 -2
- package/dist-cjs/commands/CreateFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/CreateRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteFirewallCommand.js +2 -2
- package/dist-cjs/commands/DeleteFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeFirewallCommand.js +2 -2
- package/dist-cjs/commands/DescribeFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/DescribeLoggingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribeResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/DescribeRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeRuleGroupMetadataCommand.js +2 -2
- package/dist-cjs/commands/DisassociateSubnetsCommand.js +2 -2
- package/dist-cjs/commands/ListFirewallPoliciesCommand.js +2 -2
- package/dist-cjs/commands/ListFirewallsCommand.js +2 -2
- package/dist-cjs/commands/ListRuleGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallDeleteProtectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallDescriptionCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallEncryptionConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallPolicyChangeProtectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UpdateRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/UpdateSubnetChangeProtectionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +439 -657
- package/dist-cjs/protocols/Aws_json1_0.js +155 -320
- package/dist-es/commands/AssociateFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/AssociateSubnetsCommand.js +3 -3
- package/dist-es/commands/CreateFirewallCommand.js +3 -3
- package/dist-es/commands/CreateFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/CreateRuleGroupCommand.js +3 -3
- package/dist-es/commands/DeleteFirewallCommand.js +3 -3
- package/dist-es/commands/DeleteFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -3
- package/dist-es/commands/DeleteRuleGroupCommand.js +3 -3
- package/dist-es/commands/DescribeFirewallCommand.js +3 -3
- package/dist-es/commands/DescribeFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/DescribeLoggingConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribeResourcePolicyCommand.js +3 -3
- package/dist-es/commands/DescribeRuleGroupCommand.js +3 -3
- package/dist-es/commands/DescribeRuleGroupMetadataCommand.js +3 -3
- package/dist-es/commands/DisassociateSubnetsCommand.js +3 -3
- package/dist-es/commands/ListFirewallPoliciesCommand.js +3 -3
- package/dist-es/commands/ListFirewallsCommand.js +3 -3
- package/dist-es/commands/ListRuleGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallDeleteProtectionCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallDescriptionCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallEncryptionConfigurationCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallPolicyChangeProtectionCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +3 -3
- package/dist-es/commands/UpdateRuleGroupCommand.js +3 -3
- package/dist-es/commands/UpdateSubnetChangeProtectionCommand.js +3 -3
- package/dist-es/models/models_0.js +109 -436
- package/dist-es/protocols/Aws_json1_0.js +249 -321
- package/dist-types/models/models_0.d.ts +436 -654
- package/dist-types/ts3.4/models/models_0.d.ts +218 -436
- package/package.json +6 -6
|
@@ -5,37 +5,21 @@ export interface Dimension {
|
|
|
5
5
|
|
|
6
6
|
Value: string | undefined;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace Dimension {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: Dimension) => any;
|
|
11
|
-
}
|
|
12
8
|
|
|
13
9
|
export interface PublishMetricAction {
|
|
14
10
|
|
|
15
11
|
Dimensions: Dimension[] | undefined;
|
|
16
12
|
}
|
|
17
|
-
export declare namespace PublishMetricAction {
|
|
18
|
-
|
|
19
|
-
const filterSensitiveLog: (obj: PublishMetricAction) => any;
|
|
20
|
-
}
|
|
21
13
|
|
|
22
14
|
export interface ActionDefinition {
|
|
23
15
|
|
|
24
16
|
PublishMetricAction?: PublishMetricAction;
|
|
25
17
|
}
|
|
26
|
-
export declare namespace ActionDefinition {
|
|
27
|
-
|
|
28
|
-
const filterSensitiveLog: (obj: ActionDefinition) => any;
|
|
29
|
-
}
|
|
30
18
|
|
|
31
19
|
export interface Address {
|
|
32
20
|
|
|
33
21
|
AddressDefinition: string | undefined;
|
|
34
22
|
}
|
|
35
|
-
export declare namespace Address {
|
|
36
|
-
|
|
37
|
-
const filterSensitiveLog: (obj: Address) => any;
|
|
38
|
-
}
|
|
39
23
|
export interface AssociateFirewallPolicyRequest {
|
|
40
24
|
|
|
41
25
|
UpdateToken?: string;
|
|
@@ -46,10 +30,6 @@ export interface AssociateFirewallPolicyRequest {
|
|
|
46
30
|
|
|
47
31
|
FirewallPolicyArn: string | undefined;
|
|
48
32
|
}
|
|
49
|
-
export declare namespace AssociateFirewallPolicyRequest {
|
|
50
|
-
|
|
51
|
-
const filterSensitiveLog: (obj: AssociateFirewallPolicyRequest) => any;
|
|
52
|
-
}
|
|
53
33
|
export interface AssociateFirewallPolicyResponse {
|
|
54
34
|
|
|
55
35
|
FirewallArn?: string;
|
|
@@ -60,10 +40,6 @@ export interface AssociateFirewallPolicyResponse {
|
|
|
60
40
|
|
|
61
41
|
UpdateToken?: string;
|
|
62
42
|
}
|
|
63
|
-
export declare namespace AssociateFirewallPolicyResponse {
|
|
64
|
-
|
|
65
|
-
const filterSensitiveLog: (obj: AssociateFirewallPolicyResponse) => any;
|
|
66
|
-
}
|
|
67
43
|
|
|
68
44
|
export declare class InternalServerError extends __BaseException {
|
|
69
45
|
readonly name: "InternalServerError";
|
|
@@ -117,10 +93,6 @@ export interface SubnetMapping {
|
|
|
117
93
|
|
|
118
94
|
SubnetId: string | undefined;
|
|
119
95
|
}
|
|
120
|
-
export declare namespace SubnetMapping {
|
|
121
|
-
|
|
122
|
-
const filterSensitiveLog: (obj: SubnetMapping) => any;
|
|
123
|
-
}
|
|
124
96
|
export interface AssociateSubnetsRequest {
|
|
125
97
|
|
|
126
98
|
UpdateToken?: string;
|
|
@@ -131,10 +103,6 @@ export interface AssociateSubnetsRequest {
|
|
|
131
103
|
|
|
132
104
|
SubnetMappings: SubnetMapping[] | undefined;
|
|
133
105
|
}
|
|
134
|
-
export declare namespace AssociateSubnetsRequest {
|
|
135
|
-
|
|
136
|
-
const filterSensitiveLog: (obj: AssociateSubnetsRequest) => any;
|
|
137
|
-
}
|
|
138
106
|
export interface AssociateSubnetsResponse {
|
|
139
107
|
|
|
140
108
|
FirewallArn?: string;
|
|
@@ -145,10 +113,6 @@ export interface AssociateSubnetsResponse {
|
|
|
145
113
|
|
|
146
114
|
UpdateToken?: string;
|
|
147
115
|
}
|
|
148
|
-
export declare namespace AssociateSubnetsResponse {
|
|
149
|
-
|
|
150
|
-
const filterSensitiveLog: (obj: AssociateSubnetsResponse) => any;
|
|
151
|
-
}
|
|
152
116
|
|
|
153
117
|
export declare class InsufficientCapacityException extends __BaseException {
|
|
154
118
|
readonly name: "InsufficientCapacityException";
|
|
@@ -172,19 +136,11 @@ export interface Attachment {
|
|
|
172
136
|
|
|
173
137
|
Status?: AttachmentStatus | string;
|
|
174
138
|
}
|
|
175
|
-
export declare namespace Attachment {
|
|
176
|
-
|
|
177
|
-
const filterSensitiveLog: (obj: Attachment) => any;
|
|
178
|
-
}
|
|
179
139
|
|
|
180
140
|
export interface IPSetMetadata {
|
|
181
141
|
|
|
182
142
|
ResolvedCIDRCount?: number;
|
|
183
143
|
}
|
|
184
|
-
export declare namespace IPSetMetadata {
|
|
185
|
-
|
|
186
|
-
const filterSensitiveLog: (obj: IPSetMetadata) => any;
|
|
187
|
-
}
|
|
188
144
|
|
|
189
145
|
export interface CIDRSummary {
|
|
190
146
|
|
|
@@ -194,19 +150,11 @@ export interface CIDRSummary {
|
|
|
194
150
|
|
|
195
151
|
IPSetReferences?: Record<string, IPSetMetadata>;
|
|
196
152
|
}
|
|
197
|
-
export declare namespace CIDRSummary {
|
|
198
|
-
|
|
199
|
-
const filterSensitiveLog: (obj: CIDRSummary) => any;
|
|
200
|
-
}
|
|
201
153
|
|
|
202
154
|
export interface CapacityUsageSummary {
|
|
203
155
|
|
|
204
156
|
CIDRs?: CIDRSummary;
|
|
205
157
|
}
|
|
206
|
-
export declare namespace CapacityUsageSummary {
|
|
207
|
-
|
|
208
|
-
const filterSensitiveLog: (obj: CapacityUsageSummary) => any;
|
|
209
|
-
}
|
|
210
158
|
export declare enum ConfigurationSyncState {
|
|
211
159
|
CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
|
|
212
160
|
IN_SYNC = "IN_SYNC",
|
|
@@ -223,10 +171,6 @@ export interface EncryptionConfiguration {
|
|
|
223
171
|
|
|
224
172
|
Type: EncryptionType | string | undefined;
|
|
225
173
|
}
|
|
226
|
-
export declare namespace EncryptionConfiguration {
|
|
227
|
-
|
|
228
|
-
const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
229
|
-
}
|
|
230
174
|
|
|
231
175
|
export interface Tag {
|
|
232
176
|
|
|
@@ -234,10 +178,6 @@ export interface Tag {
|
|
|
234
178
|
|
|
235
179
|
Value: string | undefined;
|
|
236
180
|
}
|
|
237
|
-
export declare namespace Tag {
|
|
238
|
-
|
|
239
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
240
|
-
}
|
|
241
181
|
export interface CreateFirewallRequest {
|
|
242
182
|
|
|
243
183
|
FirewallName: string | undefined;
|
|
@@ -260,10 +200,6 @@ export interface CreateFirewallRequest {
|
|
|
260
200
|
|
|
261
201
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
262
202
|
}
|
|
263
|
-
export declare namespace CreateFirewallRequest {
|
|
264
|
-
|
|
265
|
-
const filterSensitiveLog: (obj: CreateFirewallRequest) => any;
|
|
266
|
-
}
|
|
267
203
|
|
|
268
204
|
export interface Firewall {
|
|
269
205
|
|
|
@@ -291,10 +227,6 @@ export interface Firewall {
|
|
|
291
227
|
|
|
292
228
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
293
229
|
}
|
|
294
|
-
export declare namespace Firewall {
|
|
295
|
-
|
|
296
|
-
const filterSensitiveLog: (obj: Firewall) => any;
|
|
297
|
-
}
|
|
298
230
|
export declare enum FirewallStatusValue {
|
|
299
231
|
DELETING = "DELETING",
|
|
300
232
|
PROVISIONING = "PROVISIONING",
|
|
@@ -312,10 +244,6 @@ export interface PerObjectStatus {
|
|
|
312
244
|
|
|
313
245
|
UpdateToken?: string;
|
|
314
246
|
}
|
|
315
|
-
export declare namespace PerObjectStatus {
|
|
316
|
-
|
|
317
|
-
const filterSensitiveLog: (obj: PerObjectStatus) => any;
|
|
318
|
-
}
|
|
319
247
|
|
|
320
248
|
export interface SyncState {
|
|
321
249
|
|
|
@@ -323,10 +251,6 @@ export interface SyncState {
|
|
|
323
251
|
|
|
324
252
|
Config?: Record<string, PerObjectStatus>;
|
|
325
253
|
}
|
|
326
|
-
export declare namespace SyncState {
|
|
327
|
-
|
|
328
|
-
const filterSensitiveLog: (obj: SyncState) => any;
|
|
329
|
-
}
|
|
330
254
|
|
|
331
255
|
export interface FirewallStatus {
|
|
332
256
|
|
|
@@ -338,20 +262,12 @@ export interface FirewallStatus {
|
|
|
338
262
|
|
|
339
263
|
CapacityUsageSummary?: CapacityUsageSummary;
|
|
340
264
|
}
|
|
341
|
-
export declare namespace FirewallStatus {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: FirewallStatus) => any;
|
|
344
|
-
}
|
|
345
265
|
export interface CreateFirewallResponse {
|
|
346
266
|
|
|
347
267
|
Firewall?: Firewall;
|
|
348
268
|
|
|
349
269
|
FirewallStatus?: FirewallStatus;
|
|
350
270
|
}
|
|
351
|
-
export declare namespace CreateFirewallResponse {
|
|
352
|
-
|
|
353
|
-
const filterSensitiveLog: (obj: CreateFirewallResponse) => any;
|
|
354
|
-
}
|
|
355
271
|
|
|
356
272
|
export declare class LimitExceededException extends __BaseException {
|
|
357
273
|
readonly name: "LimitExceededException";
|
|
@@ -369,10 +285,6 @@ export interface StatefulEngineOptions {
|
|
|
369
285
|
|
|
370
286
|
RuleOrder?: RuleOrder | string;
|
|
371
287
|
}
|
|
372
|
-
export declare namespace StatefulEngineOptions {
|
|
373
|
-
|
|
374
|
-
const filterSensitiveLog: (obj: StatefulEngineOptions) => any;
|
|
375
|
-
}
|
|
376
288
|
export declare enum OverrideAction {
|
|
377
289
|
DROP_TO_ALERT = "DROP_TO_ALERT"
|
|
378
290
|
}
|
|
@@ -381,10 +293,6 @@ export interface StatefulRuleGroupOverride {
|
|
|
381
293
|
|
|
382
294
|
Action?: OverrideAction | string;
|
|
383
295
|
}
|
|
384
|
-
export declare namespace StatefulRuleGroupOverride {
|
|
385
|
-
|
|
386
|
-
const filterSensitiveLog: (obj: StatefulRuleGroupOverride) => any;
|
|
387
|
-
}
|
|
388
296
|
|
|
389
297
|
export interface StatefulRuleGroupReference {
|
|
390
298
|
|
|
@@ -394,10 +302,6 @@ export interface StatefulRuleGroupReference {
|
|
|
394
302
|
|
|
395
303
|
Override?: StatefulRuleGroupOverride;
|
|
396
304
|
}
|
|
397
|
-
export declare namespace StatefulRuleGroupReference {
|
|
398
|
-
|
|
399
|
-
const filterSensitiveLog: (obj: StatefulRuleGroupReference) => any;
|
|
400
|
-
}
|
|
401
305
|
|
|
402
306
|
export interface CustomAction {
|
|
403
307
|
|
|
@@ -405,10 +309,6 @@ export interface CustomAction {
|
|
|
405
309
|
|
|
406
310
|
ActionDefinition: ActionDefinition | undefined;
|
|
407
311
|
}
|
|
408
|
-
export declare namespace CustomAction {
|
|
409
|
-
|
|
410
|
-
const filterSensitiveLog: (obj: CustomAction) => any;
|
|
411
|
-
}
|
|
412
312
|
|
|
413
313
|
export interface StatelessRuleGroupReference {
|
|
414
314
|
|
|
@@ -416,10 +316,6 @@ export interface StatelessRuleGroupReference {
|
|
|
416
316
|
|
|
417
317
|
Priority: number | undefined;
|
|
418
318
|
}
|
|
419
|
-
export declare namespace StatelessRuleGroupReference {
|
|
420
|
-
|
|
421
|
-
const filterSensitiveLog: (obj: StatelessRuleGroupReference) => any;
|
|
422
|
-
}
|
|
423
319
|
|
|
424
320
|
export interface FirewallPolicy {
|
|
425
321
|
|
|
@@ -437,10 +333,6 @@ export interface FirewallPolicy {
|
|
|
437
333
|
|
|
438
334
|
StatefulEngineOptions?: StatefulEngineOptions;
|
|
439
335
|
}
|
|
440
|
-
export declare namespace FirewallPolicy {
|
|
441
|
-
|
|
442
|
-
const filterSensitiveLog: (obj: FirewallPolicy) => any;
|
|
443
|
-
}
|
|
444
336
|
export interface CreateFirewallPolicyRequest {
|
|
445
337
|
|
|
446
338
|
FirewallPolicyName: string | undefined;
|
|
@@ -455,10 +347,6 @@ export interface CreateFirewallPolicyRequest {
|
|
|
455
347
|
|
|
456
348
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
457
349
|
}
|
|
458
|
-
export declare namespace CreateFirewallPolicyRequest {
|
|
459
|
-
|
|
460
|
-
const filterSensitiveLog: (obj: CreateFirewallPolicyRequest) => any;
|
|
461
|
-
}
|
|
462
350
|
export declare enum ResourceStatus {
|
|
463
351
|
ACTIVE = "ACTIVE",
|
|
464
352
|
DELETING = "DELETING"
|
|
@@ -488,38 +376,22 @@ export interface FirewallPolicyResponse {
|
|
|
488
376
|
|
|
489
377
|
LastModifiedTime?: Date;
|
|
490
378
|
}
|
|
491
|
-
export declare namespace FirewallPolicyResponse {
|
|
492
|
-
|
|
493
|
-
const filterSensitiveLog: (obj: FirewallPolicyResponse) => any;
|
|
494
|
-
}
|
|
495
379
|
export interface CreateFirewallPolicyResponse {
|
|
496
380
|
|
|
497
381
|
UpdateToken: string | undefined;
|
|
498
382
|
|
|
499
383
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
500
384
|
}
|
|
501
|
-
export declare namespace CreateFirewallPolicyResponse {
|
|
502
|
-
|
|
503
|
-
const filterSensitiveLog: (obj: CreateFirewallPolicyResponse) => any;
|
|
504
|
-
}
|
|
505
385
|
|
|
506
386
|
export interface IPSetReference {
|
|
507
387
|
|
|
508
388
|
ReferenceArn?: string;
|
|
509
389
|
}
|
|
510
|
-
export declare namespace IPSetReference {
|
|
511
|
-
|
|
512
|
-
const filterSensitiveLog: (obj: IPSetReference) => any;
|
|
513
|
-
}
|
|
514
390
|
|
|
515
391
|
export interface ReferenceSets {
|
|
516
392
|
|
|
517
393
|
IPSetReferences?: Record<string, IPSetReference>;
|
|
518
394
|
}
|
|
519
|
-
export declare namespace ReferenceSets {
|
|
520
|
-
|
|
521
|
-
const filterSensitiveLog: (obj: ReferenceSets) => any;
|
|
522
|
-
}
|
|
523
395
|
export declare enum GeneratedRulesType {
|
|
524
396
|
ALLOWLIST = "ALLOWLIST",
|
|
525
397
|
DENYLIST = "DENYLIST"
|
|
@@ -537,10 +409,6 @@ export interface RulesSourceList {
|
|
|
537
409
|
|
|
538
410
|
GeneratedRulesType: GeneratedRulesType | string | undefined;
|
|
539
411
|
}
|
|
540
|
-
export declare namespace RulesSourceList {
|
|
541
|
-
|
|
542
|
-
const filterSensitiveLog: (obj: RulesSourceList) => any;
|
|
543
|
-
}
|
|
544
412
|
export declare enum StatefulAction {
|
|
545
413
|
ALERT = "ALERT",
|
|
546
414
|
DROP = "DROP",
|
|
@@ -586,10 +454,6 @@ export interface Header {
|
|
|
586
454
|
|
|
587
455
|
DestinationPort: string | undefined;
|
|
588
456
|
}
|
|
589
|
-
export declare namespace Header {
|
|
590
|
-
|
|
591
|
-
const filterSensitiveLog: (obj: Header) => any;
|
|
592
|
-
}
|
|
593
457
|
|
|
594
458
|
export interface RuleOption {
|
|
595
459
|
|
|
@@ -597,10 +461,6 @@ export interface RuleOption {
|
|
|
597
461
|
|
|
598
462
|
Settings?: string[];
|
|
599
463
|
}
|
|
600
|
-
export declare namespace RuleOption {
|
|
601
|
-
|
|
602
|
-
const filterSensitiveLog: (obj: RuleOption) => any;
|
|
603
|
-
}
|
|
604
464
|
|
|
605
465
|
export interface StatefulRule {
|
|
606
466
|
|
|
@@ -610,10 +470,6 @@ export interface StatefulRule {
|
|
|
610
470
|
|
|
611
471
|
RuleOptions: RuleOption[] | undefined;
|
|
612
472
|
}
|
|
613
|
-
export declare namespace StatefulRule {
|
|
614
|
-
|
|
615
|
-
const filterSensitiveLog: (obj: StatefulRule) => any;
|
|
616
|
-
}
|
|
617
473
|
|
|
618
474
|
export interface PortRange {
|
|
619
475
|
|
|
@@ -621,10 +477,6 @@ export interface PortRange {
|
|
|
621
477
|
|
|
622
478
|
ToPort: number | undefined;
|
|
623
479
|
}
|
|
624
|
-
export declare namespace PortRange {
|
|
625
|
-
|
|
626
|
-
const filterSensitiveLog: (obj: PortRange) => any;
|
|
627
|
-
}
|
|
628
480
|
export declare enum TCPFlag {
|
|
629
481
|
ACK = "ACK",
|
|
630
482
|
CWR = "CWR",
|
|
@@ -642,10 +494,6 @@ export interface TCPFlagField {
|
|
|
642
494
|
|
|
643
495
|
Masks?: (TCPFlag | string)[];
|
|
644
496
|
}
|
|
645
|
-
export declare namespace TCPFlagField {
|
|
646
|
-
|
|
647
|
-
const filterSensitiveLog: (obj: TCPFlagField) => any;
|
|
648
|
-
}
|
|
649
497
|
|
|
650
498
|
export interface MatchAttributes {
|
|
651
499
|
|
|
@@ -661,10 +509,6 @@ export interface MatchAttributes {
|
|
|
661
509
|
|
|
662
510
|
TCPFlags?: TCPFlagField[];
|
|
663
511
|
}
|
|
664
|
-
export declare namespace MatchAttributes {
|
|
665
|
-
|
|
666
|
-
const filterSensitiveLog: (obj: MatchAttributes) => any;
|
|
667
|
-
}
|
|
668
512
|
|
|
669
513
|
export interface RuleDefinition {
|
|
670
514
|
|
|
@@ -672,10 +516,6 @@ export interface RuleDefinition {
|
|
|
672
516
|
|
|
673
517
|
Actions: string[] | undefined;
|
|
674
518
|
}
|
|
675
|
-
export declare namespace RuleDefinition {
|
|
676
|
-
|
|
677
|
-
const filterSensitiveLog: (obj: RuleDefinition) => any;
|
|
678
|
-
}
|
|
679
519
|
|
|
680
520
|
export interface StatelessRule {
|
|
681
521
|
|
|
@@ -683,10 +523,6 @@ export interface StatelessRule {
|
|
|
683
523
|
|
|
684
524
|
Priority: number | undefined;
|
|
685
525
|
}
|
|
686
|
-
export declare namespace StatelessRule {
|
|
687
|
-
|
|
688
|
-
const filterSensitiveLog: (obj: StatelessRule) => any;
|
|
689
|
-
}
|
|
690
526
|
|
|
691
527
|
export interface StatelessRulesAndCustomActions {
|
|
692
528
|
|
|
@@ -694,10 +530,6 @@ export interface StatelessRulesAndCustomActions {
|
|
|
694
530
|
|
|
695
531
|
CustomActions?: CustomAction[];
|
|
696
532
|
}
|
|
697
|
-
export declare namespace StatelessRulesAndCustomActions {
|
|
698
|
-
|
|
699
|
-
const filterSensitiveLog: (obj: StatelessRulesAndCustomActions) => any;
|
|
700
|
-
}
|
|
701
533
|
|
|
702
534
|
export interface RulesSource {
|
|
703
535
|
|
|
@@ -709,28 +541,16 @@ export interface RulesSource {
|
|
|
709
541
|
|
|
710
542
|
StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions;
|
|
711
543
|
}
|
|
712
|
-
export declare namespace RulesSource {
|
|
713
|
-
|
|
714
|
-
const filterSensitiveLog: (obj: RulesSource) => any;
|
|
715
|
-
}
|
|
716
544
|
|
|
717
545
|
export interface IPSet {
|
|
718
546
|
|
|
719
547
|
Definition: string[] | undefined;
|
|
720
548
|
}
|
|
721
|
-
export declare namespace IPSet {
|
|
722
|
-
|
|
723
|
-
const filterSensitiveLog: (obj: IPSet) => any;
|
|
724
|
-
}
|
|
725
549
|
|
|
726
550
|
export interface PortSet {
|
|
727
551
|
|
|
728
552
|
Definition?: string[];
|
|
729
553
|
}
|
|
730
|
-
export declare namespace PortSet {
|
|
731
|
-
|
|
732
|
-
const filterSensitiveLog: (obj: PortSet) => any;
|
|
733
|
-
}
|
|
734
554
|
|
|
735
555
|
export interface RuleVariables {
|
|
736
556
|
|
|
@@ -738,19 +558,11 @@ export interface RuleVariables {
|
|
|
738
558
|
|
|
739
559
|
PortSets?: Record<string, PortSet>;
|
|
740
560
|
}
|
|
741
|
-
export declare namespace RuleVariables {
|
|
742
|
-
|
|
743
|
-
const filterSensitiveLog: (obj: RuleVariables) => any;
|
|
744
|
-
}
|
|
745
561
|
|
|
746
562
|
export interface StatefulRuleOptions {
|
|
747
563
|
|
|
748
564
|
RuleOrder?: RuleOrder | string;
|
|
749
565
|
}
|
|
750
|
-
export declare namespace StatefulRuleOptions {
|
|
751
|
-
|
|
752
|
-
const filterSensitiveLog: (obj: StatefulRuleOptions) => any;
|
|
753
|
-
}
|
|
754
566
|
|
|
755
567
|
export interface RuleGroup {
|
|
756
568
|
|
|
@@ -762,10 +574,6 @@ export interface RuleGroup {
|
|
|
762
574
|
|
|
763
575
|
StatefulRuleOptions?: StatefulRuleOptions;
|
|
764
576
|
}
|
|
765
|
-
export declare namespace RuleGroup {
|
|
766
|
-
|
|
767
|
-
const filterSensitiveLog: (obj: RuleGroup) => any;
|
|
768
|
-
}
|
|
769
577
|
|
|
770
578
|
export interface SourceMetadata {
|
|
771
579
|
|
|
@@ -773,10 +581,6 @@ export interface SourceMetadata {
|
|
|
773
581
|
|
|
774
582
|
SourceUpdateToken?: string;
|
|
775
583
|
}
|
|
776
|
-
export declare namespace SourceMetadata {
|
|
777
|
-
|
|
778
|
-
const filterSensitiveLog: (obj: SourceMetadata) => any;
|
|
779
|
-
}
|
|
780
584
|
export declare enum RuleGroupType {
|
|
781
585
|
STATEFUL = "STATEFUL",
|
|
782
586
|
STATELESS = "STATELESS"
|
|
@@ -803,10 +607,6 @@ export interface CreateRuleGroupRequest {
|
|
|
803
607
|
|
|
804
608
|
SourceMetadata?: SourceMetadata;
|
|
805
609
|
}
|
|
806
|
-
export declare namespace CreateRuleGroupRequest {
|
|
807
|
-
|
|
808
|
-
const filterSensitiveLog: (obj: CreateRuleGroupRequest) => any;
|
|
809
|
-
}
|
|
810
610
|
|
|
811
611
|
export interface RuleGroupResponse {
|
|
812
612
|
|
|
@@ -838,40 +638,24 @@ export interface RuleGroupResponse {
|
|
|
838
638
|
|
|
839
639
|
LastModifiedTime?: Date;
|
|
840
640
|
}
|
|
841
|
-
export declare namespace RuleGroupResponse {
|
|
842
|
-
|
|
843
|
-
const filterSensitiveLog: (obj: RuleGroupResponse) => any;
|
|
844
|
-
}
|
|
845
641
|
export interface CreateRuleGroupResponse {
|
|
846
642
|
|
|
847
643
|
UpdateToken: string | undefined;
|
|
848
644
|
|
|
849
645
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
850
646
|
}
|
|
851
|
-
export declare namespace CreateRuleGroupResponse {
|
|
852
|
-
|
|
853
|
-
const filterSensitiveLog: (obj: CreateRuleGroupResponse) => any;
|
|
854
|
-
}
|
|
855
647
|
export interface DeleteFirewallRequest {
|
|
856
648
|
|
|
857
649
|
FirewallName?: string;
|
|
858
650
|
|
|
859
651
|
FirewallArn?: string;
|
|
860
652
|
}
|
|
861
|
-
export declare namespace DeleteFirewallRequest {
|
|
862
|
-
|
|
863
|
-
const filterSensitiveLog: (obj: DeleteFirewallRequest) => any;
|
|
864
|
-
}
|
|
865
653
|
export interface DeleteFirewallResponse {
|
|
866
654
|
|
|
867
655
|
Firewall?: Firewall;
|
|
868
656
|
|
|
869
657
|
FirewallStatus?: FirewallStatus;
|
|
870
658
|
}
|
|
871
|
-
export declare namespace DeleteFirewallResponse {
|
|
872
|
-
|
|
873
|
-
const filterSensitiveLog: (obj: DeleteFirewallResponse) => any;
|
|
874
|
-
}
|
|
875
659
|
|
|
876
660
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
877
661
|
readonly name: "UnsupportedOperationException";
|
|
@@ -886,32 +670,16 @@ export interface DeleteFirewallPolicyRequest {
|
|
|
886
670
|
|
|
887
671
|
FirewallPolicyArn?: string;
|
|
888
672
|
}
|
|
889
|
-
export declare namespace DeleteFirewallPolicyRequest {
|
|
890
|
-
|
|
891
|
-
const filterSensitiveLog: (obj: DeleteFirewallPolicyRequest) => any;
|
|
892
|
-
}
|
|
893
673
|
export interface DeleteFirewallPolicyResponse {
|
|
894
674
|
|
|
895
675
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
896
676
|
}
|
|
897
|
-
export declare namespace DeleteFirewallPolicyResponse {
|
|
898
|
-
|
|
899
|
-
const filterSensitiveLog: (obj: DeleteFirewallPolicyResponse) => any;
|
|
900
|
-
}
|
|
901
677
|
export interface DeleteResourcePolicyRequest {
|
|
902
678
|
|
|
903
679
|
ResourceArn: string | undefined;
|
|
904
680
|
}
|
|
905
|
-
export declare namespace DeleteResourcePolicyRequest {
|
|
906
|
-
|
|
907
|
-
const filterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
908
|
-
}
|
|
909
681
|
export interface DeleteResourcePolicyResponse {
|
|
910
682
|
}
|
|
911
|
-
export declare namespace DeleteResourcePolicyResponse {
|
|
912
|
-
|
|
913
|
-
const filterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
914
|
-
}
|
|
915
683
|
|
|
916
684
|
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
917
685
|
readonly name: "InvalidResourcePolicyException";
|
|
@@ -928,28 +696,16 @@ export interface DeleteRuleGroupRequest {
|
|
|
928
696
|
|
|
929
697
|
Type?: RuleGroupType | string;
|
|
930
698
|
}
|
|
931
|
-
export declare namespace DeleteRuleGroupRequest {
|
|
932
|
-
|
|
933
|
-
const filterSensitiveLog: (obj: DeleteRuleGroupRequest) => any;
|
|
934
|
-
}
|
|
935
699
|
export interface DeleteRuleGroupResponse {
|
|
936
700
|
|
|
937
701
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
938
702
|
}
|
|
939
|
-
export declare namespace DeleteRuleGroupResponse {
|
|
940
|
-
|
|
941
|
-
const filterSensitiveLog: (obj: DeleteRuleGroupResponse) => any;
|
|
942
|
-
}
|
|
943
703
|
export interface DescribeFirewallRequest {
|
|
944
704
|
|
|
945
705
|
FirewallName?: string;
|
|
946
706
|
|
|
947
707
|
FirewallArn?: string;
|
|
948
708
|
}
|
|
949
|
-
export declare namespace DescribeFirewallRequest {
|
|
950
|
-
|
|
951
|
-
const filterSensitiveLog: (obj: DescribeFirewallRequest) => any;
|
|
952
|
-
}
|
|
953
709
|
export interface DescribeFirewallResponse {
|
|
954
710
|
|
|
955
711
|
UpdateToken?: string;
|
|
@@ -958,20 +714,12 @@ export interface DescribeFirewallResponse {
|
|
|
958
714
|
|
|
959
715
|
FirewallStatus?: FirewallStatus;
|
|
960
716
|
}
|
|
961
|
-
export declare namespace DescribeFirewallResponse {
|
|
962
|
-
|
|
963
|
-
const filterSensitiveLog: (obj: DescribeFirewallResponse) => any;
|
|
964
|
-
}
|
|
965
717
|
export interface DescribeFirewallPolicyRequest {
|
|
966
718
|
|
|
967
719
|
FirewallPolicyName?: string;
|
|
968
720
|
|
|
969
721
|
FirewallPolicyArn?: string;
|
|
970
722
|
}
|
|
971
|
-
export declare namespace DescribeFirewallPolicyRequest {
|
|
972
|
-
|
|
973
|
-
const filterSensitiveLog: (obj: DescribeFirewallPolicyRequest) => any;
|
|
974
|
-
}
|
|
975
723
|
export interface DescribeFirewallPolicyResponse {
|
|
976
724
|
|
|
977
725
|
UpdateToken: string | undefined;
|
|
@@ -980,20 +728,12 @@ export interface DescribeFirewallPolicyResponse {
|
|
|
980
728
|
|
|
981
729
|
FirewallPolicy?: FirewallPolicy;
|
|
982
730
|
}
|
|
983
|
-
export declare namespace DescribeFirewallPolicyResponse {
|
|
984
|
-
|
|
985
|
-
const filterSensitiveLog: (obj: DescribeFirewallPolicyResponse) => any;
|
|
986
|
-
}
|
|
987
731
|
export interface DescribeLoggingConfigurationRequest {
|
|
988
732
|
|
|
989
733
|
FirewallArn?: string;
|
|
990
734
|
|
|
991
735
|
FirewallName?: string;
|
|
992
736
|
}
|
|
993
|
-
export declare namespace DescribeLoggingConfigurationRequest {
|
|
994
|
-
|
|
995
|
-
const filterSensitiveLog: (obj: DescribeLoggingConfigurationRequest) => any;
|
|
996
|
-
}
|
|
997
737
|
export declare enum LogDestinationType {
|
|
998
738
|
CLOUDWATCH_LOGS = "CloudWatchLogs",
|
|
999
739
|
KINESIS_DATA_FIREHOSE = "KinesisDataFirehose",
|
|
@@ -1012,45 +752,25 @@ export interface LogDestinationConfig {
|
|
|
1012
752
|
|
|
1013
753
|
LogDestination: Record<string, string> | undefined;
|
|
1014
754
|
}
|
|
1015
|
-
export declare namespace LogDestinationConfig {
|
|
1016
|
-
|
|
1017
|
-
const filterSensitiveLog: (obj: LogDestinationConfig) => any;
|
|
1018
|
-
}
|
|
1019
755
|
|
|
1020
756
|
export interface LoggingConfiguration {
|
|
1021
757
|
|
|
1022
758
|
LogDestinationConfigs: LogDestinationConfig[] | undefined;
|
|
1023
759
|
}
|
|
1024
|
-
export declare namespace LoggingConfiguration {
|
|
1025
|
-
|
|
1026
|
-
const filterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
1027
|
-
}
|
|
1028
760
|
export interface DescribeLoggingConfigurationResponse {
|
|
1029
761
|
|
|
1030
762
|
FirewallArn?: string;
|
|
1031
763
|
|
|
1032
764
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1033
765
|
}
|
|
1034
|
-
export declare namespace DescribeLoggingConfigurationResponse {
|
|
1035
|
-
|
|
1036
|
-
const filterSensitiveLog: (obj: DescribeLoggingConfigurationResponse) => any;
|
|
1037
|
-
}
|
|
1038
766
|
export interface DescribeResourcePolicyRequest {
|
|
1039
767
|
|
|
1040
768
|
ResourceArn: string | undefined;
|
|
1041
769
|
}
|
|
1042
|
-
export declare namespace DescribeResourcePolicyRequest {
|
|
1043
|
-
|
|
1044
|
-
const filterSensitiveLog: (obj: DescribeResourcePolicyRequest) => any;
|
|
1045
|
-
}
|
|
1046
770
|
export interface DescribeResourcePolicyResponse {
|
|
1047
771
|
|
|
1048
772
|
Policy?: string;
|
|
1049
773
|
}
|
|
1050
|
-
export declare namespace DescribeResourcePolicyResponse {
|
|
1051
|
-
|
|
1052
|
-
const filterSensitiveLog: (obj: DescribeResourcePolicyResponse) => any;
|
|
1053
|
-
}
|
|
1054
774
|
export interface DescribeRuleGroupRequest {
|
|
1055
775
|
|
|
1056
776
|
RuleGroupName?: string;
|
|
@@ -1059,10 +779,6 @@ export interface DescribeRuleGroupRequest {
|
|
|
1059
779
|
|
|
1060
780
|
Type?: RuleGroupType | string;
|
|
1061
781
|
}
|
|
1062
|
-
export declare namespace DescribeRuleGroupRequest {
|
|
1063
|
-
|
|
1064
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupRequest) => any;
|
|
1065
|
-
}
|
|
1066
782
|
export interface DescribeRuleGroupResponse {
|
|
1067
783
|
|
|
1068
784
|
UpdateToken: string | undefined;
|
|
@@ -1071,10 +787,6 @@ export interface DescribeRuleGroupResponse {
|
|
|
1071
787
|
|
|
1072
788
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
1073
789
|
}
|
|
1074
|
-
export declare namespace DescribeRuleGroupResponse {
|
|
1075
|
-
|
|
1076
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupResponse) => any;
|
|
1077
|
-
}
|
|
1078
790
|
export interface DescribeRuleGroupMetadataRequest {
|
|
1079
791
|
|
|
1080
792
|
RuleGroupName?: string;
|
|
@@ -1083,10 +795,6 @@ export interface DescribeRuleGroupMetadataRequest {
|
|
|
1083
795
|
|
|
1084
796
|
Type?: RuleGroupType | string;
|
|
1085
797
|
}
|
|
1086
|
-
export declare namespace DescribeRuleGroupMetadataRequest {
|
|
1087
|
-
|
|
1088
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupMetadataRequest) => any;
|
|
1089
|
-
}
|
|
1090
798
|
export interface DescribeRuleGroupMetadataResponse {
|
|
1091
799
|
|
|
1092
800
|
RuleGroupArn: string | undefined;
|
|
@@ -1103,10 +811,6 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
1103
811
|
|
|
1104
812
|
LastModifiedTime?: Date;
|
|
1105
813
|
}
|
|
1106
|
-
export declare namespace DescribeRuleGroupMetadataResponse {
|
|
1107
|
-
|
|
1108
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupMetadataResponse) => any;
|
|
1109
|
-
}
|
|
1110
814
|
export interface DisassociateSubnetsRequest {
|
|
1111
815
|
|
|
1112
816
|
UpdateToken?: string;
|
|
@@ -1117,10 +821,6 @@ export interface DisassociateSubnetsRequest {
|
|
|
1117
821
|
|
|
1118
822
|
SubnetIds: string[] | undefined;
|
|
1119
823
|
}
|
|
1120
|
-
export declare namespace DisassociateSubnetsRequest {
|
|
1121
|
-
|
|
1122
|
-
const filterSensitiveLog: (obj: DisassociateSubnetsRequest) => any;
|
|
1123
|
-
}
|
|
1124
824
|
export interface DisassociateSubnetsResponse {
|
|
1125
825
|
|
|
1126
826
|
FirewallArn?: string;
|
|
@@ -1131,10 +831,6 @@ export interface DisassociateSubnetsResponse {
|
|
|
1131
831
|
|
|
1132
832
|
UpdateToken?: string;
|
|
1133
833
|
}
|
|
1134
|
-
export declare namespace DisassociateSubnetsResponse {
|
|
1135
|
-
|
|
1136
|
-
const filterSensitiveLog: (obj: DisassociateSubnetsResponse) => any;
|
|
1137
|
-
}
|
|
1138
834
|
|
|
1139
835
|
export interface FirewallMetadata {
|
|
1140
836
|
|
|
@@ -1142,10 +838,6 @@ export interface FirewallMetadata {
|
|
|
1142
838
|
|
|
1143
839
|
FirewallArn?: string;
|
|
1144
840
|
}
|
|
1145
|
-
export declare namespace FirewallMetadata {
|
|
1146
|
-
|
|
1147
|
-
const filterSensitiveLog: (obj: FirewallMetadata) => any;
|
|
1148
|
-
}
|
|
1149
841
|
|
|
1150
842
|
export interface FirewallPolicyMetadata {
|
|
1151
843
|
|
|
@@ -1153,30 +845,18 @@ export interface FirewallPolicyMetadata {
|
|
|
1153
845
|
|
|
1154
846
|
Arn?: string;
|
|
1155
847
|
}
|
|
1156
|
-
export declare namespace FirewallPolicyMetadata {
|
|
1157
|
-
|
|
1158
|
-
const filterSensitiveLog: (obj: FirewallPolicyMetadata) => any;
|
|
1159
|
-
}
|
|
1160
848
|
export interface ListFirewallPoliciesRequest {
|
|
1161
849
|
|
|
1162
850
|
NextToken?: string;
|
|
1163
851
|
|
|
1164
852
|
MaxResults?: number;
|
|
1165
853
|
}
|
|
1166
|
-
export declare namespace ListFirewallPoliciesRequest {
|
|
1167
|
-
|
|
1168
|
-
const filterSensitiveLog: (obj: ListFirewallPoliciesRequest) => any;
|
|
1169
|
-
}
|
|
1170
854
|
export interface ListFirewallPoliciesResponse {
|
|
1171
855
|
|
|
1172
856
|
NextToken?: string;
|
|
1173
857
|
|
|
1174
858
|
FirewallPolicies?: FirewallPolicyMetadata[];
|
|
1175
859
|
}
|
|
1176
|
-
export declare namespace ListFirewallPoliciesResponse {
|
|
1177
|
-
|
|
1178
|
-
const filterSensitiveLog: (obj: ListFirewallPoliciesResponse) => any;
|
|
1179
|
-
}
|
|
1180
860
|
export interface ListFirewallsRequest {
|
|
1181
861
|
|
|
1182
862
|
NextToken?: string;
|
|
@@ -1185,20 +865,12 @@ export interface ListFirewallsRequest {
|
|
|
1185
865
|
|
|
1186
866
|
MaxResults?: number;
|
|
1187
867
|
}
|
|
1188
|
-
export declare namespace ListFirewallsRequest {
|
|
1189
|
-
|
|
1190
|
-
const filterSensitiveLog: (obj: ListFirewallsRequest) => any;
|
|
1191
|
-
}
|
|
1192
868
|
export interface ListFirewallsResponse {
|
|
1193
869
|
|
|
1194
870
|
NextToken?: string;
|
|
1195
871
|
|
|
1196
872
|
Firewalls?: FirewallMetadata[];
|
|
1197
873
|
}
|
|
1198
|
-
export declare namespace ListFirewallsResponse {
|
|
1199
|
-
|
|
1200
|
-
const filterSensitiveLog: (obj: ListFirewallsResponse) => any;
|
|
1201
|
-
}
|
|
1202
874
|
export declare enum ResourceManagedType {
|
|
1203
875
|
AWS_MANAGED_DOMAIN_LISTS = "AWS_MANAGED_DOMAIN_LISTS",
|
|
1204
876
|
AWS_MANAGED_THREAT_SIGNATURES = "AWS_MANAGED_THREAT_SIGNATURES"
|
|
@@ -1219,10 +891,6 @@ export interface ListRuleGroupsRequest {
|
|
|
1219
891
|
|
|
1220
892
|
Type?: RuleGroupType | string;
|
|
1221
893
|
}
|
|
1222
|
-
export declare namespace ListRuleGroupsRequest {
|
|
1223
|
-
|
|
1224
|
-
const filterSensitiveLog: (obj: ListRuleGroupsRequest) => any;
|
|
1225
|
-
}
|
|
1226
894
|
|
|
1227
895
|
export interface RuleGroupMetadata {
|
|
1228
896
|
|
|
@@ -1230,20 +898,12 @@ export interface RuleGroupMetadata {
|
|
|
1230
898
|
|
|
1231
899
|
Arn?: string;
|
|
1232
900
|
}
|
|
1233
|
-
export declare namespace RuleGroupMetadata {
|
|
1234
|
-
|
|
1235
|
-
const filterSensitiveLog: (obj: RuleGroupMetadata) => any;
|
|
1236
|
-
}
|
|
1237
901
|
export interface ListRuleGroupsResponse {
|
|
1238
902
|
|
|
1239
903
|
NextToken?: string;
|
|
1240
904
|
|
|
1241
905
|
RuleGroups?: RuleGroupMetadata[];
|
|
1242
906
|
}
|
|
1243
|
-
export declare namespace ListRuleGroupsResponse {
|
|
1244
|
-
|
|
1245
|
-
const filterSensitiveLog: (obj: ListRuleGroupsResponse) => any;
|
|
1246
|
-
}
|
|
1247
907
|
export interface ListTagsForResourceRequest {
|
|
1248
908
|
|
|
1249
909
|
NextToken?: string;
|
|
@@ -1252,20 +912,12 @@ export interface ListTagsForResourceRequest {
|
|
|
1252
912
|
|
|
1253
913
|
ResourceArn: string | undefined;
|
|
1254
914
|
}
|
|
1255
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1256
|
-
|
|
1257
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1258
|
-
}
|
|
1259
915
|
export interface ListTagsForResourceResponse {
|
|
1260
916
|
|
|
1261
917
|
NextToken?: string;
|
|
1262
918
|
|
|
1263
919
|
Tags?: Tag[];
|
|
1264
920
|
}
|
|
1265
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1266
|
-
|
|
1267
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1268
|
-
}
|
|
1269
921
|
|
|
1270
922
|
export declare class LogDestinationPermissionException extends __BaseException {
|
|
1271
923
|
readonly name: "LogDestinationPermissionException";
|
|
@@ -1280,48 +932,24 @@ export interface PutResourcePolicyRequest {
|
|
|
1280
932
|
|
|
1281
933
|
Policy: string | undefined;
|
|
1282
934
|
}
|
|
1283
|
-
export declare namespace PutResourcePolicyRequest {
|
|
1284
|
-
|
|
1285
|
-
const filterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1286
|
-
}
|
|
1287
935
|
export interface PutResourcePolicyResponse {
|
|
1288
936
|
}
|
|
1289
|
-
export declare namespace PutResourcePolicyResponse {
|
|
1290
|
-
|
|
1291
|
-
const filterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1292
|
-
}
|
|
1293
937
|
export interface TagResourceRequest {
|
|
1294
938
|
|
|
1295
939
|
ResourceArn: string | undefined;
|
|
1296
940
|
|
|
1297
941
|
Tags: Tag[] | undefined;
|
|
1298
942
|
}
|
|
1299
|
-
export declare namespace TagResourceRequest {
|
|
1300
|
-
|
|
1301
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1302
|
-
}
|
|
1303
943
|
export interface TagResourceResponse {
|
|
1304
944
|
}
|
|
1305
|
-
export declare namespace TagResourceResponse {
|
|
1306
|
-
|
|
1307
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1308
|
-
}
|
|
1309
945
|
export interface UntagResourceRequest {
|
|
1310
946
|
|
|
1311
947
|
ResourceArn: string | undefined;
|
|
1312
948
|
|
|
1313
949
|
TagKeys: string[] | undefined;
|
|
1314
950
|
}
|
|
1315
|
-
export declare namespace UntagResourceRequest {
|
|
1316
|
-
|
|
1317
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1318
|
-
}
|
|
1319
951
|
export interface UntagResourceResponse {
|
|
1320
952
|
}
|
|
1321
|
-
export declare namespace UntagResourceResponse {
|
|
1322
|
-
|
|
1323
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1324
|
-
}
|
|
1325
953
|
|
|
1326
954
|
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
1327
955
|
readonly name: "ResourceOwnerCheckException";
|
|
@@ -1340,10 +968,6 @@ export interface UpdateFirewallDeleteProtectionRequest {
|
|
|
1340
968
|
|
|
1341
969
|
DeleteProtection: boolean | undefined;
|
|
1342
970
|
}
|
|
1343
|
-
export declare namespace UpdateFirewallDeleteProtectionRequest {
|
|
1344
|
-
|
|
1345
|
-
const filterSensitiveLog: (obj: UpdateFirewallDeleteProtectionRequest) => any;
|
|
1346
|
-
}
|
|
1347
971
|
export interface UpdateFirewallDeleteProtectionResponse {
|
|
1348
972
|
|
|
1349
973
|
FirewallArn?: string;
|
|
@@ -1354,10 +978,6 @@ export interface UpdateFirewallDeleteProtectionResponse {
|
|
|
1354
978
|
|
|
1355
979
|
UpdateToken?: string;
|
|
1356
980
|
}
|
|
1357
|
-
export declare namespace UpdateFirewallDeleteProtectionResponse {
|
|
1358
|
-
|
|
1359
|
-
const filterSensitiveLog: (obj: UpdateFirewallDeleteProtectionResponse) => any;
|
|
1360
|
-
}
|
|
1361
981
|
export interface UpdateFirewallDescriptionRequest {
|
|
1362
982
|
|
|
1363
983
|
UpdateToken?: string;
|
|
@@ -1368,10 +988,6 @@ export interface UpdateFirewallDescriptionRequest {
|
|
|
1368
988
|
|
|
1369
989
|
Description?: string;
|
|
1370
990
|
}
|
|
1371
|
-
export declare namespace UpdateFirewallDescriptionRequest {
|
|
1372
|
-
|
|
1373
|
-
const filterSensitiveLog: (obj: UpdateFirewallDescriptionRequest) => any;
|
|
1374
|
-
}
|
|
1375
991
|
export interface UpdateFirewallDescriptionResponse {
|
|
1376
992
|
|
|
1377
993
|
FirewallArn?: string;
|
|
@@ -1382,10 +998,6 @@ export interface UpdateFirewallDescriptionResponse {
|
|
|
1382
998
|
|
|
1383
999
|
UpdateToken?: string;
|
|
1384
1000
|
}
|
|
1385
|
-
export declare namespace UpdateFirewallDescriptionResponse {
|
|
1386
|
-
|
|
1387
|
-
const filterSensitiveLog: (obj: UpdateFirewallDescriptionResponse) => any;
|
|
1388
|
-
}
|
|
1389
1001
|
export interface UpdateFirewallEncryptionConfigurationRequest {
|
|
1390
1002
|
|
|
1391
1003
|
UpdateToken?: string;
|
|
@@ -1396,10 +1008,6 @@ export interface UpdateFirewallEncryptionConfigurationRequest {
|
|
|
1396
1008
|
|
|
1397
1009
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1398
1010
|
}
|
|
1399
|
-
export declare namespace UpdateFirewallEncryptionConfigurationRequest {
|
|
1400
|
-
|
|
1401
|
-
const filterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationRequest) => any;
|
|
1402
|
-
}
|
|
1403
1011
|
export interface UpdateFirewallEncryptionConfigurationResponse {
|
|
1404
1012
|
|
|
1405
1013
|
FirewallArn?: string;
|
|
@@ -1410,10 +1018,6 @@ export interface UpdateFirewallEncryptionConfigurationResponse {
|
|
|
1410
1018
|
|
|
1411
1019
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1412
1020
|
}
|
|
1413
|
-
export declare namespace UpdateFirewallEncryptionConfigurationResponse {
|
|
1414
|
-
|
|
1415
|
-
const filterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationResponse) => any;
|
|
1416
|
-
}
|
|
1417
1021
|
export interface UpdateFirewallPolicyRequest {
|
|
1418
1022
|
|
|
1419
1023
|
UpdateToken: string | undefined;
|
|
@@ -1430,20 +1034,12 @@ export interface UpdateFirewallPolicyRequest {
|
|
|
1430
1034
|
|
|
1431
1035
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1432
1036
|
}
|
|
1433
|
-
export declare namespace UpdateFirewallPolicyRequest {
|
|
1434
|
-
|
|
1435
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyRequest) => any;
|
|
1436
|
-
}
|
|
1437
1037
|
export interface UpdateFirewallPolicyResponse {
|
|
1438
1038
|
|
|
1439
1039
|
UpdateToken: string | undefined;
|
|
1440
1040
|
|
|
1441
1041
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
1442
1042
|
}
|
|
1443
|
-
export declare namespace UpdateFirewallPolicyResponse {
|
|
1444
|
-
|
|
1445
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyResponse) => any;
|
|
1446
|
-
}
|
|
1447
1043
|
export interface UpdateFirewallPolicyChangeProtectionRequest {
|
|
1448
1044
|
|
|
1449
1045
|
UpdateToken?: string;
|
|
@@ -1454,10 +1050,6 @@ export interface UpdateFirewallPolicyChangeProtectionRequest {
|
|
|
1454
1050
|
|
|
1455
1051
|
FirewallPolicyChangeProtection: boolean | undefined;
|
|
1456
1052
|
}
|
|
1457
|
-
export declare namespace UpdateFirewallPolicyChangeProtectionRequest {
|
|
1458
|
-
|
|
1459
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionRequest) => any;
|
|
1460
|
-
}
|
|
1461
1053
|
export interface UpdateFirewallPolicyChangeProtectionResponse {
|
|
1462
1054
|
|
|
1463
1055
|
UpdateToken?: string;
|
|
@@ -1468,10 +1060,6 @@ export interface UpdateFirewallPolicyChangeProtectionResponse {
|
|
|
1468
1060
|
|
|
1469
1061
|
FirewallPolicyChangeProtection?: boolean;
|
|
1470
1062
|
}
|
|
1471
|
-
export declare namespace UpdateFirewallPolicyChangeProtectionResponse {
|
|
1472
|
-
|
|
1473
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionResponse) => any;
|
|
1474
|
-
}
|
|
1475
1063
|
export interface UpdateLoggingConfigurationRequest {
|
|
1476
1064
|
|
|
1477
1065
|
FirewallArn?: string;
|
|
@@ -1480,10 +1068,6 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
1480
1068
|
|
|
1481
1069
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1482
1070
|
}
|
|
1483
|
-
export declare namespace UpdateLoggingConfigurationRequest {
|
|
1484
|
-
|
|
1485
|
-
const filterSensitiveLog: (obj: UpdateLoggingConfigurationRequest) => any;
|
|
1486
|
-
}
|
|
1487
1071
|
export interface UpdateLoggingConfigurationResponse {
|
|
1488
1072
|
|
|
1489
1073
|
FirewallArn?: string;
|
|
@@ -1492,10 +1076,6 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
1492
1076
|
|
|
1493
1077
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1494
1078
|
}
|
|
1495
|
-
export declare namespace UpdateLoggingConfigurationResponse {
|
|
1496
|
-
|
|
1497
|
-
const filterSensitiveLog: (obj: UpdateLoggingConfigurationResponse) => any;
|
|
1498
|
-
}
|
|
1499
1079
|
export interface UpdateRuleGroupRequest {
|
|
1500
1080
|
|
|
1501
1081
|
UpdateToken: string | undefined;
|
|
@@ -1518,20 +1098,12 @@ export interface UpdateRuleGroupRequest {
|
|
|
1518
1098
|
|
|
1519
1099
|
SourceMetadata?: SourceMetadata;
|
|
1520
1100
|
}
|
|
1521
|
-
export declare namespace UpdateRuleGroupRequest {
|
|
1522
|
-
|
|
1523
|
-
const filterSensitiveLog: (obj: UpdateRuleGroupRequest) => any;
|
|
1524
|
-
}
|
|
1525
1101
|
export interface UpdateRuleGroupResponse {
|
|
1526
1102
|
|
|
1527
1103
|
UpdateToken: string | undefined;
|
|
1528
1104
|
|
|
1529
1105
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
1530
1106
|
}
|
|
1531
|
-
export declare namespace UpdateRuleGroupResponse {
|
|
1532
|
-
|
|
1533
|
-
const filterSensitiveLog: (obj: UpdateRuleGroupResponse) => any;
|
|
1534
|
-
}
|
|
1535
1107
|
export interface UpdateSubnetChangeProtectionRequest {
|
|
1536
1108
|
|
|
1537
1109
|
UpdateToken?: string;
|
|
@@ -1542,10 +1114,6 @@ export interface UpdateSubnetChangeProtectionRequest {
|
|
|
1542
1114
|
|
|
1543
1115
|
SubnetChangeProtection: boolean | undefined;
|
|
1544
1116
|
}
|
|
1545
|
-
export declare namespace UpdateSubnetChangeProtectionRequest {
|
|
1546
|
-
|
|
1547
|
-
const filterSensitiveLog: (obj: UpdateSubnetChangeProtectionRequest) => any;
|
|
1548
|
-
}
|
|
1549
1117
|
export interface UpdateSubnetChangeProtectionResponse {
|
|
1550
1118
|
|
|
1551
1119
|
UpdateToken?: string;
|
|
@@ -1556,7 +1124,221 @@ export interface UpdateSubnetChangeProtectionResponse {
|
|
|
1556
1124
|
|
|
1557
1125
|
SubnetChangeProtection?: boolean;
|
|
1558
1126
|
}
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1127
|
+
|
|
1128
|
+
export declare const DimensionFilterSensitiveLog: (obj: Dimension) => any;
|
|
1129
|
+
|
|
1130
|
+
export declare const PublishMetricActionFilterSensitiveLog: (obj: PublishMetricAction) => any;
|
|
1131
|
+
|
|
1132
|
+
export declare const ActionDefinitionFilterSensitiveLog: (obj: ActionDefinition) => any;
|
|
1133
|
+
|
|
1134
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1135
|
+
|
|
1136
|
+
export declare const AssociateFirewallPolicyRequestFilterSensitiveLog: (obj: AssociateFirewallPolicyRequest) => any;
|
|
1137
|
+
|
|
1138
|
+
export declare const AssociateFirewallPolicyResponseFilterSensitiveLog: (obj: AssociateFirewallPolicyResponse) => any;
|
|
1139
|
+
|
|
1140
|
+
export declare const SubnetMappingFilterSensitiveLog: (obj: SubnetMapping) => any;
|
|
1141
|
+
|
|
1142
|
+
export declare const AssociateSubnetsRequestFilterSensitiveLog: (obj: AssociateSubnetsRequest) => any;
|
|
1143
|
+
|
|
1144
|
+
export declare const AssociateSubnetsResponseFilterSensitiveLog: (obj: AssociateSubnetsResponse) => any;
|
|
1145
|
+
|
|
1146
|
+
export declare const AttachmentFilterSensitiveLog: (obj: Attachment) => any;
|
|
1147
|
+
|
|
1148
|
+
export declare const IPSetMetadataFilterSensitiveLog: (obj: IPSetMetadata) => any;
|
|
1149
|
+
|
|
1150
|
+
export declare const CIDRSummaryFilterSensitiveLog: (obj: CIDRSummary) => any;
|
|
1151
|
+
|
|
1152
|
+
export declare const CapacityUsageSummaryFilterSensitiveLog: (obj: CapacityUsageSummary) => any;
|
|
1153
|
+
|
|
1154
|
+
export declare const EncryptionConfigurationFilterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
1155
|
+
|
|
1156
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1157
|
+
|
|
1158
|
+
export declare const CreateFirewallRequestFilterSensitiveLog: (obj: CreateFirewallRequest) => any;
|
|
1159
|
+
|
|
1160
|
+
export declare const FirewallFilterSensitiveLog: (obj: Firewall) => any;
|
|
1161
|
+
|
|
1162
|
+
export declare const PerObjectStatusFilterSensitiveLog: (obj: PerObjectStatus) => any;
|
|
1163
|
+
|
|
1164
|
+
export declare const SyncStateFilterSensitiveLog: (obj: SyncState) => any;
|
|
1165
|
+
|
|
1166
|
+
export declare const FirewallStatusFilterSensitiveLog: (obj: FirewallStatus) => any;
|
|
1167
|
+
|
|
1168
|
+
export declare const CreateFirewallResponseFilterSensitiveLog: (obj: CreateFirewallResponse) => any;
|
|
1169
|
+
|
|
1170
|
+
export declare const StatefulEngineOptionsFilterSensitiveLog: (obj: StatefulEngineOptions) => any;
|
|
1171
|
+
|
|
1172
|
+
export declare const StatefulRuleGroupOverrideFilterSensitiveLog: (obj: StatefulRuleGroupOverride) => any;
|
|
1173
|
+
|
|
1174
|
+
export declare const StatefulRuleGroupReferenceFilterSensitiveLog: (obj: StatefulRuleGroupReference) => any;
|
|
1175
|
+
|
|
1176
|
+
export declare const CustomActionFilterSensitiveLog: (obj: CustomAction) => any;
|
|
1177
|
+
|
|
1178
|
+
export declare const StatelessRuleGroupReferenceFilterSensitiveLog: (obj: StatelessRuleGroupReference) => any;
|
|
1179
|
+
|
|
1180
|
+
export declare const FirewallPolicyFilterSensitiveLog: (obj: FirewallPolicy) => any;
|
|
1181
|
+
|
|
1182
|
+
export declare const CreateFirewallPolicyRequestFilterSensitiveLog: (obj: CreateFirewallPolicyRequest) => any;
|
|
1183
|
+
|
|
1184
|
+
export declare const FirewallPolicyResponseFilterSensitiveLog: (obj: FirewallPolicyResponse) => any;
|
|
1185
|
+
|
|
1186
|
+
export declare const CreateFirewallPolicyResponseFilterSensitiveLog: (obj: CreateFirewallPolicyResponse) => any;
|
|
1187
|
+
|
|
1188
|
+
export declare const IPSetReferenceFilterSensitiveLog: (obj: IPSetReference) => any;
|
|
1189
|
+
|
|
1190
|
+
export declare const ReferenceSetsFilterSensitiveLog: (obj: ReferenceSets) => any;
|
|
1191
|
+
|
|
1192
|
+
export declare const RulesSourceListFilterSensitiveLog: (obj: RulesSourceList) => any;
|
|
1193
|
+
|
|
1194
|
+
export declare const HeaderFilterSensitiveLog: (obj: Header) => any;
|
|
1195
|
+
|
|
1196
|
+
export declare const RuleOptionFilterSensitiveLog: (obj: RuleOption) => any;
|
|
1197
|
+
|
|
1198
|
+
export declare const StatefulRuleFilterSensitiveLog: (obj: StatefulRule) => any;
|
|
1199
|
+
|
|
1200
|
+
export declare const PortRangeFilterSensitiveLog: (obj: PortRange) => any;
|
|
1201
|
+
|
|
1202
|
+
export declare const TCPFlagFieldFilterSensitiveLog: (obj: TCPFlagField) => any;
|
|
1203
|
+
|
|
1204
|
+
export declare const MatchAttributesFilterSensitiveLog: (obj: MatchAttributes) => any;
|
|
1205
|
+
|
|
1206
|
+
export declare const RuleDefinitionFilterSensitiveLog: (obj: RuleDefinition) => any;
|
|
1207
|
+
|
|
1208
|
+
export declare const StatelessRuleFilterSensitiveLog: (obj: StatelessRule) => any;
|
|
1209
|
+
|
|
1210
|
+
export declare const StatelessRulesAndCustomActionsFilterSensitiveLog: (obj: StatelessRulesAndCustomActions) => any;
|
|
1211
|
+
|
|
1212
|
+
export declare const RulesSourceFilterSensitiveLog: (obj: RulesSource) => any;
|
|
1213
|
+
|
|
1214
|
+
export declare const IPSetFilterSensitiveLog: (obj: IPSet) => any;
|
|
1215
|
+
|
|
1216
|
+
export declare const PortSetFilterSensitiveLog: (obj: PortSet) => any;
|
|
1217
|
+
|
|
1218
|
+
export declare const RuleVariablesFilterSensitiveLog: (obj: RuleVariables) => any;
|
|
1219
|
+
|
|
1220
|
+
export declare const StatefulRuleOptionsFilterSensitiveLog: (obj: StatefulRuleOptions) => any;
|
|
1221
|
+
|
|
1222
|
+
export declare const RuleGroupFilterSensitiveLog: (obj: RuleGroup) => any;
|
|
1223
|
+
|
|
1224
|
+
export declare const SourceMetadataFilterSensitiveLog: (obj: SourceMetadata) => any;
|
|
1225
|
+
|
|
1226
|
+
export declare const CreateRuleGroupRequestFilterSensitiveLog: (obj: CreateRuleGroupRequest) => any;
|
|
1227
|
+
|
|
1228
|
+
export declare const RuleGroupResponseFilterSensitiveLog: (obj: RuleGroupResponse) => any;
|
|
1229
|
+
|
|
1230
|
+
export declare const CreateRuleGroupResponseFilterSensitiveLog: (obj: CreateRuleGroupResponse) => any;
|
|
1231
|
+
|
|
1232
|
+
export declare const DeleteFirewallRequestFilterSensitiveLog: (obj: DeleteFirewallRequest) => any;
|
|
1233
|
+
|
|
1234
|
+
export declare const DeleteFirewallResponseFilterSensitiveLog: (obj: DeleteFirewallResponse) => any;
|
|
1235
|
+
|
|
1236
|
+
export declare const DeleteFirewallPolicyRequestFilterSensitiveLog: (obj: DeleteFirewallPolicyRequest) => any;
|
|
1237
|
+
|
|
1238
|
+
export declare const DeleteFirewallPolicyResponseFilterSensitiveLog: (obj: DeleteFirewallPolicyResponse) => any;
|
|
1239
|
+
|
|
1240
|
+
export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
1241
|
+
|
|
1242
|
+
export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
1243
|
+
|
|
1244
|
+
export declare const DeleteRuleGroupRequestFilterSensitiveLog: (obj: DeleteRuleGroupRequest) => any;
|
|
1245
|
+
|
|
1246
|
+
export declare const DeleteRuleGroupResponseFilterSensitiveLog: (obj: DeleteRuleGroupResponse) => any;
|
|
1247
|
+
|
|
1248
|
+
export declare const DescribeFirewallRequestFilterSensitiveLog: (obj: DescribeFirewallRequest) => any;
|
|
1249
|
+
|
|
1250
|
+
export declare const DescribeFirewallResponseFilterSensitiveLog: (obj: DescribeFirewallResponse) => any;
|
|
1251
|
+
|
|
1252
|
+
export declare const DescribeFirewallPolicyRequestFilterSensitiveLog: (obj: DescribeFirewallPolicyRequest) => any;
|
|
1253
|
+
|
|
1254
|
+
export declare const DescribeFirewallPolicyResponseFilterSensitiveLog: (obj: DescribeFirewallPolicyResponse) => any;
|
|
1255
|
+
|
|
1256
|
+
export declare const DescribeLoggingConfigurationRequestFilterSensitiveLog: (obj: DescribeLoggingConfigurationRequest) => any;
|
|
1257
|
+
|
|
1258
|
+
export declare const LogDestinationConfigFilterSensitiveLog: (obj: LogDestinationConfig) => any;
|
|
1259
|
+
|
|
1260
|
+
export declare const LoggingConfigurationFilterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
1261
|
+
|
|
1262
|
+
export declare const DescribeLoggingConfigurationResponseFilterSensitiveLog: (obj: DescribeLoggingConfigurationResponse) => any;
|
|
1263
|
+
|
|
1264
|
+
export declare const DescribeResourcePolicyRequestFilterSensitiveLog: (obj: DescribeResourcePolicyRequest) => any;
|
|
1265
|
+
|
|
1266
|
+
export declare const DescribeResourcePolicyResponseFilterSensitiveLog: (obj: DescribeResourcePolicyResponse) => any;
|
|
1267
|
+
|
|
1268
|
+
export declare const DescribeRuleGroupRequestFilterSensitiveLog: (obj: DescribeRuleGroupRequest) => any;
|
|
1269
|
+
|
|
1270
|
+
export declare const DescribeRuleGroupResponseFilterSensitiveLog: (obj: DescribeRuleGroupResponse) => any;
|
|
1271
|
+
|
|
1272
|
+
export declare const DescribeRuleGroupMetadataRequestFilterSensitiveLog: (obj: DescribeRuleGroupMetadataRequest) => any;
|
|
1273
|
+
|
|
1274
|
+
export declare const DescribeRuleGroupMetadataResponseFilterSensitiveLog: (obj: DescribeRuleGroupMetadataResponse) => any;
|
|
1275
|
+
|
|
1276
|
+
export declare const DisassociateSubnetsRequestFilterSensitiveLog: (obj: DisassociateSubnetsRequest) => any;
|
|
1277
|
+
|
|
1278
|
+
export declare const DisassociateSubnetsResponseFilterSensitiveLog: (obj: DisassociateSubnetsResponse) => any;
|
|
1279
|
+
|
|
1280
|
+
export declare const FirewallMetadataFilterSensitiveLog: (obj: FirewallMetadata) => any;
|
|
1281
|
+
|
|
1282
|
+
export declare const FirewallPolicyMetadataFilterSensitiveLog: (obj: FirewallPolicyMetadata) => any;
|
|
1283
|
+
|
|
1284
|
+
export declare const ListFirewallPoliciesRequestFilterSensitiveLog: (obj: ListFirewallPoliciesRequest) => any;
|
|
1285
|
+
|
|
1286
|
+
export declare const ListFirewallPoliciesResponseFilterSensitiveLog: (obj: ListFirewallPoliciesResponse) => any;
|
|
1287
|
+
|
|
1288
|
+
export declare const ListFirewallsRequestFilterSensitiveLog: (obj: ListFirewallsRequest) => any;
|
|
1289
|
+
|
|
1290
|
+
export declare const ListFirewallsResponseFilterSensitiveLog: (obj: ListFirewallsResponse) => any;
|
|
1291
|
+
|
|
1292
|
+
export declare const ListRuleGroupsRequestFilterSensitiveLog: (obj: ListRuleGroupsRequest) => any;
|
|
1293
|
+
|
|
1294
|
+
export declare const RuleGroupMetadataFilterSensitiveLog: (obj: RuleGroupMetadata) => any;
|
|
1295
|
+
|
|
1296
|
+
export declare const ListRuleGroupsResponseFilterSensitiveLog: (obj: ListRuleGroupsResponse) => any;
|
|
1297
|
+
|
|
1298
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1299
|
+
|
|
1300
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1301
|
+
|
|
1302
|
+
export declare const PutResourcePolicyRequestFilterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1303
|
+
|
|
1304
|
+
export declare const PutResourcePolicyResponseFilterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1305
|
+
|
|
1306
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1307
|
+
|
|
1308
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1309
|
+
|
|
1310
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1311
|
+
|
|
1312
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1313
|
+
|
|
1314
|
+
export declare const UpdateFirewallDeleteProtectionRequestFilterSensitiveLog: (obj: UpdateFirewallDeleteProtectionRequest) => any;
|
|
1315
|
+
|
|
1316
|
+
export declare const UpdateFirewallDeleteProtectionResponseFilterSensitiveLog: (obj: UpdateFirewallDeleteProtectionResponse) => any;
|
|
1317
|
+
|
|
1318
|
+
export declare const UpdateFirewallDescriptionRequestFilterSensitiveLog: (obj: UpdateFirewallDescriptionRequest) => any;
|
|
1319
|
+
|
|
1320
|
+
export declare const UpdateFirewallDescriptionResponseFilterSensitiveLog: (obj: UpdateFirewallDescriptionResponse) => any;
|
|
1321
|
+
|
|
1322
|
+
export declare const UpdateFirewallEncryptionConfigurationRequestFilterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationRequest) => any;
|
|
1323
|
+
|
|
1324
|
+
export declare const UpdateFirewallEncryptionConfigurationResponseFilterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationResponse) => any;
|
|
1325
|
+
|
|
1326
|
+
export declare const UpdateFirewallPolicyRequestFilterSensitiveLog: (obj: UpdateFirewallPolicyRequest) => any;
|
|
1327
|
+
|
|
1328
|
+
export declare const UpdateFirewallPolicyResponseFilterSensitiveLog: (obj: UpdateFirewallPolicyResponse) => any;
|
|
1329
|
+
|
|
1330
|
+
export declare const UpdateFirewallPolicyChangeProtectionRequestFilterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionRequest) => any;
|
|
1331
|
+
|
|
1332
|
+
export declare const UpdateFirewallPolicyChangeProtectionResponseFilterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionResponse) => any;
|
|
1333
|
+
|
|
1334
|
+
export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (obj: UpdateLoggingConfigurationRequest) => any;
|
|
1335
|
+
|
|
1336
|
+
export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (obj: UpdateLoggingConfigurationResponse) => any;
|
|
1337
|
+
|
|
1338
|
+
export declare const UpdateRuleGroupRequestFilterSensitiveLog: (obj: UpdateRuleGroupRequest) => any;
|
|
1339
|
+
|
|
1340
|
+
export declare const UpdateRuleGroupResponseFilterSensitiveLog: (obj: UpdateRuleGroupResponse) => any;
|
|
1341
|
+
|
|
1342
|
+
export declare const UpdateSubnetChangeProtectionRequestFilterSensitiveLog: (obj: UpdateSubnetChangeProtectionRequest) => any;
|
|
1343
|
+
|
|
1344
|
+
export declare const UpdateSubnetChangeProtectionResponseFilterSensitiveLog: (obj: UpdateSubnetChangeProtectionResponse) => any;
|