@aws-sdk/client-network-firewall 3.168.0 → 3.170.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/NetworkFirewall.d.ts +574 -160
  3. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +316 -104
  4. package/dist-types/ts3.4/commands/AssociateFirewallPolicyCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/AssociateSubnetsCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateFirewallCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateFirewallPolicyCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateRuleGroupCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteFirewallCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeleteFirewallPolicyCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/DescribeFirewallCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DescribeFirewallPolicyCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeResourcePolicyCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DescribeRuleGroupCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/DescribeRuleGroupMetadataCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/DisassociateSubnetsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListFirewallPoliciesCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListFirewallsCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListRuleGroupsCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateFirewallDeleteProtectionCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdateFirewallDescriptionCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateFirewallEncryptionConfigurationCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/UpdateFirewallPolicyChangeProtectionCommand.d.ts +41 -17
  31. package/dist-types/ts3.4/commands/UpdateFirewallPolicyCommand.d.ts +41 -17
  32. package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +41 -17
  33. package/dist-types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/UpdateSubnetChangeProtectionCommand.d.ts +41 -17
  35. package/dist-types/ts3.4/commands/index.d.ts +31 -31
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  37. package/dist-types/ts3.4/index.d.ts +6 -6
  38. package/dist-types/ts3.4/models/NetworkFirewallServiceException.d.ts +8 -6
  39. package/dist-types/ts3.4/models/index.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +1446 -1344
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListFirewallPoliciesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListFirewallsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListRuleGroupsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  47. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -95
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  52. package/package.json +34 -34
@@ -1,1344 +1,1446 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
3
-
4
- export interface Dimension {
5
-
6
- Value: string | undefined;
7
- }
8
-
9
- export interface PublishMetricAction {
10
-
11
- Dimensions: Dimension[] | undefined;
12
- }
13
-
14
- export interface ActionDefinition {
15
-
16
- PublishMetricAction?: PublishMetricAction;
17
- }
18
-
19
- export interface Address {
20
-
21
- AddressDefinition: string | undefined;
22
- }
23
- export interface AssociateFirewallPolicyRequest {
24
-
25
- UpdateToken?: string;
26
-
27
- FirewallArn?: string;
28
-
29
- FirewallName?: string;
30
-
31
- FirewallPolicyArn: string | undefined;
32
- }
33
- export interface AssociateFirewallPolicyResponse {
34
-
35
- FirewallArn?: string;
36
-
37
- FirewallName?: string;
38
-
39
- FirewallPolicyArn?: string;
40
-
41
- UpdateToken?: string;
42
- }
43
-
44
- export declare class InternalServerError extends __BaseException {
45
- readonly name: "InternalServerError";
46
- readonly $fault: "server";
47
- Message?: string;
48
-
49
- constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
50
- }
51
-
52
- export declare class InvalidOperationException extends __BaseException {
53
- readonly name: "InvalidOperationException";
54
- readonly $fault: "client";
55
- Message?: string;
56
-
57
- constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
58
- }
59
-
60
- export declare class InvalidRequestException extends __BaseException {
61
- readonly name: "InvalidRequestException";
62
- readonly $fault: "client";
63
- Message?: string;
64
-
65
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
66
- }
67
-
68
- export declare class InvalidTokenException extends __BaseException {
69
- readonly name: "InvalidTokenException";
70
- readonly $fault: "client";
71
- Message?: string;
72
-
73
- constructor(opts: __ExceptionOptionType<InvalidTokenException, __BaseException>);
74
- }
75
-
76
- export declare class ResourceNotFoundException extends __BaseException {
77
- readonly name: "ResourceNotFoundException";
78
- readonly $fault: "client";
79
- Message?: string;
80
-
81
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
82
- }
83
-
84
- export declare class ThrottlingException extends __BaseException {
85
- readonly name: "ThrottlingException";
86
- readonly $fault: "client";
87
- Message?: string;
88
-
89
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
90
- }
91
-
92
- export interface SubnetMapping {
93
-
94
- SubnetId: string | undefined;
95
- }
96
- export interface AssociateSubnetsRequest {
97
-
98
- UpdateToken?: string;
99
-
100
- FirewallArn?: string;
101
-
102
- FirewallName?: string;
103
-
104
- SubnetMappings: SubnetMapping[] | undefined;
105
- }
106
- export interface AssociateSubnetsResponse {
107
-
108
- FirewallArn?: string;
109
-
110
- FirewallName?: string;
111
-
112
- SubnetMappings?: SubnetMapping[];
113
-
114
- UpdateToken?: string;
115
- }
116
-
117
- export declare class InsufficientCapacityException extends __BaseException {
118
- readonly name: "InsufficientCapacityException";
119
- readonly $fault: "server";
120
- Message?: string;
121
-
122
- constructor(opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>);
123
- }
124
- export declare enum AttachmentStatus {
125
- CREATING = "CREATING",
126
- DELETING = "DELETING",
127
- READY = "READY",
128
- SCALING = "SCALING"
129
- }
130
-
131
- export interface Attachment {
132
-
133
- SubnetId?: string;
134
-
135
- EndpointId?: string;
136
-
137
- Status?: AttachmentStatus | string;
138
- }
139
-
140
- export interface IPSetMetadata {
141
-
142
- ResolvedCIDRCount?: number;
143
- }
144
-
145
- export interface CIDRSummary {
146
-
147
- AvailableCIDRCount?: number;
148
-
149
- UtilizedCIDRCount?: number;
150
-
151
- IPSetReferences?: Record<string, IPSetMetadata>;
152
- }
153
-
154
- export interface CapacityUsageSummary {
155
-
156
- CIDRs?: CIDRSummary;
157
- }
158
- export declare enum ConfigurationSyncState {
159
- CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
160
- IN_SYNC = "IN_SYNC",
161
- PENDING = "PENDING"
162
- }
163
- export declare enum EncryptionType {
164
- AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
165
- CUSTOMER_KMS = "CUSTOMER_KMS"
166
- }
167
-
168
- export interface EncryptionConfiguration {
169
-
170
- KeyId?: string;
171
-
172
- Type: EncryptionType | string | undefined;
173
- }
174
-
175
- export interface Tag {
176
-
177
- Key: string | undefined;
178
-
179
- Value: string | undefined;
180
- }
181
- export interface CreateFirewallRequest {
182
-
183
- FirewallName: string | undefined;
184
-
185
- FirewallPolicyArn: string | undefined;
186
-
187
- VpcId: string | undefined;
188
-
189
- SubnetMappings: SubnetMapping[] | undefined;
190
-
191
- DeleteProtection?: boolean;
192
-
193
- SubnetChangeProtection?: boolean;
194
-
195
- FirewallPolicyChangeProtection?: boolean;
196
-
197
- Description?: string;
198
-
199
- Tags?: Tag[];
200
-
201
- EncryptionConfiguration?: EncryptionConfiguration;
202
- }
203
-
204
- export interface Firewall {
205
-
206
- FirewallName?: string;
207
-
208
- FirewallArn?: string;
209
-
210
- FirewallPolicyArn: string | undefined;
211
-
212
- VpcId: string | undefined;
213
-
214
- SubnetMappings: SubnetMapping[] | undefined;
215
-
216
- DeleteProtection?: boolean;
217
-
218
- SubnetChangeProtection?: boolean;
219
-
220
- FirewallPolicyChangeProtection?: boolean;
221
-
222
- Description?: string;
223
-
224
- FirewallId: string | undefined;
225
-
226
- Tags?: Tag[];
227
-
228
- EncryptionConfiguration?: EncryptionConfiguration;
229
- }
230
- export declare enum FirewallStatusValue {
231
- DELETING = "DELETING",
232
- PROVISIONING = "PROVISIONING",
233
- READY = "READY"
234
- }
235
- export declare enum PerObjectSyncStatus {
236
- CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
237
- IN_SYNC = "IN_SYNC",
238
- PENDING = "PENDING"
239
- }
240
-
241
- export interface PerObjectStatus {
242
-
243
- SyncStatus?: PerObjectSyncStatus | string;
244
-
245
- UpdateToken?: string;
246
- }
247
-
248
- export interface SyncState {
249
-
250
- Attachment?: Attachment;
251
-
252
- Config?: Record<string, PerObjectStatus>;
253
- }
254
-
255
- export interface FirewallStatus {
256
-
257
- Status: FirewallStatusValue | string | undefined;
258
-
259
- ConfigurationSyncStateSummary: ConfigurationSyncState | string | undefined;
260
-
261
- SyncStates?: Record<string, SyncState>;
262
-
263
- CapacityUsageSummary?: CapacityUsageSummary;
264
- }
265
- export interface CreateFirewallResponse {
266
-
267
- Firewall?: Firewall;
268
-
269
- FirewallStatus?: FirewallStatus;
270
- }
271
-
272
- export declare class LimitExceededException extends __BaseException {
273
- readonly name: "LimitExceededException";
274
- readonly $fault: "client";
275
- Message?: string;
276
-
277
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
278
- }
279
- export declare enum RuleOrder {
280
- DEFAULT_ACTION_ORDER = "DEFAULT_ACTION_ORDER",
281
- STRICT_ORDER = "STRICT_ORDER"
282
- }
283
-
284
- export interface StatefulEngineOptions {
285
-
286
- RuleOrder?: RuleOrder | string;
287
- }
288
- export declare enum OverrideAction {
289
- DROP_TO_ALERT = "DROP_TO_ALERT"
290
- }
291
-
292
- export interface StatefulRuleGroupOverride {
293
-
294
- Action?: OverrideAction | string;
295
- }
296
-
297
- export interface StatefulRuleGroupReference {
298
-
299
- ResourceArn: string | undefined;
300
-
301
- Priority?: number;
302
-
303
- Override?: StatefulRuleGroupOverride;
304
- }
305
-
306
- export interface CustomAction {
307
-
308
- ActionName: string | undefined;
309
-
310
- ActionDefinition: ActionDefinition | undefined;
311
- }
312
-
313
- export interface StatelessRuleGroupReference {
314
-
315
- ResourceArn: string | undefined;
316
-
317
- Priority: number | undefined;
318
- }
319
-
320
- export interface FirewallPolicy {
321
-
322
- StatelessRuleGroupReferences?: StatelessRuleGroupReference[];
323
-
324
- StatelessDefaultActions: string[] | undefined;
325
-
326
- StatelessFragmentDefaultActions: string[] | undefined;
327
-
328
- StatelessCustomActions?: CustomAction[];
329
-
330
- StatefulRuleGroupReferences?: StatefulRuleGroupReference[];
331
-
332
- StatefulDefaultActions?: string[];
333
-
334
- StatefulEngineOptions?: StatefulEngineOptions;
335
- }
336
- export interface CreateFirewallPolicyRequest {
337
-
338
- FirewallPolicyName: string | undefined;
339
-
340
- FirewallPolicy: FirewallPolicy | undefined;
341
-
342
- Description?: string;
343
-
344
- Tags?: Tag[];
345
-
346
- DryRun?: boolean;
347
-
348
- EncryptionConfiguration?: EncryptionConfiguration;
349
- }
350
- export declare enum ResourceStatus {
351
- ACTIVE = "ACTIVE",
352
- DELETING = "DELETING"
353
- }
354
-
355
- export interface FirewallPolicyResponse {
356
-
357
- FirewallPolicyName: string | undefined;
358
-
359
- FirewallPolicyArn: string | undefined;
360
-
361
- FirewallPolicyId: string | undefined;
362
-
363
- Description?: string;
364
-
365
- FirewallPolicyStatus?: ResourceStatus | string;
366
-
367
- Tags?: Tag[];
368
-
369
- ConsumedStatelessRuleCapacity?: number;
370
-
371
- ConsumedStatefulRuleCapacity?: number;
372
-
373
- NumberOfAssociations?: number;
374
-
375
- EncryptionConfiguration?: EncryptionConfiguration;
376
-
377
- LastModifiedTime?: Date;
378
- }
379
- export interface CreateFirewallPolicyResponse {
380
-
381
- UpdateToken: string | undefined;
382
-
383
- FirewallPolicyResponse: FirewallPolicyResponse | undefined;
384
- }
385
-
386
- export interface IPSetReference {
387
-
388
- ReferenceArn?: string;
389
- }
390
-
391
- export interface ReferenceSets {
392
-
393
- IPSetReferences?: Record<string, IPSetReference>;
394
- }
395
- export declare enum GeneratedRulesType {
396
- ALLOWLIST = "ALLOWLIST",
397
- DENYLIST = "DENYLIST"
398
- }
399
- export declare enum TargetType {
400
- HTTP_HOST = "HTTP_HOST",
401
- TLS_SNI = "TLS_SNI"
402
- }
403
-
404
- export interface RulesSourceList {
405
-
406
- Targets: string[] | undefined;
407
-
408
- TargetTypes: (TargetType | string)[] | undefined;
409
-
410
- GeneratedRulesType: GeneratedRulesType | string | undefined;
411
- }
412
- export declare enum StatefulAction {
413
- ALERT = "ALERT",
414
- DROP = "DROP",
415
- PASS = "PASS"
416
- }
417
- export declare enum StatefulRuleDirection {
418
- ANY = "ANY",
419
- FORWARD = "FORWARD"
420
- }
421
- export declare enum StatefulRuleProtocol {
422
- ANY = "IP",
423
- DCERPC = "DCERPC",
424
- DHCP = "DHCP",
425
- DNS = "DNS",
426
- FTP = "FTP",
427
- HTTP = "HTTP",
428
- ICMP = "ICMP",
429
- IKEV2 = "IKEV2",
430
- IMAP = "IMAP",
431
- KRB5 = "KRB5",
432
- MSN = "MSN",
433
- NTP = "NTP",
434
- SMB = "SMB",
435
- SMTP = "SMTP",
436
- SSH = "SSH",
437
- TCP = "TCP",
438
- TFTP = "TFTP",
439
- TLS = "TLS",
440
- UDP = "UDP"
441
- }
442
-
443
- export interface Header {
444
-
445
- Protocol: StatefulRuleProtocol | string | undefined;
446
-
447
- Source: string | undefined;
448
-
449
- SourcePort: string | undefined;
450
-
451
- Direction: StatefulRuleDirection | string | undefined;
452
-
453
- Destination: string | undefined;
454
-
455
- DestinationPort: string | undefined;
456
- }
457
-
458
- export interface RuleOption {
459
-
460
- Keyword: string | undefined;
461
-
462
- Settings?: string[];
463
- }
464
-
465
- export interface StatefulRule {
466
-
467
- Action: StatefulAction | string | undefined;
468
-
469
- Header: Header | undefined;
470
-
471
- RuleOptions: RuleOption[] | undefined;
472
- }
473
-
474
- export interface PortRange {
475
-
476
- FromPort: number | undefined;
477
-
478
- ToPort: number | undefined;
479
- }
480
- export declare enum TCPFlag {
481
- ACK = "ACK",
482
- CWR = "CWR",
483
- ECE = "ECE",
484
- FIN = "FIN",
485
- PSH = "PSH",
486
- RST = "RST",
487
- SYN = "SYN",
488
- URG = "URG"
489
- }
490
-
491
- export interface TCPFlagField {
492
-
493
- Flags: (TCPFlag | string)[] | undefined;
494
-
495
- Masks?: (TCPFlag | string)[];
496
- }
497
-
498
- export interface MatchAttributes {
499
-
500
- Sources?: Address[];
501
-
502
- Destinations?: Address[];
503
-
504
- SourcePorts?: PortRange[];
505
-
506
- DestinationPorts?: PortRange[];
507
-
508
- Protocols?: number[];
509
-
510
- TCPFlags?: TCPFlagField[];
511
- }
512
-
513
- export interface RuleDefinition {
514
-
515
- MatchAttributes: MatchAttributes | undefined;
516
-
517
- Actions: string[] | undefined;
518
- }
519
-
520
- export interface StatelessRule {
521
-
522
- RuleDefinition: RuleDefinition | undefined;
523
-
524
- Priority: number | undefined;
525
- }
526
-
527
- export interface StatelessRulesAndCustomActions {
528
-
529
- StatelessRules: StatelessRule[] | undefined;
530
-
531
- CustomActions?: CustomAction[];
532
- }
533
-
534
- export interface RulesSource {
535
-
536
- RulesString?: string;
537
-
538
- RulesSourceList?: RulesSourceList;
539
-
540
- StatefulRules?: StatefulRule[];
541
-
542
- StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions;
543
- }
544
-
545
- export interface IPSet {
546
-
547
- Definition: string[] | undefined;
548
- }
549
-
550
- export interface PortSet {
551
-
552
- Definition?: string[];
553
- }
554
-
555
- export interface RuleVariables {
556
-
557
- IPSets?: Record<string, IPSet>;
558
-
559
- PortSets?: Record<string, PortSet>;
560
- }
561
-
562
- export interface StatefulRuleOptions {
563
-
564
- RuleOrder?: RuleOrder | string;
565
- }
566
-
567
- export interface RuleGroup {
568
-
569
- RuleVariables?: RuleVariables;
570
-
571
- ReferenceSets?: ReferenceSets;
572
-
573
- RulesSource: RulesSource | undefined;
574
-
575
- StatefulRuleOptions?: StatefulRuleOptions;
576
- }
577
-
578
- export interface SourceMetadata {
579
-
580
- SourceArn?: string;
581
-
582
- SourceUpdateToken?: string;
583
- }
584
- export declare enum RuleGroupType {
585
- STATEFUL = "STATEFUL",
586
- STATELESS = "STATELESS"
587
- }
588
- export interface CreateRuleGroupRequest {
589
-
590
- RuleGroupName: string | undefined;
591
-
592
- RuleGroup?: RuleGroup;
593
-
594
- Rules?: string;
595
-
596
- Type: RuleGroupType | string | undefined;
597
-
598
- Description?: string;
599
-
600
- Capacity: number | undefined;
601
-
602
- Tags?: Tag[];
603
-
604
- DryRun?: boolean;
605
-
606
- EncryptionConfiguration?: EncryptionConfiguration;
607
-
608
- SourceMetadata?: SourceMetadata;
609
- }
610
-
611
- export interface RuleGroupResponse {
612
-
613
- RuleGroupArn: string | undefined;
614
-
615
- RuleGroupName: string | undefined;
616
-
617
- RuleGroupId: string | undefined;
618
-
619
- Description?: string;
620
-
621
- Type?: RuleGroupType | string;
622
-
623
- Capacity?: number;
624
-
625
- RuleGroupStatus?: ResourceStatus | string;
626
-
627
- Tags?: Tag[];
628
-
629
- ConsumedCapacity?: number;
630
-
631
- NumberOfAssociations?: number;
632
-
633
- EncryptionConfiguration?: EncryptionConfiguration;
634
-
635
- SourceMetadata?: SourceMetadata;
636
-
637
- SnsTopic?: string;
638
-
639
- LastModifiedTime?: Date;
640
- }
641
- export interface CreateRuleGroupResponse {
642
-
643
- UpdateToken: string | undefined;
644
-
645
- RuleGroupResponse: RuleGroupResponse | undefined;
646
- }
647
- export interface DeleteFirewallRequest {
648
-
649
- FirewallName?: string;
650
-
651
- FirewallArn?: string;
652
- }
653
- export interface DeleteFirewallResponse {
654
-
655
- Firewall?: Firewall;
656
-
657
- FirewallStatus?: FirewallStatus;
658
- }
659
-
660
- export declare class UnsupportedOperationException extends __BaseException {
661
- readonly name: "UnsupportedOperationException";
662
- readonly $fault: "client";
663
- Message?: string;
664
-
665
- constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
666
- }
667
- export interface DeleteFirewallPolicyRequest {
668
-
669
- FirewallPolicyName?: string;
670
-
671
- FirewallPolicyArn?: string;
672
- }
673
- export interface DeleteFirewallPolicyResponse {
674
-
675
- FirewallPolicyResponse: FirewallPolicyResponse | undefined;
676
- }
677
- export interface DeleteResourcePolicyRequest {
678
-
679
- ResourceArn: string | undefined;
680
- }
681
- export interface DeleteResourcePolicyResponse {
682
- }
683
-
684
- export declare class InvalidResourcePolicyException extends __BaseException {
685
- readonly name: "InvalidResourcePolicyException";
686
- readonly $fault: "client";
687
- Message?: string;
688
-
689
- constructor(opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>);
690
- }
691
- export interface DeleteRuleGroupRequest {
692
-
693
- RuleGroupName?: string;
694
-
695
- RuleGroupArn?: string;
696
-
697
- Type?: RuleGroupType | string;
698
- }
699
- export interface DeleteRuleGroupResponse {
700
-
701
- RuleGroupResponse: RuleGroupResponse | undefined;
702
- }
703
- export interface DescribeFirewallRequest {
704
-
705
- FirewallName?: string;
706
-
707
- FirewallArn?: string;
708
- }
709
- export interface DescribeFirewallResponse {
710
-
711
- UpdateToken?: string;
712
-
713
- Firewall?: Firewall;
714
-
715
- FirewallStatus?: FirewallStatus;
716
- }
717
- export interface DescribeFirewallPolicyRequest {
718
-
719
- FirewallPolicyName?: string;
720
-
721
- FirewallPolicyArn?: string;
722
- }
723
- export interface DescribeFirewallPolicyResponse {
724
-
725
- UpdateToken: string | undefined;
726
-
727
- FirewallPolicyResponse: FirewallPolicyResponse | undefined;
728
-
729
- FirewallPolicy?: FirewallPolicy;
730
- }
731
- export interface DescribeLoggingConfigurationRequest {
732
-
733
- FirewallArn?: string;
734
-
735
- FirewallName?: string;
736
- }
737
- export declare enum LogDestinationType {
738
- CLOUDWATCH_LOGS = "CloudWatchLogs",
739
- KINESIS_DATA_FIREHOSE = "KinesisDataFirehose",
740
- S3 = "S3"
741
- }
742
- export declare enum LogType {
743
- ALERT = "ALERT",
744
- FLOW = "FLOW"
745
- }
746
-
747
- export interface LogDestinationConfig {
748
-
749
- LogType: LogType | string | undefined;
750
-
751
- LogDestinationType: LogDestinationType | string | undefined;
752
-
753
- LogDestination: Record<string, string> | undefined;
754
- }
755
-
756
- export interface LoggingConfiguration {
757
-
758
- LogDestinationConfigs: LogDestinationConfig[] | undefined;
759
- }
760
- export interface DescribeLoggingConfigurationResponse {
761
-
762
- FirewallArn?: string;
763
-
764
- LoggingConfiguration?: LoggingConfiguration;
765
- }
766
- export interface DescribeResourcePolicyRequest {
767
-
768
- ResourceArn: string | undefined;
769
- }
770
- export interface DescribeResourcePolicyResponse {
771
-
772
- Policy?: string;
773
- }
774
- export interface DescribeRuleGroupRequest {
775
-
776
- RuleGroupName?: string;
777
-
778
- RuleGroupArn?: string;
779
-
780
- Type?: RuleGroupType | string;
781
- }
782
- export interface DescribeRuleGroupResponse {
783
-
784
- UpdateToken: string | undefined;
785
-
786
- RuleGroup?: RuleGroup;
787
-
788
- RuleGroupResponse: RuleGroupResponse | undefined;
789
- }
790
- export interface DescribeRuleGroupMetadataRequest {
791
-
792
- RuleGroupName?: string;
793
-
794
- RuleGroupArn?: string;
795
-
796
- Type?: RuleGroupType | string;
797
- }
798
- export interface DescribeRuleGroupMetadataResponse {
799
-
800
- RuleGroupArn: string | undefined;
801
-
802
- RuleGroupName: string | undefined;
803
-
804
- Description?: string;
805
-
806
- Type?: RuleGroupType | string;
807
-
808
- Capacity?: number;
809
-
810
- StatefulRuleOptions?: StatefulRuleOptions;
811
-
812
- LastModifiedTime?: Date;
813
- }
814
- export interface DisassociateSubnetsRequest {
815
-
816
- UpdateToken?: string;
817
-
818
- FirewallArn?: string;
819
-
820
- FirewallName?: string;
821
-
822
- SubnetIds: string[] | undefined;
823
- }
824
- export interface DisassociateSubnetsResponse {
825
-
826
- FirewallArn?: string;
827
-
828
- FirewallName?: string;
829
-
830
- SubnetMappings?: SubnetMapping[];
831
-
832
- UpdateToken?: string;
833
- }
834
-
835
- export interface FirewallMetadata {
836
-
837
- FirewallName?: string;
838
-
839
- FirewallArn?: string;
840
- }
841
-
842
- export interface FirewallPolicyMetadata {
843
-
844
- Name?: string;
845
-
846
- Arn?: string;
847
- }
848
- export interface ListFirewallPoliciesRequest {
849
-
850
- NextToken?: string;
851
-
852
- MaxResults?: number;
853
- }
854
- export interface ListFirewallPoliciesResponse {
855
-
856
- NextToken?: string;
857
-
858
- FirewallPolicies?: FirewallPolicyMetadata[];
859
- }
860
- export interface ListFirewallsRequest {
861
-
862
- NextToken?: string;
863
-
864
- VpcIds?: string[];
865
-
866
- MaxResults?: number;
867
- }
868
- export interface ListFirewallsResponse {
869
-
870
- NextToken?: string;
871
-
872
- Firewalls?: FirewallMetadata[];
873
- }
874
- export declare enum ResourceManagedType {
875
- AWS_MANAGED_DOMAIN_LISTS = "AWS_MANAGED_DOMAIN_LISTS",
876
- AWS_MANAGED_THREAT_SIGNATURES = "AWS_MANAGED_THREAT_SIGNATURES"
877
- }
878
- export declare enum ResourceManagedStatus {
879
- ACCOUNT = "ACCOUNT",
880
- MANAGED = "MANAGED"
881
- }
882
- export interface ListRuleGroupsRequest {
883
-
884
- NextToken?: string;
885
-
886
- MaxResults?: number;
887
-
888
- Scope?: ResourceManagedStatus | string;
889
-
890
- ManagedType?: ResourceManagedType | string;
891
-
892
- Type?: RuleGroupType | string;
893
- }
894
-
895
- export interface RuleGroupMetadata {
896
-
897
- Name?: string;
898
-
899
- Arn?: string;
900
- }
901
- export interface ListRuleGroupsResponse {
902
-
903
- NextToken?: string;
904
-
905
- RuleGroups?: RuleGroupMetadata[];
906
- }
907
- export interface ListTagsForResourceRequest {
908
-
909
- NextToken?: string;
910
-
911
- MaxResults?: number;
912
-
913
- ResourceArn: string | undefined;
914
- }
915
- export interface ListTagsForResourceResponse {
916
-
917
- NextToken?: string;
918
-
919
- Tags?: Tag[];
920
- }
921
-
922
- export declare class LogDestinationPermissionException extends __BaseException {
923
- readonly name: "LogDestinationPermissionException";
924
- readonly $fault: "client";
925
- Message?: string;
926
-
927
- constructor(opts: __ExceptionOptionType<LogDestinationPermissionException, __BaseException>);
928
- }
929
- export interface PutResourcePolicyRequest {
930
-
931
- ResourceArn: string | undefined;
932
-
933
- Policy: string | undefined;
934
- }
935
- export interface PutResourcePolicyResponse {
936
- }
937
- export interface TagResourceRequest {
938
-
939
- ResourceArn: string | undefined;
940
-
941
- Tags: Tag[] | undefined;
942
- }
943
- export interface TagResourceResponse {
944
- }
945
- export interface UntagResourceRequest {
946
-
947
- ResourceArn: string | undefined;
948
-
949
- TagKeys: string[] | undefined;
950
- }
951
- export interface UntagResourceResponse {
952
- }
953
-
954
- export declare class ResourceOwnerCheckException extends __BaseException {
955
- readonly name: "ResourceOwnerCheckException";
956
- readonly $fault: "client";
957
- Message?: string;
958
-
959
- constructor(opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>);
960
- }
961
- export interface UpdateFirewallDeleteProtectionRequest {
962
-
963
- UpdateToken?: string;
964
-
965
- FirewallArn?: string;
966
-
967
- FirewallName?: string;
968
-
969
- DeleteProtection: boolean | undefined;
970
- }
971
- export interface UpdateFirewallDeleteProtectionResponse {
972
-
973
- FirewallArn?: string;
974
-
975
- FirewallName?: string;
976
-
977
- DeleteProtection?: boolean;
978
-
979
- UpdateToken?: string;
980
- }
981
- export interface UpdateFirewallDescriptionRequest {
982
-
983
- UpdateToken?: string;
984
-
985
- FirewallArn?: string;
986
-
987
- FirewallName?: string;
988
-
989
- Description?: string;
990
- }
991
- export interface UpdateFirewallDescriptionResponse {
992
-
993
- FirewallArn?: string;
994
-
995
- FirewallName?: string;
996
-
997
- Description?: string;
998
-
999
- UpdateToken?: string;
1000
- }
1001
- export interface UpdateFirewallEncryptionConfigurationRequest {
1002
-
1003
- UpdateToken?: string;
1004
-
1005
- FirewallArn?: string;
1006
-
1007
- FirewallName?: string;
1008
-
1009
- EncryptionConfiguration?: EncryptionConfiguration;
1010
- }
1011
- export interface UpdateFirewallEncryptionConfigurationResponse {
1012
-
1013
- FirewallArn?: string;
1014
-
1015
- FirewallName?: string;
1016
-
1017
- UpdateToken?: string;
1018
-
1019
- EncryptionConfiguration?: EncryptionConfiguration;
1020
- }
1021
- export interface UpdateFirewallPolicyRequest {
1022
-
1023
- UpdateToken: string | undefined;
1024
-
1025
- FirewallPolicyArn?: string;
1026
-
1027
- FirewallPolicyName?: string;
1028
-
1029
- FirewallPolicy: FirewallPolicy | undefined;
1030
-
1031
- Description?: string;
1032
-
1033
- DryRun?: boolean;
1034
-
1035
- EncryptionConfiguration?: EncryptionConfiguration;
1036
- }
1037
- export interface UpdateFirewallPolicyResponse {
1038
-
1039
- UpdateToken: string | undefined;
1040
-
1041
- FirewallPolicyResponse: FirewallPolicyResponse | undefined;
1042
- }
1043
- export interface UpdateFirewallPolicyChangeProtectionRequest {
1044
-
1045
- UpdateToken?: string;
1046
-
1047
- FirewallArn?: string;
1048
-
1049
- FirewallName?: string;
1050
-
1051
- FirewallPolicyChangeProtection: boolean | undefined;
1052
- }
1053
- export interface UpdateFirewallPolicyChangeProtectionResponse {
1054
-
1055
- UpdateToken?: string;
1056
-
1057
- FirewallArn?: string;
1058
-
1059
- FirewallName?: string;
1060
-
1061
- FirewallPolicyChangeProtection?: boolean;
1062
- }
1063
- export interface UpdateLoggingConfigurationRequest {
1064
-
1065
- FirewallArn?: string;
1066
-
1067
- FirewallName?: string;
1068
-
1069
- LoggingConfiguration?: LoggingConfiguration;
1070
- }
1071
- export interface UpdateLoggingConfigurationResponse {
1072
-
1073
- FirewallArn?: string;
1074
-
1075
- FirewallName?: string;
1076
-
1077
- LoggingConfiguration?: LoggingConfiguration;
1078
- }
1079
- export interface UpdateRuleGroupRequest {
1080
-
1081
- UpdateToken: string | undefined;
1082
-
1083
- RuleGroupArn?: string;
1084
-
1085
- RuleGroupName?: string;
1086
-
1087
- RuleGroup?: RuleGroup;
1088
-
1089
- Rules?: string;
1090
-
1091
- Type?: RuleGroupType | string;
1092
-
1093
- Description?: string;
1094
-
1095
- DryRun?: boolean;
1096
-
1097
- EncryptionConfiguration?: EncryptionConfiguration;
1098
-
1099
- SourceMetadata?: SourceMetadata;
1100
- }
1101
- export interface UpdateRuleGroupResponse {
1102
-
1103
- UpdateToken: string | undefined;
1104
-
1105
- RuleGroupResponse: RuleGroupResponse | undefined;
1106
- }
1107
- export interface UpdateSubnetChangeProtectionRequest {
1108
-
1109
- UpdateToken?: string;
1110
-
1111
- FirewallArn?: string;
1112
-
1113
- FirewallName?: string;
1114
-
1115
- SubnetChangeProtection: boolean | undefined;
1116
- }
1117
- export interface UpdateSubnetChangeProtectionResponse {
1118
-
1119
- UpdateToken?: string;
1120
-
1121
- FirewallArn?: string;
1122
-
1123
- FirewallName?: string;
1124
-
1125
- SubnetChangeProtection?: boolean;
1126
- }
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;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
3
+
4
+ export interface Dimension {
5
+ Value: string | undefined;
6
+ }
7
+
8
+ export interface PublishMetricAction {
9
+ Dimensions: Dimension[] | undefined;
10
+ }
11
+
12
+ export interface ActionDefinition {
13
+ PublishMetricAction?: PublishMetricAction;
14
+ }
15
+
16
+ export interface Address {
17
+ AddressDefinition: string | undefined;
18
+ }
19
+ export interface AssociateFirewallPolicyRequest {
20
+ UpdateToken?: string;
21
+
22
+ FirewallArn?: string;
23
+
24
+ FirewallName?: string;
25
+
26
+ FirewallPolicyArn: string | undefined;
27
+ }
28
+ export interface AssociateFirewallPolicyResponse {
29
+ FirewallArn?: string;
30
+
31
+ FirewallName?: string;
32
+
33
+ FirewallPolicyArn?: string;
34
+
35
+ UpdateToken?: string;
36
+ }
37
+
38
+ export declare class InternalServerError extends __BaseException {
39
+ readonly name: "InternalServerError";
40
+ readonly $fault: "server";
41
+ Message?: string;
42
+
43
+ constructor(
44
+ opts: __ExceptionOptionType<InternalServerError, __BaseException>
45
+ );
46
+ }
47
+
48
+ export declare class InvalidOperationException extends __BaseException {
49
+ readonly name: "InvalidOperationException";
50
+ readonly $fault: "client";
51
+ Message?: string;
52
+
53
+ constructor(
54
+ opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
55
+ );
56
+ }
57
+
58
+ export declare class InvalidRequestException extends __BaseException {
59
+ readonly name: "InvalidRequestException";
60
+ readonly $fault: "client";
61
+ Message?: string;
62
+
63
+ constructor(
64
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
65
+ );
66
+ }
67
+
68
+ export declare class InvalidTokenException extends __BaseException {
69
+ readonly name: "InvalidTokenException";
70
+ readonly $fault: "client";
71
+ Message?: string;
72
+
73
+ constructor(
74
+ opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
75
+ );
76
+ }
77
+
78
+ export declare class ResourceNotFoundException extends __BaseException {
79
+ readonly name: "ResourceNotFoundException";
80
+ readonly $fault: "client";
81
+ Message?: string;
82
+
83
+ constructor(
84
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
85
+ );
86
+ }
87
+
88
+ export declare class ThrottlingException extends __BaseException {
89
+ readonly name: "ThrottlingException";
90
+ readonly $fault: "client";
91
+ Message?: string;
92
+
93
+ constructor(
94
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
95
+ );
96
+ }
97
+
98
+ export interface SubnetMapping {
99
+ SubnetId: string | undefined;
100
+ }
101
+ export interface AssociateSubnetsRequest {
102
+ UpdateToken?: string;
103
+
104
+ FirewallArn?: string;
105
+
106
+ FirewallName?: string;
107
+
108
+ SubnetMappings: SubnetMapping[] | undefined;
109
+ }
110
+ export interface AssociateSubnetsResponse {
111
+ FirewallArn?: string;
112
+
113
+ FirewallName?: string;
114
+
115
+ SubnetMappings?: SubnetMapping[];
116
+
117
+ UpdateToken?: string;
118
+ }
119
+
120
+ export declare class InsufficientCapacityException extends __BaseException {
121
+ readonly name: "InsufficientCapacityException";
122
+ readonly $fault: "server";
123
+ Message?: string;
124
+
125
+ constructor(
126
+ opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
127
+ );
128
+ }
129
+ export declare enum AttachmentStatus {
130
+ CREATING = "CREATING",
131
+ DELETING = "DELETING",
132
+ READY = "READY",
133
+ SCALING = "SCALING",
134
+ }
135
+
136
+ export interface Attachment {
137
+ SubnetId?: string;
138
+
139
+ EndpointId?: string;
140
+
141
+ Status?: AttachmentStatus | string;
142
+ }
143
+
144
+ export interface IPSetMetadata {
145
+ ResolvedCIDRCount?: number;
146
+ }
147
+
148
+ export interface CIDRSummary {
149
+ AvailableCIDRCount?: number;
150
+
151
+ UtilizedCIDRCount?: number;
152
+
153
+ IPSetReferences?: Record<string, IPSetMetadata>;
154
+ }
155
+
156
+ export interface CapacityUsageSummary {
157
+ CIDRs?: CIDRSummary;
158
+ }
159
+ export declare enum ConfigurationSyncState {
160
+ CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
161
+ IN_SYNC = "IN_SYNC",
162
+ PENDING = "PENDING",
163
+ }
164
+ export declare enum EncryptionType {
165
+ AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
166
+ CUSTOMER_KMS = "CUSTOMER_KMS",
167
+ }
168
+
169
+ export interface EncryptionConfiguration {
170
+ KeyId?: string;
171
+
172
+ Type: EncryptionType | string | undefined;
173
+ }
174
+
175
+ export interface Tag {
176
+ Key: string | undefined;
177
+
178
+ Value: string | undefined;
179
+ }
180
+ export interface CreateFirewallRequest {
181
+ FirewallName: string | undefined;
182
+
183
+ FirewallPolicyArn: string | undefined;
184
+
185
+ VpcId: string | undefined;
186
+
187
+ SubnetMappings: SubnetMapping[] | undefined;
188
+
189
+ DeleteProtection?: boolean;
190
+
191
+ SubnetChangeProtection?: boolean;
192
+
193
+ FirewallPolicyChangeProtection?: boolean;
194
+
195
+ Description?: string;
196
+
197
+ Tags?: Tag[];
198
+
199
+ EncryptionConfiguration?: EncryptionConfiguration;
200
+ }
201
+
202
+ export interface Firewall {
203
+ FirewallName?: string;
204
+
205
+ FirewallArn?: string;
206
+
207
+ FirewallPolicyArn: string | undefined;
208
+
209
+ VpcId: string | undefined;
210
+
211
+ SubnetMappings: SubnetMapping[] | undefined;
212
+
213
+ DeleteProtection?: boolean;
214
+
215
+ SubnetChangeProtection?: boolean;
216
+
217
+ FirewallPolicyChangeProtection?: boolean;
218
+
219
+ Description?: string;
220
+
221
+ FirewallId: string | undefined;
222
+
223
+ Tags?: Tag[];
224
+
225
+ EncryptionConfiguration?: EncryptionConfiguration;
226
+ }
227
+ export declare enum FirewallStatusValue {
228
+ DELETING = "DELETING",
229
+ PROVISIONING = "PROVISIONING",
230
+ READY = "READY",
231
+ }
232
+ export declare enum PerObjectSyncStatus {
233
+ CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
234
+ IN_SYNC = "IN_SYNC",
235
+ PENDING = "PENDING",
236
+ }
237
+
238
+ export interface PerObjectStatus {
239
+ SyncStatus?: PerObjectSyncStatus | string;
240
+
241
+ UpdateToken?: string;
242
+ }
243
+
244
+ export interface SyncState {
245
+ Attachment?: Attachment;
246
+
247
+ Config?: Record<string, PerObjectStatus>;
248
+ }
249
+
250
+ export interface FirewallStatus {
251
+ Status: FirewallStatusValue | string | undefined;
252
+
253
+ ConfigurationSyncStateSummary: ConfigurationSyncState | string | undefined;
254
+
255
+ SyncStates?: Record<string, SyncState>;
256
+
257
+ CapacityUsageSummary?: CapacityUsageSummary;
258
+ }
259
+ export interface CreateFirewallResponse {
260
+ Firewall?: Firewall;
261
+
262
+ FirewallStatus?: FirewallStatus;
263
+ }
264
+
265
+ export declare class LimitExceededException extends __BaseException {
266
+ readonly name: "LimitExceededException";
267
+ readonly $fault: "client";
268
+ Message?: string;
269
+
270
+ constructor(
271
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
272
+ );
273
+ }
274
+ export declare enum RuleOrder {
275
+ DEFAULT_ACTION_ORDER = "DEFAULT_ACTION_ORDER",
276
+ STRICT_ORDER = "STRICT_ORDER",
277
+ }
278
+
279
+ export interface StatefulEngineOptions {
280
+ RuleOrder?: RuleOrder | string;
281
+ }
282
+ export declare enum OverrideAction {
283
+ DROP_TO_ALERT = "DROP_TO_ALERT",
284
+ }
285
+
286
+ export interface StatefulRuleGroupOverride {
287
+ Action?: OverrideAction | string;
288
+ }
289
+
290
+ export interface StatefulRuleGroupReference {
291
+ ResourceArn: string | undefined;
292
+
293
+ Priority?: number;
294
+
295
+ Override?: StatefulRuleGroupOverride;
296
+ }
297
+
298
+ export interface CustomAction {
299
+ ActionName: string | undefined;
300
+
301
+ ActionDefinition: ActionDefinition | undefined;
302
+ }
303
+
304
+ export interface StatelessRuleGroupReference {
305
+ ResourceArn: string | undefined;
306
+
307
+ Priority: number | undefined;
308
+ }
309
+
310
+ export interface FirewallPolicy {
311
+ StatelessRuleGroupReferences?: StatelessRuleGroupReference[];
312
+
313
+ StatelessDefaultActions: string[] | undefined;
314
+
315
+ StatelessFragmentDefaultActions: string[] | undefined;
316
+
317
+ StatelessCustomActions?: CustomAction[];
318
+
319
+ StatefulRuleGroupReferences?: StatefulRuleGroupReference[];
320
+
321
+ StatefulDefaultActions?: string[];
322
+
323
+ StatefulEngineOptions?: StatefulEngineOptions;
324
+ }
325
+ export interface CreateFirewallPolicyRequest {
326
+ FirewallPolicyName: string | undefined;
327
+
328
+ FirewallPolicy: FirewallPolicy | undefined;
329
+
330
+ Description?: string;
331
+
332
+ Tags?: Tag[];
333
+
334
+ DryRun?: boolean;
335
+
336
+ EncryptionConfiguration?: EncryptionConfiguration;
337
+ }
338
+ export declare enum ResourceStatus {
339
+ ACTIVE = "ACTIVE",
340
+ DELETING = "DELETING",
341
+ }
342
+
343
+ export interface FirewallPolicyResponse {
344
+ FirewallPolicyName: string | undefined;
345
+
346
+ FirewallPolicyArn: string | undefined;
347
+
348
+ FirewallPolicyId: string | undefined;
349
+
350
+ Description?: string;
351
+
352
+ FirewallPolicyStatus?: ResourceStatus | string;
353
+
354
+ Tags?: Tag[];
355
+
356
+ ConsumedStatelessRuleCapacity?: number;
357
+
358
+ ConsumedStatefulRuleCapacity?: number;
359
+
360
+ NumberOfAssociations?: number;
361
+
362
+ EncryptionConfiguration?: EncryptionConfiguration;
363
+
364
+ LastModifiedTime?: Date;
365
+ }
366
+ export interface CreateFirewallPolicyResponse {
367
+ UpdateToken: string | undefined;
368
+
369
+ FirewallPolicyResponse: FirewallPolicyResponse | undefined;
370
+ }
371
+
372
+ export interface IPSetReference {
373
+ ReferenceArn?: string;
374
+ }
375
+
376
+ export interface ReferenceSets {
377
+ IPSetReferences?: Record<string, IPSetReference>;
378
+ }
379
+ export declare enum GeneratedRulesType {
380
+ ALLOWLIST = "ALLOWLIST",
381
+ DENYLIST = "DENYLIST",
382
+ }
383
+ export declare enum TargetType {
384
+ HTTP_HOST = "HTTP_HOST",
385
+ TLS_SNI = "TLS_SNI",
386
+ }
387
+
388
+ export interface RulesSourceList {
389
+ Targets: string[] | undefined;
390
+
391
+ TargetTypes: (TargetType | string)[] | undefined;
392
+
393
+ GeneratedRulesType: GeneratedRulesType | string | undefined;
394
+ }
395
+ export declare enum StatefulAction {
396
+ ALERT = "ALERT",
397
+ DROP = "DROP",
398
+ PASS = "PASS",
399
+ }
400
+ export declare enum StatefulRuleDirection {
401
+ ANY = "ANY",
402
+ FORWARD = "FORWARD",
403
+ }
404
+ export declare enum StatefulRuleProtocol {
405
+ ANY = "IP",
406
+ DCERPC = "DCERPC",
407
+ DHCP = "DHCP",
408
+ DNS = "DNS",
409
+ FTP = "FTP",
410
+ HTTP = "HTTP",
411
+ ICMP = "ICMP",
412
+ IKEV2 = "IKEV2",
413
+ IMAP = "IMAP",
414
+ KRB5 = "KRB5",
415
+ MSN = "MSN",
416
+ NTP = "NTP",
417
+ SMB = "SMB",
418
+ SMTP = "SMTP",
419
+ SSH = "SSH",
420
+ TCP = "TCP",
421
+ TFTP = "TFTP",
422
+ TLS = "TLS",
423
+ UDP = "UDP",
424
+ }
425
+
426
+ export interface Header {
427
+ Protocol: StatefulRuleProtocol | string | undefined;
428
+
429
+ Source: string | undefined;
430
+
431
+ SourcePort: string | undefined;
432
+
433
+ Direction: StatefulRuleDirection | string | undefined;
434
+
435
+ Destination: string | undefined;
436
+
437
+ DestinationPort: string | undefined;
438
+ }
439
+
440
+ export interface RuleOption {
441
+ Keyword: string | undefined;
442
+
443
+ Settings?: string[];
444
+ }
445
+
446
+ export interface StatefulRule {
447
+ Action: StatefulAction | string | undefined;
448
+
449
+ Header: Header | undefined;
450
+
451
+ RuleOptions: RuleOption[] | undefined;
452
+ }
453
+
454
+ export interface PortRange {
455
+ FromPort: number | undefined;
456
+
457
+ ToPort: number | undefined;
458
+ }
459
+ export declare enum TCPFlag {
460
+ ACK = "ACK",
461
+ CWR = "CWR",
462
+ ECE = "ECE",
463
+ FIN = "FIN",
464
+ PSH = "PSH",
465
+ RST = "RST",
466
+ SYN = "SYN",
467
+ URG = "URG",
468
+ }
469
+
470
+ export interface TCPFlagField {
471
+ Flags: (TCPFlag | string)[] | undefined;
472
+
473
+ Masks?: (TCPFlag | string)[];
474
+ }
475
+
476
+ export interface MatchAttributes {
477
+ Sources?: Address[];
478
+
479
+ Destinations?: Address[];
480
+
481
+ SourcePorts?: PortRange[];
482
+
483
+ DestinationPorts?: PortRange[];
484
+
485
+ Protocols?: number[];
486
+
487
+ TCPFlags?: TCPFlagField[];
488
+ }
489
+
490
+ export interface RuleDefinition {
491
+ MatchAttributes: MatchAttributes | undefined;
492
+
493
+ Actions: string[] | undefined;
494
+ }
495
+
496
+ export interface StatelessRule {
497
+ RuleDefinition: RuleDefinition | undefined;
498
+
499
+ Priority: number | undefined;
500
+ }
501
+
502
+ export interface StatelessRulesAndCustomActions {
503
+ StatelessRules: StatelessRule[] | undefined;
504
+
505
+ CustomActions?: CustomAction[];
506
+ }
507
+
508
+ export interface RulesSource {
509
+ RulesString?: string;
510
+
511
+ RulesSourceList?: RulesSourceList;
512
+
513
+ StatefulRules?: StatefulRule[];
514
+
515
+ StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions;
516
+ }
517
+
518
+ export interface IPSet {
519
+ Definition: string[] | undefined;
520
+ }
521
+
522
+ export interface PortSet {
523
+ Definition?: string[];
524
+ }
525
+
526
+ export interface RuleVariables {
527
+ IPSets?: Record<string, IPSet>;
528
+
529
+ PortSets?: Record<string, PortSet>;
530
+ }
531
+
532
+ export interface StatefulRuleOptions {
533
+ RuleOrder?: RuleOrder | string;
534
+ }
535
+
536
+ export interface RuleGroup {
537
+ RuleVariables?: RuleVariables;
538
+
539
+ ReferenceSets?: ReferenceSets;
540
+
541
+ RulesSource: RulesSource | undefined;
542
+
543
+ StatefulRuleOptions?: StatefulRuleOptions;
544
+ }
545
+
546
+ export interface SourceMetadata {
547
+ SourceArn?: string;
548
+
549
+ SourceUpdateToken?: string;
550
+ }
551
+ export declare enum RuleGroupType {
552
+ STATEFUL = "STATEFUL",
553
+ STATELESS = "STATELESS",
554
+ }
555
+ export interface CreateRuleGroupRequest {
556
+ RuleGroupName: string | undefined;
557
+
558
+ RuleGroup?: RuleGroup;
559
+
560
+ Rules?: string;
561
+
562
+ Type: RuleGroupType | string | undefined;
563
+
564
+ Description?: string;
565
+
566
+ Capacity: number | undefined;
567
+
568
+ Tags?: Tag[];
569
+
570
+ DryRun?: boolean;
571
+
572
+ EncryptionConfiguration?: EncryptionConfiguration;
573
+
574
+ SourceMetadata?: SourceMetadata;
575
+ }
576
+
577
+ export interface RuleGroupResponse {
578
+ RuleGroupArn: string | undefined;
579
+
580
+ RuleGroupName: string | undefined;
581
+
582
+ RuleGroupId: string | undefined;
583
+
584
+ Description?: string;
585
+
586
+ Type?: RuleGroupType | string;
587
+
588
+ Capacity?: number;
589
+
590
+ RuleGroupStatus?: ResourceStatus | string;
591
+
592
+ Tags?: Tag[];
593
+
594
+ ConsumedCapacity?: number;
595
+
596
+ NumberOfAssociations?: number;
597
+
598
+ EncryptionConfiguration?: EncryptionConfiguration;
599
+
600
+ SourceMetadata?: SourceMetadata;
601
+
602
+ SnsTopic?: string;
603
+
604
+ LastModifiedTime?: Date;
605
+ }
606
+ export interface CreateRuleGroupResponse {
607
+ UpdateToken: string | undefined;
608
+
609
+ RuleGroupResponse: RuleGroupResponse | undefined;
610
+ }
611
+ export interface DeleteFirewallRequest {
612
+ FirewallName?: string;
613
+
614
+ FirewallArn?: string;
615
+ }
616
+ export interface DeleteFirewallResponse {
617
+ Firewall?: Firewall;
618
+
619
+ FirewallStatus?: FirewallStatus;
620
+ }
621
+
622
+ export declare class UnsupportedOperationException extends __BaseException {
623
+ readonly name: "UnsupportedOperationException";
624
+ readonly $fault: "client";
625
+ Message?: string;
626
+
627
+ constructor(
628
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
629
+ );
630
+ }
631
+ export interface DeleteFirewallPolicyRequest {
632
+ FirewallPolicyName?: string;
633
+
634
+ FirewallPolicyArn?: string;
635
+ }
636
+ export interface DeleteFirewallPolicyResponse {
637
+ FirewallPolicyResponse: FirewallPolicyResponse | undefined;
638
+ }
639
+ export interface DeleteResourcePolicyRequest {
640
+ ResourceArn: string | undefined;
641
+ }
642
+ export interface DeleteResourcePolicyResponse {}
643
+
644
+ export declare class InvalidResourcePolicyException extends __BaseException {
645
+ readonly name: "InvalidResourcePolicyException";
646
+ readonly $fault: "client";
647
+ Message?: string;
648
+
649
+ constructor(
650
+ opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>
651
+ );
652
+ }
653
+ export interface DeleteRuleGroupRequest {
654
+ RuleGroupName?: string;
655
+
656
+ RuleGroupArn?: string;
657
+
658
+ Type?: RuleGroupType | string;
659
+ }
660
+ export interface DeleteRuleGroupResponse {
661
+ RuleGroupResponse: RuleGroupResponse | undefined;
662
+ }
663
+ export interface DescribeFirewallRequest {
664
+ FirewallName?: string;
665
+
666
+ FirewallArn?: string;
667
+ }
668
+ export interface DescribeFirewallResponse {
669
+ UpdateToken?: string;
670
+
671
+ Firewall?: Firewall;
672
+
673
+ FirewallStatus?: FirewallStatus;
674
+ }
675
+ export interface DescribeFirewallPolicyRequest {
676
+ FirewallPolicyName?: string;
677
+
678
+ FirewallPolicyArn?: string;
679
+ }
680
+ export interface DescribeFirewallPolicyResponse {
681
+ UpdateToken: string | undefined;
682
+
683
+ FirewallPolicyResponse: FirewallPolicyResponse | undefined;
684
+
685
+ FirewallPolicy?: FirewallPolicy;
686
+ }
687
+ export interface DescribeLoggingConfigurationRequest {
688
+ FirewallArn?: string;
689
+
690
+ FirewallName?: string;
691
+ }
692
+ export declare enum LogDestinationType {
693
+ CLOUDWATCH_LOGS = "CloudWatchLogs",
694
+ KINESIS_DATA_FIREHOSE = "KinesisDataFirehose",
695
+ S3 = "S3",
696
+ }
697
+ export declare enum LogType {
698
+ ALERT = "ALERT",
699
+ FLOW = "FLOW",
700
+ }
701
+
702
+ export interface LogDestinationConfig {
703
+ LogType: LogType | string | undefined;
704
+
705
+ LogDestinationType: LogDestinationType | string | undefined;
706
+
707
+ LogDestination: Record<string, string> | undefined;
708
+ }
709
+
710
+ export interface LoggingConfiguration {
711
+ LogDestinationConfigs: LogDestinationConfig[] | undefined;
712
+ }
713
+ export interface DescribeLoggingConfigurationResponse {
714
+ FirewallArn?: string;
715
+
716
+ LoggingConfiguration?: LoggingConfiguration;
717
+ }
718
+ export interface DescribeResourcePolicyRequest {
719
+ ResourceArn: string | undefined;
720
+ }
721
+ export interface DescribeResourcePolicyResponse {
722
+ Policy?: string;
723
+ }
724
+ export interface DescribeRuleGroupRequest {
725
+ RuleGroupName?: string;
726
+
727
+ RuleGroupArn?: string;
728
+
729
+ Type?: RuleGroupType | string;
730
+ }
731
+ export interface DescribeRuleGroupResponse {
732
+ UpdateToken: string | undefined;
733
+
734
+ RuleGroup?: RuleGroup;
735
+
736
+ RuleGroupResponse: RuleGroupResponse | undefined;
737
+ }
738
+ export interface DescribeRuleGroupMetadataRequest {
739
+ RuleGroupName?: string;
740
+
741
+ RuleGroupArn?: string;
742
+
743
+ Type?: RuleGroupType | string;
744
+ }
745
+ export interface DescribeRuleGroupMetadataResponse {
746
+ RuleGroupArn: string | undefined;
747
+
748
+ RuleGroupName: string | undefined;
749
+
750
+ Description?: string;
751
+
752
+ Type?: RuleGroupType | string;
753
+
754
+ Capacity?: number;
755
+
756
+ StatefulRuleOptions?: StatefulRuleOptions;
757
+
758
+ LastModifiedTime?: Date;
759
+ }
760
+ export interface DisassociateSubnetsRequest {
761
+ UpdateToken?: string;
762
+
763
+ FirewallArn?: string;
764
+
765
+ FirewallName?: string;
766
+
767
+ SubnetIds: string[] | undefined;
768
+ }
769
+ export interface DisassociateSubnetsResponse {
770
+ FirewallArn?: string;
771
+
772
+ FirewallName?: string;
773
+
774
+ SubnetMappings?: SubnetMapping[];
775
+
776
+ UpdateToken?: string;
777
+ }
778
+
779
+ export interface FirewallMetadata {
780
+ FirewallName?: string;
781
+
782
+ FirewallArn?: string;
783
+ }
784
+
785
+ export interface FirewallPolicyMetadata {
786
+ Name?: string;
787
+
788
+ Arn?: string;
789
+ }
790
+ export interface ListFirewallPoliciesRequest {
791
+ NextToken?: string;
792
+
793
+ MaxResults?: number;
794
+ }
795
+ export interface ListFirewallPoliciesResponse {
796
+ NextToken?: string;
797
+
798
+ FirewallPolicies?: FirewallPolicyMetadata[];
799
+ }
800
+ export interface ListFirewallsRequest {
801
+ NextToken?: string;
802
+
803
+ VpcIds?: string[];
804
+
805
+ MaxResults?: number;
806
+ }
807
+ export interface ListFirewallsResponse {
808
+ NextToken?: string;
809
+
810
+ Firewalls?: FirewallMetadata[];
811
+ }
812
+ export declare enum ResourceManagedType {
813
+ AWS_MANAGED_DOMAIN_LISTS = "AWS_MANAGED_DOMAIN_LISTS",
814
+ AWS_MANAGED_THREAT_SIGNATURES = "AWS_MANAGED_THREAT_SIGNATURES",
815
+ }
816
+ export declare enum ResourceManagedStatus {
817
+ ACCOUNT = "ACCOUNT",
818
+ MANAGED = "MANAGED",
819
+ }
820
+ export interface ListRuleGroupsRequest {
821
+ NextToken?: string;
822
+
823
+ MaxResults?: number;
824
+
825
+ Scope?: ResourceManagedStatus | string;
826
+
827
+ ManagedType?: ResourceManagedType | string;
828
+
829
+ Type?: RuleGroupType | string;
830
+ }
831
+
832
+ export interface RuleGroupMetadata {
833
+ Name?: string;
834
+
835
+ Arn?: string;
836
+ }
837
+ export interface ListRuleGroupsResponse {
838
+ NextToken?: string;
839
+
840
+ RuleGroups?: RuleGroupMetadata[];
841
+ }
842
+ export interface ListTagsForResourceRequest {
843
+ NextToken?: string;
844
+
845
+ MaxResults?: number;
846
+
847
+ ResourceArn: string | undefined;
848
+ }
849
+ export interface ListTagsForResourceResponse {
850
+ NextToken?: string;
851
+
852
+ Tags?: Tag[];
853
+ }
854
+
855
+ export declare class LogDestinationPermissionException extends __BaseException {
856
+ readonly name: "LogDestinationPermissionException";
857
+ readonly $fault: "client";
858
+ Message?: string;
859
+
860
+ constructor(
861
+ opts: __ExceptionOptionType<
862
+ LogDestinationPermissionException,
863
+ __BaseException
864
+ >
865
+ );
866
+ }
867
+ export interface PutResourcePolicyRequest {
868
+ ResourceArn: string | undefined;
869
+
870
+ Policy: string | undefined;
871
+ }
872
+ export interface PutResourcePolicyResponse {}
873
+ export interface TagResourceRequest {
874
+ ResourceArn: string | undefined;
875
+
876
+ Tags: Tag[] | undefined;
877
+ }
878
+ export interface TagResourceResponse {}
879
+ export interface UntagResourceRequest {
880
+ ResourceArn: string | undefined;
881
+
882
+ TagKeys: string[] | undefined;
883
+ }
884
+ export interface UntagResourceResponse {}
885
+
886
+ export declare class ResourceOwnerCheckException extends __BaseException {
887
+ readonly name: "ResourceOwnerCheckException";
888
+ readonly $fault: "client";
889
+ Message?: string;
890
+
891
+ constructor(
892
+ opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>
893
+ );
894
+ }
895
+ export interface UpdateFirewallDeleteProtectionRequest {
896
+ UpdateToken?: string;
897
+
898
+ FirewallArn?: string;
899
+
900
+ FirewallName?: string;
901
+
902
+ DeleteProtection: boolean | undefined;
903
+ }
904
+ export interface UpdateFirewallDeleteProtectionResponse {
905
+ FirewallArn?: string;
906
+
907
+ FirewallName?: string;
908
+
909
+ DeleteProtection?: boolean;
910
+
911
+ UpdateToken?: string;
912
+ }
913
+ export interface UpdateFirewallDescriptionRequest {
914
+ UpdateToken?: string;
915
+
916
+ FirewallArn?: string;
917
+
918
+ FirewallName?: string;
919
+
920
+ Description?: string;
921
+ }
922
+ export interface UpdateFirewallDescriptionResponse {
923
+ FirewallArn?: string;
924
+
925
+ FirewallName?: string;
926
+
927
+ Description?: string;
928
+
929
+ UpdateToken?: string;
930
+ }
931
+ export interface UpdateFirewallEncryptionConfigurationRequest {
932
+ UpdateToken?: string;
933
+
934
+ FirewallArn?: string;
935
+
936
+ FirewallName?: string;
937
+
938
+ EncryptionConfiguration?: EncryptionConfiguration;
939
+ }
940
+ export interface UpdateFirewallEncryptionConfigurationResponse {
941
+ FirewallArn?: string;
942
+
943
+ FirewallName?: string;
944
+
945
+ UpdateToken?: string;
946
+
947
+ EncryptionConfiguration?: EncryptionConfiguration;
948
+ }
949
+ export interface UpdateFirewallPolicyRequest {
950
+ UpdateToken: string | undefined;
951
+
952
+ FirewallPolicyArn?: string;
953
+
954
+ FirewallPolicyName?: string;
955
+
956
+ FirewallPolicy: FirewallPolicy | undefined;
957
+
958
+ Description?: string;
959
+
960
+ DryRun?: boolean;
961
+
962
+ EncryptionConfiguration?: EncryptionConfiguration;
963
+ }
964
+ export interface UpdateFirewallPolicyResponse {
965
+ UpdateToken: string | undefined;
966
+
967
+ FirewallPolicyResponse: FirewallPolicyResponse | undefined;
968
+ }
969
+ export interface UpdateFirewallPolicyChangeProtectionRequest {
970
+ UpdateToken?: string;
971
+
972
+ FirewallArn?: string;
973
+
974
+ FirewallName?: string;
975
+
976
+ FirewallPolicyChangeProtection: boolean | undefined;
977
+ }
978
+ export interface UpdateFirewallPolicyChangeProtectionResponse {
979
+ UpdateToken?: string;
980
+
981
+ FirewallArn?: string;
982
+
983
+ FirewallName?: string;
984
+
985
+ FirewallPolicyChangeProtection?: boolean;
986
+ }
987
+ export interface UpdateLoggingConfigurationRequest {
988
+ FirewallArn?: string;
989
+
990
+ FirewallName?: string;
991
+
992
+ LoggingConfiguration?: LoggingConfiguration;
993
+ }
994
+ export interface UpdateLoggingConfigurationResponse {
995
+ FirewallArn?: string;
996
+
997
+ FirewallName?: string;
998
+
999
+ LoggingConfiguration?: LoggingConfiguration;
1000
+ }
1001
+ export interface UpdateRuleGroupRequest {
1002
+ UpdateToken: string | undefined;
1003
+
1004
+ RuleGroupArn?: string;
1005
+
1006
+ RuleGroupName?: string;
1007
+
1008
+ RuleGroup?: RuleGroup;
1009
+
1010
+ Rules?: string;
1011
+
1012
+ Type?: RuleGroupType | string;
1013
+
1014
+ Description?: string;
1015
+
1016
+ DryRun?: boolean;
1017
+
1018
+ EncryptionConfiguration?: EncryptionConfiguration;
1019
+
1020
+ SourceMetadata?: SourceMetadata;
1021
+ }
1022
+ export interface UpdateRuleGroupResponse {
1023
+ UpdateToken: string | undefined;
1024
+
1025
+ RuleGroupResponse: RuleGroupResponse | undefined;
1026
+ }
1027
+ export interface UpdateSubnetChangeProtectionRequest {
1028
+ UpdateToken?: string;
1029
+
1030
+ FirewallArn?: string;
1031
+
1032
+ FirewallName?: string;
1033
+
1034
+ SubnetChangeProtection: boolean | undefined;
1035
+ }
1036
+ export interface UpdateSubnetChangeProtectionResponse {
1037
+ UpdateToken?: string;
1038
+
1039
+ FirewallArn?: string;
1040
+
1041
+ FirewallName?: string;
1042
+
1043
+ SubnetChangeProtection?: boolean;
1044
+ }
1045
+
1046
+ export declare const DimensionFilterSensitiveLog: (obj: Dimension) => any;
1047
+
1048
+ export declare const PublishMetricActionFilterSensitiveLog: (
1049
+ obj: PublishMetricAction
1050
+ ) => any;
1051
+
1052
+ export declare const ActionDefinitionFilterSensitiveLog: (
1053
+ obj: ActionDefinition
1054
+ ) => any;
1055
+
1056
+ export declare const AddressFilterSensitiveLog: (obj: Address) => any;
1057
+
1058
+ export declare const AssociateFirewallPolicyRequestFilterSensitiveLog: (
1059
+ obj: AssociateFirewallPolicyRequest
1060
+ ) => any;
1061
+
1062
+ export declare const AssociateFirewallPolicyResponseFilterSensitiveLog: (
1063
+ obj: AssociateFirewallPolicyResponse
1064
+ ) => any;
1065
+
1066
+ export declare const SubnetMappingFilterSensitiveLog: (
1067
+ obj: SubnetMapping
1068
+ ) => any;
1069
+
1070
+ export declare const AssociateSubnetsRequestFilterSensitiveLog: (
1071
+ obj: AssociateSubnetsRequest
1072
+ ) => any;
1073
+
1074
+ export declare const AssociateSubnetsResponseFilterSensitiveLog: (
1075
+ obj: AssociateSubnetsResponse
1076
+ ) => any;
1077
+
1078
+ export declare const AttachmentFilterSensitiveLog: (obj: Attachment) => any;
1079
+
1080
+ export declare const IPSetMetadataFilterSensitiveLog: (
1081
+ obj: IPSetMetadata
1082
+ ) => any;
1083
+
1084
+ export declare const CIDRSummaryFilterSensitiveLog: (obj: CIDRSummary) => any;
1085
+
1086
+ export declare const CapacityUsageSummaryFilterSensitiveLog: (
1087
+ obj: CapacityUsageSummary
1088
+ ) => any;
1089
+
1090
+ export declare const EncryptionConfigurationFilterSensitiveLog: (
1091
+ obj: EncryptionConfiguration
1092
+ ) => any;
1093
+
1094
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1095
+
1096
+ export declare const CreateFirewallRequestFilterSensitiveLog: (
1097
+ obj: CreateFirewallRequest
1098
+ ) => any;
1099
+
1100
+ export declare const FirewallFilterSensitiveLog: (obj: Firewall) => any;
1101
+
1102
+ export declare const PerObjectStatusFilterSensitiveLog: (
1103
+ obj: PerObjectStatus
1104
+ ) => any;
1105
+
1106
+ export declare const SyncStateFilterSensitiveLog: (obj: SyncState) => any;
1107
+
1108
+ export declare const FirewallStatusFilterSensitiveLog: (
1109
+ obj: FirewallStatus
1110
+ ) => any;
1111
+
1112
+ export declare const CreateFirewallResponseFilterSensitiveLog: (
1113
+ obj: CreateFirewallResponse
1114
+ ) => any;
1115
+
1116
+ export declare const StatefulEngineOptionsFilterSensitiveLog: (
1117
+ obj: StatefulEngineOptions
1118
+ ) => any;
1119
+
1120
+ export declare const StatefulRuleGroupOverrideFilterSensitiveLog: (
1121
+ obj: StatefulRuleGroupOverride
1122
+ ) => any;
1123
+
1124
+ export declare const StatefulRuleGroupReferenceFilterSensitiveLog: (
1125
+ obj: StatefulRuleGroupReference
1126
+ ) => any;
1127
+
1128
+ export declare const CustomActionFilterSensitiveLog: (obj: CustomAction) => any;
1129
+
1130
+ export declare const StatelessRuleGroupReferenceFilterSensitiveLog: (
1131
+ obj: StatelessRuleGroupReference
1132
+ ) => any;
1133
+
1134
+ export declare const FirewallPolicyFilterSensitiveLog: (
1135
+ obj: FirewallPolicy
1136
+ ) => any;
1137
+
1138
+ export declare const CreateFirewallPolicyRequestFilterSensitiveLog: (
1139
+ obj: CreateFirewallPolicyRequest
1140
+ ) => any;
1141
+
1142
+ export declare const FirewallPolicyResponseFilterSensitiveLog: (
1143
+ obj: FirewallPolicyResponse
1144
+ ) => any;
1145
+
1146
+ export declare const CreateFirewallPolicyResponseFilterSensitiveLog: (
1147
+ obj: CreateFirewallPolicyResponse
1148
+ ) => any;
1149
+
1150
+ export declare const IPSetReferenceFilterSensitiveLog: (
1151
+ obj: IPSetReference
1152
+ ) => any;
1153
+
1154
+ export declare const ReferenceSetsFilterSensitiveLog: (
1155
+ obj: ReferenceSets
1156
+ ) => any;
1157
+
1158
+ export declare const RulesSourceListFilterSensitiveLog: (
1159
+ obj: RulesSourceList
1160
+ ) => any;
1161
+
1162
+ export declare const HeaderFilterSensitiveLog: (obj: Header) => any;
1163
+
1164
+ export declare const RuleOptionFilterSensitiveLog: (obj: RuleOption) => any;
1165
+
1166
+ export declare const StatefulRuleFilterSensitiveLog: (obj: StatefulRule) => any;
1167
+
1168
+ export declare const PortRangeFilterSensitiveLog: (obj: PortRange) => any;
1169
+
1170
+ export declare const TCPFlagFieldFilterSensitiveLog: (obj: TCPFlagField) => any;
1171
+
1172
+ export declare const MatchAttributesFilterSensitiveLog: (
1173
+ obj: MatchAttributes
1174
+ ) => any;
1175
+
1176
+ export declare const RuleDefinitionFilterSensitiveLog: (
1177
+ obj: RuleDefinition
1178
+ ) => any;
1179
+
1180
+ export declare const StatelessRuleFilterSensitiveLog: (
1181
+ obj: StatelessRule
1182
+ ) => any;
1183
+
1184
+ export declare const StatelessRulesAndCustomActionsFilterSensitiveLog: (
1185
+ obj: StatelessRulesAndCustomActions
1186
+ ) => any;
1187
+
1188
+ export declare const RulesSourceFilterSensitiveLog: (obj: RulesSource) => any;
1189
+
1190
+ export declare const IPSetFilterSensitiveLog: (obj: IPSet) => any;
1191
+
1192
+ export declare const PortSetFilterSensitiveLog: (obj: PortSet) => any;
1193
+
1194
+ export declare const RuleVariablesFilterSensitiveLog: (
1195
+ obj: RuleVariables
1196
+ ) => any;
1197
+
1198
+ export declare const StatefulRuleOptionsFilterSensitiveLog: (
1199
+ obj: StatefulRuleOptions
1200
+ ) => any;
1201
+
1202
+ export declare const RuleGroupFilterSensitiveLog: (obj: RuleGroup) => any;
1203
+
1204
+ export declare const SourceMetadataFilterSensitiveLog: (
1205
+ obj: SourceMetadata
1206
+ ) => any;
1207
+
1208
+ export declare const CreateRuleGroupRequestFilterSensitiveLog: (
1209
+ obj: CreateRuleGroupRequest
1210
+ ) => any;
1211
+
1212
+ export declare const RuleGroupResponseFilterSensitiveLog: (
1213
+ obj: RuleGroupResponse
1214
+ ) => any;
1215
+
1216
+ export declare const CreateRuleGroupResponseFilterSensitiveLog: (
1217
+ obj: CreateRuleGroupResponse
1218
+ ) => any;
1219
+
1220
+ export declare const DeleteFirewallRequestFilterSensitiveLog: (
1221
+ obj: DeleteFirewallRequest
1222
+ ) => any;
1223
+
1224
+ export declare const DeleteFirewallResponseFilterSensitiveLog: (
1225
+ obj: DeleteFirewallResponse
1226
+ ) => any;
1227
+
1228
+ export declare const DeleteFirewallPolicyRequestFilterSensitiveLog: (
1229
+ obj: DeleteFirewallPolicyRequest
1230
+ ) => any;
1231
+
1232
+ export declare const DeleteFirewallPolicyResponseFilterSensitiveLog: (
1233
+ obj: DeleteFirewallPolicyResponse
1234
+ ) => any;
1235
+
1236
+ export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
1237
+ obj: DeleteResourcePolicyRequest
1238
+ ) => any;
1239
+
1240
+ export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
1241
+ obj: DeleteResourcePolicyResponse
1242
+ ) => any;
1243
+
1244
+ export declare const DeleteRuleGroupRequestFilterSensitiveLog: (
1245
+ obj: DeleteRuleGroupRequest
1246
+ ) => any;
1247
+
1248
+ export declare const DeleteRuleGroupResponseFilterSensitiveLog: (
1249
+ obj: DeleteRuleGroupResponse
1250
+ ) => any;
1251
+
1252
+ export declare const DescribeFirewallRequestFilterSensitiveLog: (
1253
+ obj: DescribeFirewallRequest
1254
+ ) => any;
1255
+
1256
+ export declare const DescribeFirewallResponseFilterSensitiveLog: (
1257
+ obj: DescribeFirewallResponse
1258
+ ) => any;
1259
+
1260
+ export declare const DescribeFirewallPolicyRequestFilterSensitiveLog: (
1261
+ obj: DescribeFirewallPolicyRequest
1262
+ ) => any;
1263
+
1264
+ export declare const DescribeFirewallPolicyResponseFilterSensitiveLog: (
1265
+ obj: DescribeFirewallPolicyResponse
1266
+ ) => any;
1267
+
1268
+ export declare const DescribeLoggingConfigurationRequestFilterSensitiveLog: (
1269
+ obj: DescribeLoggingConfigurationRequest
1270
+ ) => any;
1271
+
1272
+ export declare const LogDestinationConfigFilterSensitiveLog: (
1273
+ obj: LogDestinationConfig
1274
+ ) => any;
1275
+
1276
+ export declare const LoggingConfigurationFilterSensitiveLog: (
1277
+ obj: LoggingConfiguration
1278
+ ) => any;
1279
+
1280
+ export declare const DescribeLoggingConfigurationResponseFilterSensitiveLog: (
1281
+ obj: DescribeLoggingConfigurationResponse
1282
+ ) => any;
1283
+
1284
+ export declare const DescribeResourcePolicyRequestFilterSensitiveLog: (
1285
+ obj: DescribeResourcePolicyRequest
1286
+ ) => any;
1287
+
1288
+ export declare const DescribeResourcePolicyResponseFilterSensitiveLog: (
1289
+ obj: DescribeResourcePolicyResponse
1290
+ ) => any;
1291
+
1292
+ export declare const DescribeRuleGroupRequestFilterSensitiveLog: (
1293
+ obj: DescribeRuleGroupRequest
1294
+ ) => any;
1295
+
1296
+ export declare const DescribeRuleGroupResponseFilterSensitiveLog: (
1297
+ obj: DescribeRuleGroupResponse
1298
+ ) => any;
1299
+
1300
+ export declare const DescribeRuleGroupMetadataRequestFilterSensitiveLog: (
1301
+ obj: DescribeRuleGroupMetadataRequest
1302
+ ) => any;
1303
+
1304
+ export declare const DescribeRuleGroupMetadataResponseFilterSensitiveLog: (
1305
+ obj: DescribeRuleGroupMetadataResponse
1306
+ ) => any;
1307
+
1308
+ export declare const DisassociateSubnetsRequestFilterSensitiveLog: (
1309
+ obj: DisassociateSubnetsRequest
1310
+ ) => any;
1311
+
1312
+ export declare const DisassociateSubnetsResponseFilterSensitiveLog: (
1313
+ obj: DisassociateSubnetsResponse
1314
+ ) => any;
1315
+
1316
+ export declare const FirewallMetadataFilterSensitiveLog: (
1317
+ obj: FirewallMetadata
1318
+ ) => any;
1319
+
1320
+ export declare const FirewallPolicyMetadataFilterSensitiveLog: (
1321
+ obj: FirewallPolicyMetadata
1322
+ ) => any;
1323
+
1324
+ export declare const ListFirewallPoliciesRequestFilterSensitiveLog: (
1325
+ obj: ListFirewallPoliciesRequest
1326
+ ) => any;
1327
+
1328
+ export declare const ListFirewallPoliciesResponseFilterSensitiveLog: (
1329
+ obj: ListFirewallPoliciesResponse
1330
+ ) => any;
1331
+
1332
+ export declare const ListFirewallsRequestFilterSensitiveLog: (
1333
+ obj: ListFirewallsRequest
1334
+ ) => any;
1335
+
1336
+ export declare const ListFirewallsResponseFilterSensitiveLog: (
1337
+ obj: ListFirewallsResponse
1338
+ ) => any;
1339
+
1340
+ export declare const ListRuleGroupsRequestFilterSensitiveLog: (
1341
+ obj: ListRuleGroupsRequest
1342
+ ) => any;
1343
+
1344
+ export declare const RuleGroupMetadataFilterSensitiveLog: (
1345
+ obj: RuleGroupMetadata
1346
+ ) => any;
1347
+
1348
+ export declare const ListRuleGroupsResponseFilterSensitiveLog: (
1349
+ obj: ListRuleGroupsResponse
1350
+ ) => any;
1351
+
1352
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1353
+ obj: ListTagsForResourceRequest
1354
+ ) => any;
1355
+
1356
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1357
+ obj: ListTagsForResourceResponse
1358
+ ) => any;
1359
+
1360
+ export declare const PutResourcePolicyRequestFilterSensitiveLog: (
1361
+ obj: PutResourcePolicyRequest
1362
+ ) => any;
1363
+
1364
+ export declare const PutResourcePolicyResponseFilterSensitiveLog: (
1365
+ obj: PutResourcePolicyResponse
1366
+ ) => any;
1367
+
1368
+ export declare const TagResourceRequestFilterSensitiveLog: (
1369
+ obj: TagResourceRequest
1370
+ ) => any;
1371
+
1372
+ export declare const TagResourceResponseFilterSensitiveLog: (
1373
+ obj: TagResourceResponse
1374
+ ) => any;
1375
+
1376
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1377
+ obj: UntagResourceRequest
1378
+ ) => any;
1379
+
1380
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1381
+ obj: UntagResourceResponse
1382
+ ) => any;
1383
+
1384
+ export declare const UpdateFirewallDeleteProtectionRequestFilterSensitiveLog: (
1385
+ obj: UpdateFirewallDeleteProtectionRequest
1386
+ ) => any;
1387
+
1388
+ export declare const UpdateFirewallDeleteProtectionResponseFilterSensitiveLog: (
1389
+ obj: UpdateFirewallDeleteProtectionResponse
1390
+ ) => any;
1391
+
1392
+ export declare const UpdateFirewallDescriptionRequestFilterSensitiveLog: (
1393
+ obj: UpdateFirewallDescriptionRequest
1394
+ ) => any;
1395
+
1396
+ export declare const UpdateFirewallDescriptionResponseFilterSensitiveLog: (
1397
+ obj: UpdateFirewallDescriptionResponse
1398
+ ) => any;
1399
+
1400
+ export declare const UpdateFirewallEncryptionConfigurationRequestFilterSensitiveLog: (
1401
+ obj: UpdateFirewallEncryptionConfigurationRequest
1402
+ ) => any;
1403
+
1404
+ export declare const UpdateFirewallEncryptionConfigurationResponseFilterSensitiveLog: (
1405
+ obj: UpdateFirewallEncryptionConfigurationResponse
1406
+ ) => any;
1407
+
1408
+ export declare const UpdateFirewallPolicyRequestFilterSensitiveLog: (
1409
+ obj: UpdateFirewallPolicyRequest
1410
+ ) => any;
1411
+
1412
+ export declare const UpdateFirewallPolicyResponseFilterSensitiveLog: (
1413
+ obj: UpdateFirewallPolicyResponse
1414
+ ) => any;
1415
+
1416
+ export declare const UpdateFirewallPolicyChangeProtectionRequestFilterSensitiveLog: (
1417
+ obj: UpdateFirewallPolicyChangeProtectionRequest
1418
+ ) => any;
1419
+
1420
+ export declare const UpdateFirewallPolicyChangeProtectionResponseFilterSensitiveLog: (
1421
+ obj: UpdateFirewallPolicyChangeProtectionResponse
1422
+ ) => any;
1423
+
1424
+ export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (
1425
+ obj: UpdateLoggingConfigurationRequest
1426
+ ) => any;
1427
+
1428
+ export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (
1429
+ obj: UpdateLoggingConfigurationResponse
1430
+ ) => any;
1431
+
1432
+ export declare const UpdateRuleGroupRequestFilterSensitiveLog: (
1433
+ obj: UpdateRuleGroupRequest
1434
+ ) => any;
1435
+
1436
+ export declare const UpdateRuleGroupResponseFilterSensitiveLog: (
1437
+ obj: UpdateRuleGroupResponse
1438
+ ) => any;
1439
+
1440
+ export declare const UpdateSubnetChangeProtectionRequestFilterSensitiveLog: (
1441
+ obj: UpdateSubnetChangeProtectionRequest
1442
+ ) => any;
1443
+
1444
+ export declare const UpdateSubnetChangeProtectionResponseFilterSensitiveLog: (
1445
+ obj: UpdateSubnetChangeProtectionResponse
1446
+ ) => any;