@aws-sdk/client-network-firewall 3.295.0 → 3.297.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 (41) hide show
  1. package/dist-types/NetworkFirewall.d.ts +32 -0
  2. package/dist-types/NetworkFirewallClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateFirewallPolicyCommand.d.ts +16 -0
  4. package/dist-types/commands/AssociateSubnetsCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateFirewallCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateRuleGroupCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteFirewallCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteFirewallPolicyCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteRuleGroupCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeFirewallCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeFirewallPolicyCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeRuleGroupCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeRuleGroupMetadataCommand.d.ts +16 -0
  18. package/dist-types/commands/DisassociateSubnetsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListFirewallPoliciesCommand.d.ts +16 -0
  20. package/dist-types/commands/ListFirewallsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListRuleGroupsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateFirewallDeleteProtectionCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateFirewallDescriptionCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateFirewallEncryptionConfigurationCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateFirewallPolicyChangeProtectionCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateSubnetChangeProtectionCommand.d.ts +16 -0
  34. package/dist-types/models/NetworkFirewallServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +313 -5
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListFirewallPoliciesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListFirewallsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListRuleGroupsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  41. package/package.json +29 -29
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>The value to use in an Amazon CloudWatch custom metric dimension. This is used in the
5
6
  * <code>PublishMetrics</code>
6
7
  * <a>CustomAction</a>. A CloudWatch custom metric dimension is a name/value pair that's
@@ -17,6 +18,7 @@ export interface Dimension {
17
18
  Value: string | undefined;
18
19
  }
19
20
  /**
21
+ * @public
20
22
  * <p>Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the
21
23
  * matching packet. This setting defines a CloudWatch dimension value to be published.</p>
22
24
  */
@@ -27,6 +29,7 @@ export interface PublishMetricAction {
27
29
  Dimensions: Dimension[] | undefined;
28
30
  }
29
31
  /**
32
+ * @public
30
33
  * <p>A custom action to use in stateless rule actions settings. This is used in <a>CustomAction</a>.</p>
31
34
  */
32
35
  export interface ActionDefinition {
@@ -41,6 +44,7 @@ export interface ActionDefinition {
41
44
  PublishMetricAction?: PublishMetricAction;
42
45
  }
43
46
  /**
47
+ * @public
44
48
  * <p>A single IP address specification. This is used in the <a>MatchAttributes</a>
45
49
  * source and destination specifications.</p>
46
50
  */
@@ -67,6 +71,9 @@ export interface Address {
67
71
  */
68
72
  AddressDefinition: string | undefined;
69
73
  }
74
+ /**
75
+ * @public
76
+ */
70
77
  export interface AssociateFirewallPolicyRequest {
71
78
  /**
72
79
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -89,6 +96,9 @@ export interface AssociateFirewallPolicyRequest {
89
96
  */
90
97
  FirewallPolicyArn: string | undefined;
91
98
  }
99
+ /**
100
+ * @public
101
+ */
92
102
  export interface AssociateFirewallPolicyResponse {
93
103
  /**
94
104
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -110,6 +120,7 @@ export interface AssociateFirewallPolicyResponse {
110
120
  UpdateToken?: string;
111
121
  }
112
122
  /**
123
+ * @public
113
124
  * <p>Your request is valid, but Network Firewall couldn’t perform the operation because of a
114
125
  * system problem. Retry your request. </p>
115
126
  */
@@ -123,6 +134,7 @@ export declare class InternalServerError extends __BaseException {
123
134
  constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
124
135
  }
125
136
  /**
137
+ * @public
126
138
  * <p>The operation failed because it's not valid. For example, you might have tried to delete
127
139
  * a rule group or firewall policy that's in use.</p>
128
140
  */
@@ -136,6 +148,7 @@ export declare class InvalidOperationException extends __BaseException {
136
148
  constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
137
149
  }
138
150
  /**
151
+ * @public
139
152
  * <p>The operation failed because of a problem with your request. Examples include: </p>
140
153
  * <ul>
141
154
  * <li>
@@ -161,6 +174,7 @@ export declare class InvalidRequestException extends __BaseException {
161
174
  constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
162
175
  }
163
176
  /**
177
+ * @public
164
178
  * <p>The token you provided is stale or isn't valid for the operation. </p>
165
179
  */
166
180
  export declare class InvalidTokenException extends __BaseException {
@@ -173,6 +187,7 @@ export declare class InvalidTokenException extends __BaseException {
173
187
  constructor(opts: __ExceptionOptionType<InvalidTokenException, __BaseException>);
174
188
  }
175
189
  /**
190
+ * @public
176
191
  * <p>Unable to locate a resource using the parameters that you provided.</p>
177
192
  */
178
193
  export declare class ResourceNotFoundException extends __BaseException {
@@ -185,6 +200,7 @@ export declare class ResourceNotFoundException extends __BaseException {
185
200
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
186
201
  }
187
202
  /**
203
+ * @public
188
204
  * <p>Unable to process the request due to throttling limitations.</p>
189
205
  */
190
206
  export declare class ThrottlingException extends __BaseException {
@@ -196,11 +212,15 @@ export declare class ThrottlingException extends __BaseException {
196
212
  */
197
213
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
198
214
  }
215
+ /**
216
+ * @public
217
+ */
199
218
  export declare enum IPAddressType {
200
219
  DUALSTACK = "DUALSTACK",
201
220
  IPV4 = "IPV4"
202
221
  }
203
222
  /**
223
+ * @public
204
224
  * <p>The ID for a subnet that you want to associate with the firewall. This is used with
205
225
  * <a>CreateFirewall</a> and <a>AssociateSubnets</a>. Network Firewall
206
226
  * creates an instance of the associated firewall in each subnet that you specify, to filter
@@ -216,6 +236,9 @@ export interface SubnetMapping {
216
236
  */
217
237
  IPAddressType?: IPAddressType | string;
218
238
  }
239
+ /**
240
+ * @public
241
+ */
219
242
  export interface AssociateSubnetsRequest {
220
243
  /**
221
244
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -238,6 +261,9 @@ export interface AssociateSubnetsRequest {
238
261
  */
239
262
  SubnetMappings: SubnetMapping[] | undefined;
240
263
  }
264
+ /**
265
+ * @public
266
+ */
241
267
  export interface AssociateSubnetsResponse {
242
268
  /**
243
269
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -259,6 +285,7 @@ export interface AssociateSubnetsResponse {
259
285
  UpdateToken?: string;
260
286
  }
261
287
  /**
288
+ * @public
262
289
  * <p>Amazon Web Services doesn't currently have enough available capacity to fulfill your request. Try your
263
290
  * request later. </p>
264
291
  */
@@ -271,6 +298,9 @@ export declare class InsufficientCapacityException extends __BaseException {
271
298
  */
272
299
  constructor(opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>);
273
300
  }
301
+ /**
302
+ * @public
303
+ */
274
304
  export declare enum AttachmentStatus {
275
305
  CREATING = "CREATING",
276
306
  DELETING = "DELETING",
@@ -278,6 +308,7 @@ export declare enum AttachmentStatus {
278
308
  SCALING = "SCALING"
279
309
  }
280
310
  /**
311
+ * @public
281
312
  * <p>The configuration and status for a single subnet that you've specified for use by the
282
313
  * Network Firewall firewall. This is part of the <a>FirewallStatus</a>.</p>
283
314
  */
@@ -308,6 +339,7 @@ export interface Attachment {
308
339
  StatusMessage?: string;
309
340
  }
310
341
  /**
342
+ * @public
311
343
  * <p>General information about the IP set.</p>
312
344
  */
313
345
  export interface IPSetMetadata {
@@ -317,6 +349,7 @@ export interface IPSetMetadata {
317
349
  ResolvedCIDRCount?: number;
318
350
  }
319
351
  /**
352
+ * @public
320
353
  * <p>Summarizes the CIDR blocks used by the IP set references in a firewall. Network Firewall calculates the number of CIDRs by taking an aggregated count of all CIDRs used by the IP sets you are referencing.</p>
321
354
  */
322
355
  export interface CIDRSummary {
@@ -334,6 +367,7 @@ export interface CIDRSummary {
334
367
  IPSetReferences?: Record<string, IPSetMetadata>;
335
368
  }
336
369
  /**
370
+ * @public
337
371
  * <p>The capacity usage summary of the resources used by the <a>ReferenceSets</a> in a firewall.</p>
338
372
  */
339
373
  export interface CapacityUsageSummary {
@@ -342,16 +376,23 @@ export interface CapacityUsageSummary {
342
376
  */
343
377
  CIDRs?: CIDRSummary;
344
378
  }
379
+ /**
380
+ * @public
381
+ */
345
382
  export declare enum ConfigurationSyncState {
346
383
  CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
347
384
  IN_SYNC = "IN_SYNC",
348
385
  PENDING = "PENDING"
349
386
  }
387
+ /**
388
+ * @public
389
+ */
350
390
  export declare enum EncryptionType {
351
391
  AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
352
392
  CUSTOMER_KMS = "CUSTOMER_KMS"
353
393
  }
354
394
  /**
395
+ * @public
355
396
  * <p>A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/kms-encryption-at-rest.html">Encryption at rest with Amazon Web Services Key Managment Service</a> in the <i>Network Firewall Developer Guide</i>.</p>
356
397
  */
357
398
  export interface EncryptionConfiguration {
@@ -365,6 +406,7 @@ export interface EncryptionConfiguration {
365
406
  Type: EncryptionType | string | undefined;
366
407
  }
367
408
  /**
409
+ * @public
368
410
  * <p>A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you
369
411
  * define. Typically, the tag key represents a category (such as "environment") and the tag
370
412
  * value represents a specific value within that category (such as "test," "development," or
@@ -383,6 +425,9 @@ export interface Tag {
383
425
  */
384
426
  Value: string | undefined;
385
427
  }
428
+ /**
429
+ * @public
430
+ */
386
431
  export interface CreateFirewallRequest {
387
432
  /**
388
433
  * <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
@@ -436,6 +481,7 @@ export interface CreateFirewallRequest {
436
481
  EncryptionConfiguration?: EncryptionConfiguration;
437
482
  }
438
483
  /**
484
+ * @public
439
485
  * <p>The firewall defines the configuration settings for an Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource. </p>
440
486
  * <p>The status of the firewall, for example whether it's ready to filter network traffic,
441
487
  * is provided in the corresponding <a>FirewallStatus</a>. You can retrieve both
@@ -501,17 +547,24 @@ export interface Firewall {
501
547
  */
502
548
  EncryptionConfiguration?: EncryptionConfiguration;
503
549
  }
550
+ /**
551
+ * @public
552
+ */
504
553
  export declare enum FirewallStatusValue {
505
554
  DELETING = "DELETING",
506
555
  PROVISIONING = "PROVISIONING",
507
556
  READY = "READY"
508
557
  }
558
+ /**
559
+ * @public
560
+ */
509
561
  export declare enum PerObjectSyncStatus {
510
562
  CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
511
563
  IN_SYNC = "IN_SYNC",
512
564
  PENDING = "PENDING"
513
565
  }
514
566
  /**
567
+ * @public
515
568
  * <p>Provides configuration status for a single policy or rule group that is used for a firewall endpoint. Network Firewall
516
569
  * provides each endpoint with the rules that are configured in the firewall policy. Each time
517
570
  * you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the
@@ -528,6 +581,7 @@ export interface PerObjectStatus {
528
581
  UpdateToken?: string;
529
582
  }
530
583
  /**
584
+ * @public
531
585
  * <p>The status of the firewall endpoint and firewall policy configuration for a single VPC
532
586
  * subnet. </p>
533
587
  * <p>For each VPC subnet that you associate with a firewall, Network Firewall does the
@@ -561,6 +615,7 @@ export interface SyncState {
561
615
  Config?: Record<string, PerObjectStatus>;
562
616
  }
563
617
  /**
618
+ * @public
564
619
  * <p>Detailed information about the current status of a <a>Firewall</a>. You can retrieve this for a firewall by calling <a>DescribeFirewall</a> and providing the firewall name and ARN.</p>
565
620
  */
566
621
  export interface FirewallStatus {
@@ -599,6 +654,9 @@ export interface FirewallStatus {
599
654
  */
600
655
  CapacityUsageSummary?: CapacityUsageSummary;
601
656
  }
657
+ /**
658
+ * @public
659
+ */
602
660
  export interface CreateFirewallResponse {
603
661
  /**
604
662
  * <p>The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints. </p>
@@ -610,6 +668,7 @@ export interface CreateFirewallResponse {
610
668
  FirewallStatus?: FirewallStatus;
611
669
  }
612
670
  /**
671
+ * @public
613
672
  * <p>Unable to perform the operation because doing so would violate a limit setting. </p>
614
673
  */
615
674
  export declare class LimitExceededException extends __BaseException {
@@ -621,15 +680,22 @@ export declare class LimitExceededException extends __BaseException {
621
680
  */
622
681
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
623
682
  }
683
+ /**
684
+ * @public
685
+ */
624
686
  export declare enum RuleOrder {
625
687
  DEFAULT_ACTION_ORDER = "DEFAULT_ACTION_ORDER",
626
688
  STRICT_ORDER = "STRICT_ORDER"
627
689
  }
690
+ /**
691
+ * @public
692
+ */
628
693
  export declare enum StreamExceptionPolicy {
629
694
  CONTINUE = "CONTINUE",
630
695
  DROP = "DROP"
631
696
  }
632
697
  /**
698
+ * @public
633
699
  * <p>Configuration settings for the handling of the stateful rule groups in a firewall policy. </p>
634
700
  */
635
701
  export interface StatefulEngineOptions {
@@ -656,10 +722,14 @@ export interface StatefulEngineOptions {
656
722
  */
657
723
  StreamExceptionPolicy?: StreamExceptionPolicy | string;
658
724
  }
725
+ /**
726
+ * @public
727
+ */
659
728
  export declare enum OverrideAction {
660
729
  DROP_TO_ALERT = "DROP_TO_ALERT"
661
730
  }
662
731
  /**
732
+ * @public
663
733
  * <p>The setting that allows the policy owner to change the behavior of the rule group within a policy. </p>
664
734
  */
665
735
  export interface StatefulRuleGroupOverride {
@@ -670,6 +740,7 @@ export interface StatefulRuleGroupOverride {
670
740
  Action?: OverrideAction | string;
671
741
  }
672
742
  /**
743
+ * @public
673
744
  * <p>Identifier for a single stateful rule group, used in a firewall policy to refer to a
674
745
  * rule group. </p>
675
746
  */
@@ -696,6 +767,7 @@ export interface StatefulRuleGroupReference {
696
767
  Override?: StatefulRuleGroupOverride;
697
768
  }
698
769
  /**
770
+ * @public
699
771
  * <p>An optional, non-standard action to use for stateless packet handling. You can define
700
772
  * this in addition to the standard action that you must specify. </p>
701
773
  * <p>You define and name the custom actions that you want to be able to use, and then you
@@ -729,6 +801,7 @@ export interface CustomAction {
729
801
  ActionDefinition: ActionDefinition | undefined;
730
802
  }
731
803
  /**
804
+ * @public
732
805
  * <p>Identifier for a single stateless rule group, used in a firewall policy to refer to the
733
806
  * rule group. </p>
734
807
  */
@@ -746,6 +819,7 @@ export interface StatelessRuleGroupReference {
746
819
  Priority: number | undefined;
747
820
  }
748
821
  /**
822
+ * @public
749
823
  * <p>The firewall policy defines the behavior of a firewall using a collection of stateless
750
824
  * and stateful rule groups and other settings. You can use one firewall policy for multiple
751
825
  * firewalls. </p>
@@ -823,6 +897,9 @@ export interface FirewallPolicy {
823
897
  */
824
898
  StatefulEngineOptions?: StatefulEngineOptions;
825
899
  }
900
+ /**
901
+ * @public
902
+ */
826
903
  export interface CreateFirewallPolicyRequest {
827
904
  /**
828
905
  * <p>The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.</p>
@@ -854,11 +931,15 @@ export interface CreateFirewallPolicyRequest {
854
931
  */
855
932
  EncryptionConfiguration?: EncryptionConfiguration;
856
933
  }
934
+ /**
935
+ * @public
936
+ */
857
937
  export declare enum ResourceStatus {
858
938
  ACTIVE = "ACTIVE",
859
939
  DELETING = "DELETING"
860
940
  }
861
941
  /**
942
+ * @public
862
943
  * <p>The high-level properties of a firewall policy. This, along with the <a>FirewallPolicy</a>, define the policy. You can retrieve all objects for a firewall policy by calling <a>DescribeFirewallPolicy</a>. </p>
863
944
  */
864
945
  export interface FirewallPolicyResponse {
@@ -914,6 +995,9 @@ export interface FirewallPolicyResponse {
914
995
  */
915
996
  LastModifiedTime?: Date;
916
997
  }
998
+ /**
999
+ * @public
1000
+ */
917
1001
  export interface CreateFirewallPolicyResponse {
918
1002
  /**
919
1003
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. </p>
@@ -926,6 +1010,7 @@ export interface CreateFirewallPolicyResponse {
926
1010
  FirewallPolicyResponse: FirewallPolicyResponse | undefined;
927
1011
  }
928
1012
  /**
1013
+ * @public
929
1014
  * <p>Configures one or more IP set references for a Suricata-compatible rule group. This is used in <a>CreateRuleGroup</a> or <a>UpdateRuleGroup</a>. An IP set reference is a rule variable that references a resource that you create and manage in another Amazon Web Services service, such as an Amazon VPC prefix list. Network Firewall IP set references enable you to dynamically update the contents of your rules. When you create, update, or delete the IP set you are referencing in your rule, Network Firewall automatically updates the rule's content with the changes. For more information about IP set references in Network Firewall, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/rule-groups-ip-set-references">Using IP set references</a> in the <i>Network Firewall Developer Guide</i>.</p>
930
1015
  * <p>
931
1016
  * Network Firewall currently supports only <a href="https://docs.aws.amazon.com/vpc/latest/userguide/managed-prefix-lists.html">Amazon VPC prefix lists</a> as IP set references.
@@ -938,6 +1023,7 @@ export interface IPSetReference {
938
1023
  ReferenceArn?: string;
939
1024
  }
940
1025
  /**
1026
+ * @public
941
1027
  * <p>Contains a set of IP set references.</p>
942
1028
  */
943
1029
  export interface ReferenceSets {
@@ -946,15 +1032,22 @@ export interface ReferenceSets {
946
1032
  */
947
1033
  IPSetReferences?: Record<string, IPSetReference>;
948
1034
  }
1035
+ /**
1036
+ * @public
1037
+ */
949
1038
  export declare enum GeneratedRulesType {
950
1039
  ALLOWLIST = "ALLOWLIST",
951
1040
  DENYLIST = "DENYLIST"
952
1041
  }
1042
+ /**
1043
+ * @public
1044
+ */
953
1045
  export declare enum TargetType {
954
1046
  HTTP_HOST = "HTTP_HOST",
955
1047
  TLS_SNI = "TLS_SNI"
956
1048
  }
957
1049
  /**
1050
+ * @public
958
1051
  * <p>Stateful inspection criteria for a domain list rule group. </p>
959
1052
  * <p>For HTTPS traffic, domain filtering is SNI-based. It uses the server name indicator extension of the TLS handshake.</p>
960
1053
  * <p>By default, Network Firewall domain list inspection only includes traffic coming from the VPC where you deploy the firewall. To inspect traffic from IP addresses outside of the deployment VPC, you set the <code>HOME_NET</code> rule variable to include the CIDR range of the deployment VPC plus the other CIDR ranges. For more information, see <a>RuleVariables</a> in this guide and <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/stateful-rule-groups-domain-names.html">Stateful domain list rule groups in Network Firewall</a> in the <i>Network Firewall Developer Guide</i>.</p>
@@ -981,16 +1074,25 @@ export interface RulesSourceList {
981
1074
  */
982
1075
  GeneratedRulesType: GeneratedRulesType | string | undefined;
983
1076
  }
1077
+ /**
1078
+ * @public
1079
+ */
984
1080
  export declare enum StatefulAction {
985
1081
  ALERT = "ALERT",
986
1082
  DROP = "DROP",
987
1083
  PASS = "PASS",
988
1084
  REJECT = "REJECT"
989
1085
  }
1086
+ /**
1087
+ * @public
1088
+ */
990
1089
  export declare enum StatefulRuleDirection {
991
1090
  ANY = "ANY",
992
1091
  FORWARD = "FORWARD"
993
1092
  }
1093
+ /**
1094
+ * @public
1095
+ */
994
1096
  export declare enum StatefulRuleProtocol {
995
1097
  ANY = "IP",
996
1098
  DCERPC = "DCERPC",
@@ -1013,6 +1115,7 @@ export declare enum StatefulRuleProtocol {
1013
1115
  UDP = "UDP"
1014
1116
  }
1015
1117
  /**
1118
+ * @public
1016
1119
  * <p>The basic rule criteria for Network Firewall to use to inspect packet headers in stateful
1017
1120
  * traffic flow inspection. Traffic flows that match the criteria are a match for the
1018
1121
  * corresponding <a>StatefulRule</a>. </p>
@@ -1091,6 +1194,7 @@ export interface Header {
1091
1194
  DestinationPort: string | undefined;
1092
1195
  }
1093
1196
  /**
1197
+ * @public
1094
1198
  * <p>Additional settings for a stateful rule. This is part of the <a>StatefulRule</a> configuration.</p>
1095
1199
  */
1096
1200
  export interface RuleOption {
@@ -1104,6 +1208,7 @@ export interface RuleOption {
1104
1208
  Settings?: string[];
1105
1209
  }
1106
1210
  /**
1211
+ * @public
1107
1212
  * <p>A single Suricata rules specification, for use in a stateful rule group.
1108
1213
  * Use this option to specify a simple Suricata rule with protocol, source and destination, ports, direction, and rule options.
1109
1214
  * For information about the Suricata <code>Rules</code> format, see
@@ -1157,6 +1262,7 @@ export interface StatefulRule {
1157
1262
  RuleOptions: RuleOption[] | undefined;
1158
1263
  }
1159
1264
  /**
1265
+ * @public
1160
1266
  * <p>A single port range specification. This is used for source and destination port ranges
1161
1267
  * in the stateless rule <a>MatchAttributes</a>, <code>SourcePorts</code>, and
1162
1268
  * <code>DestinationPorts</code> settings. </p>
@@ -1173,6 +1279,9 @@ export interface PortRange {
1173
1279
  */
1174
1280
  ToPort: number | undefined;
1175
1281
  }
1282
+ /**
1283
+ * @public
1284
+ */
1176
1285
  export declare enum TCPFlag {
1177
1286
  ACK = "ACK",
1178
1287
  CWR = "CWR",
@@ -1184,6 +1293,7 @@ export declare enum TCPFlag {
1184
1293
  URG = "URG"
1185
1294
  }
1186
1295
  /**
1296
+ * @public
1187
1297
  * <p>TCP flags and masks to inspect packets for, used in stateless rules <a>MatchAttributes</a> settings.</p>
1188
1298
  */
1189
1299
  export interface TCPFlagField {
@@ -1206,6 +1316,7 @@ export interface TCPFlagField {
1206
1316
  Masks?: (TCPFlag | string)[];
1207
1317
  }
1208
1318
  /**
1319
+ * @public
1209
1320
  * <p>Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags. </p>
1210
1321
  */
1211
1322
  export interface MatchAttributes {
@@ -1245,6 +1356,7 @@ export interface MatchAttributes {
1245
1356
  TCPFlags?: TCPFlagField[];
1246
1357
  }
1247
1358
  /**
1359
+ * @public
1248
1360
  * <p>The inspection criteria and action for a single stateless rule. Network Firewall inspects each packet for the specified matching
1249
1361
  * criteria. When a packet matches the criteria, Network Firewall performs the rule's actions on
1250
1362
  * the packet.</p>
@@ -1296,6 +1408,7 @@ export interface RuleDefinition {
1296
1408
  Actions: string[] | undefined;
1297
1409
  }
1298
1410
  /**
1411
+ * @public
1299
1412
  * <p>A single stateless rule. This is used in <a>StatelessRulesAndCustomActions</a>.</p>
1300
1413
  */
1301
1414
  export interface StatelessRule {
@@ -1321,6 +1434,7 @@ export interface StatelessRule {
1321
1434
  Priority: number | undefined;
1322
1435
  }
1323
1436
  /**
1437
+ * @public
1324
1438
  * <p>Stateless inspection criteria. Each stateless rule group uses exactly one of these data
1325
1439
  * types to define its stateless rules. </p>
1326
1440
  */
@@ -1339,6 +1453,7 @@ export interface StatelessRulesAndCustomActions {
1339
1453
  CustomActions?: CustomAction[];
1340
1454
  }
1341
1455
  /**
1456
+ * @public
1342
1457
  * <p>The stateless or stateful rules definitions for use in a single rule group. Each rule
1343
1458
  * group requires a single <code>RulesSource</code>. You can use an instance of this for
1344
1459
  * either stateless rules or stateful rules. </p>
@@ -1370,6 +1485,7 @@ export interface RulesSource {
1370
1485
  StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions;
1371
1486
  }
1372
1487
  /**
1488
+ * @public
1373
1489
  * <p>A list of IP addresses and address ranges, in CIDR notation. This is part of a <a>RuleVariables</a>. </p>
1374
1490
  */
1375
1491
  export interface IPSet {
@@ -1381,6 +1497,7 @@ export interface IPSet {
1381
1497
  Definition: string[] | undefined;
1382
1498
  }
1383
1499
  /**
1500
+ * @public
1384
1501
  * <p>A set of port ranges for use in the rules in a rule group. </p>
1385
1502
  */
1386
1503
  export interface PortSet {
@@ -1391,6 +1508,7 @@ export interface PortSet {
1391
1508
  Definition?: string[];
1392
1509
  }
1393
1510
  /**
1511
+ * @public
1394
1512
  * <p>Settings that are available for use in the rules in the <a>RuleGroup</a>
1395
1513
  * where this is defined. </p>
1396
1514
  */
@@ -1405,6 +1523,7 @@ export interface RuleVariables {
1405
1523
  PortSets?: Record<string, PortSet>;
1406
1524
  }
1407
1525
  /**
1526
+ * @public
1408
1527
  * <p>Additional options governing how Network Firewall handles the rule group. You can only use these for stateful rule groups.</p>
1409
1528
  */
1410
1529
  export interface StatefulRuleOptions {
@@ -1418,6 +1537,7 @@ export interface StatefulRuleOptions {
1418
1537
  RuleOrder?: RuleOrder | string;
1419
1538
  }
1420
1539
  /**
1540
+ * @public
1421
1541
  * <p>The object that defines the rules in a rule group. This, along with <a>RuleGroupResponse</a>, define the rule group. You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>. </p>
1422
1542
  * <p>Network Firewall uses a rule group to inspect and control network traffic.
1423
1543
  * You define stateless rule groups to inspect individual packets and you define stateful rule groups to inspect packets in the context of their
@@ -1446,6 +1566,7 @@ export interface RuleGroup {
1446
1566
  StatefulRuleOptions?: StatefulRuleOptions;
1447
1567
  }
1448
1568
  /**
1569
+ * @public
1449
1570
  * <p>High-level information about the managed rule group that your own rule group is copied from. You can use the the metadata to track version updates made to the originating rule group. You can retrieve all objects for a rule group by calling <a href="https://docs.aws.amazon.com/network-firewall/latest/APIReference/API_DescribeRuleGroup.html">DescribeRuleGroup</a>.</p>
1450
1571
  */
1451
1572
  export interface SourceMetadata {
@@ -1458,10 +1579,16 @@ export interface SourceMetadata {
1458
1579
  */
1459
1580
  SourceUpdateToken?: string;
1460
1581
  }
1582
+ /**
1583
+ * @public
1584
+ */
1461
1585
  export declare enum RuleGroupType {
1462
1586
  STATEFUL = "STATEFUL",
1463
1587
  STATELESS = "STATELESS"
1464
1588
  }
1589
+ /**
1590
+ * @public
1591
+ */
1465
1592
  export interface CreateRuleGroupRequest {
1466
1593
  /**
1467
1594
  * <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
@@ -1560,6 +1687,7 @@ export interface CreateRuleGroupRequest {
1560
1687
  SourceMetadata?: SourceMetadata;
1561
1688
  }
1562
1689
  /**
1690
+ * @public
1563
1691
  * <p>The high-level properties of a rule group. This, along with the <a>RuleGroup</a>, define the rule group. You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>. </p>
1564
1692
  */
1565
1693
  export interface RuleGroupResponse {
@@ -1633,6 +1761,9 @@ export interface RuleGroupResponse {
1633
1761
  */
1634
1762
  LastModifiedTime?: Date;
1635
1763
  }
1764
+ /**
1765
+ * @public
1766
+ */
1636
1767
  export interface CreateRuleGroupResponse {
1637
1768
  /**
1638
1769
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. </p>
@@ -1644,6 +1775,9 @@ export interface CreateRuleGroupResponse {
1644
1775
  */
1645
1776
  RuleGroupResponse: RuleGroupResponse | undefined;
1646
1777
  }
1778
+ /**
1779
+ * @public
1780
+ */
1647
1781
  export interface DeleteFirewallRequest {
1648
1782
  /**
1649
1783
  * <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
@@ -1656,6 +1790,9 @@ export interface DeleteFirewallRequest {
1656
1790
  */
1657
1791
  FirewallArn?: string;
1658
1792
  }
1793
+ /**
1794
+ * @public
1795
+ */
1659
1796
  export interface DeleteFirewallResponse {
1660
1797
  /**
1661
1798
  * <p>The firewall defines the configuration settings for an Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource. </p>
@@ -1670,6 +1807,7 @@ export interface DeleteFirewallResponse {
1670
1807
  FirewallStatus?: FirewallStatus;
1671
1808
  }
1672
1809
  /**
1810
+ * @public
1673
1811
  * <p>The operation you requested isn't supported by Network Firewall. </p>
1674
1812
  */
1675
1813
  export declare class UnsupportedOperationException extends __BaseException {
@@ -1681,6 +1819,9 @@ export declare class UnsupportedOperationException extends __BaseException {
1681
1819
  */
1682
1820
  constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
1683
1821
  }
1822
+ /**
1823
+ * @public
1824
+ */
1684
1825
  export interface DeleteFirewallPolicyRequest {
1685
1826
  /**
1686
1827
  * <p>The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.</p>
@@ -1693,6 +1834,9 @@ export interface DeleteFirewallPolicyRequest {
1693
1834
  */
1694
1835
  FirewallPolicyArn?: string;
1695
1836
  }
1837
+ /**
1838
+ * @public
1839
+ */
1696
1840
  export interface DeleteFirewallPolicyResponse {
1697
1841
  /**
1698
1842
  * <p>The object containing the definition of the <a>FirewallPolicyResponse</a>
@@ -1700,15 +1844,22 @@ export interface DeleteFirewallPolicyResponse {
1700
1844
  */
1701
1845
  FirewallPolicyResponse: FirewallPolicyResponse | undefined;
1702
1846
  }
1847
+ /**
1848
+ * @public
1849
+ */
1703
1850
  export interface DeleteResourcePolicyRequest {
1704
1851
  /**
1705
1852
  * <p>The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to delete. </p>
1706
1853
  */
1707
1854
  ResourceArn: string | undefined;
1708
1855
  }
1856
+ /**
1857
+ * @public
1858
+ */
1709
1859
  export interface DeleteResourcePolicyResponse {
1710
1860
  }
1711
1861
  /**
1862
+ * @public
1712
1863
  * <p>The policy statement failed validation.</p>
1713
1864
  */
1714
1865
  export declare class InvalidResourcePolicyException extends __BaseException {
@@ -1720,6 +1871,9 @@ export declare class InvalidResourcePolicyException extends __BaseException {
1720
1871
  */
1721
1872
  constructor(opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>);
1722
1873
  }
1874
+ /**
1875
+ * @public
1876
+ */
1723
1877
  export interface DeleteRuleGroupRequest {
1724
1878
  /**
1725
1879
  * <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
@@ -1740,12 +1894,18 @@ export interface DeleteRuleGroupRequest {
1740
1894
  */
1741
1895
  Type?: RuleGroupType | string;
1742
1896
  }
1897
+ /**
1898
+ * @public
1899
+ */
1743
1900
  export interface DeleteRuleGroupResponse {
1744
1901
  /**
1745
1902
  * <p>The high-level properties of a rule group. This, along with the <a>RuleGroup</a>, define the rule group. You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>. </p>
1746
1903
  */
1747
1904
  RuleGroupResponse: RuleGroupResponse | undefined;
1748
1905
  }
1906
+ /**
1907
+ * @public
1908
+ */
1749
1909
  export interface DescribeFirewallRequest {
1750
1910
  /**
1751
1911
  * <p>The descriptive name of the firewall. You can't change the name of a firewall after you create it.</p>
@@ -1758,6 +1918,9 @@ export interface DescribeFirewallRequest {
1758
1918
  */
1759
1919
  FirewallArn?: string;
1760
1920
  }
1921
+ /**
1922
+ * @public
1923
+ */
1761
1924
  export interface DescribeFirewallResponse {
1762
1925
  /**
1763
1926
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -1774,6 +1937,9 @@ export interface DescribeFirewallResponse {
1774
1937
  */
1775
1938
  FirewallStatus?: FirewallStatus;
1776
1939
  }
1940
+ /**
1941
+ * @public
1942
+ */
1777
1943
  export interface DescribeFirewallPolicyRequest {
1778
1944
  /**
1779
1945
  * <p>The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.</p>
@@ -1786,6 +1952,9 @@ export interface DescribeFirewallPolicyRequest {
1786
1952
  */
1787
1953
  FirewallPolicyArn?: string;
1788
1954
  }
1955
+ /**
1956
+ * @public
1957
+ */
1789
1958
  export interface DescribeFirewallPolicyResponse {
1790
1959
  /**
1791
1960
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. </p>
@@ -1801,6 +1970,9 @@ export interface DescribeFirewallPolicyResponse {
1801
1970
  */
1802
1971
  FirewallPolicy?: FirewallPolicy;
1803
1972
  }
1973
+ /**
1974
+ * @public
1975
+ */
1804
1976
  export interface DescribeLoggingConfigurationRequest {
1805
1977
  /**
1806
1978
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -1813,16 +1985,23 @@ export interface DescribeLoggingConfigurationRequest {
1813
1985
  */
1814
1986
  FirewallName?: string;
1815
1987
  }
1988
+ /**
1989
+ * @public
1990
+ */
1816
1991
  export declare enum LogDestinationType {
1817
1992
  CLOUDWATCH_LOGS = "CloudWatchLogs",
1818
1993
  KINESIS_DATA_FIREHOSE = "KinesisDataFirehose",
1819
1994
  S3 = "S3"
1820
1995
  }
1996
+ /**
1997
+ * @public
1998
+ */
1821
1999
  export declare enum LogType {
1822
2000
  ALERT = "ALERT",
1823
2001
  FLOW = "FLOW"
1824
2002
  }
1825
2003
  /**
2004
+ * @public
1826
2005
  * <p>Defines where Network Firewall sends logs for the firewall for one log type. This is used
1827
2006
  * in <a>LoggingConfiguration</a>. You can send each type of log to an Amazon S3 bucket, a CloudWatch log group, or a Kinesis Data Firehose delivery stream.</p>
1828
2007
  * <p>Network Firewall generates logs for stateful rule groups. You can save alert and flow log
@@ -1851,8 +2030,8 @@ export interface LogDestinationConfig {
1851
2030
  * specifies an Amazon S3 bucket named
1852
2031
  * <code>DOC-EXAMPLE-BUCKET</code> and the prefix <code>alerts</code>: </p>
1853
2032
  * <p>
1854
- * <code>"LogDestination": { "bucketName": "DOC-EXAMPLE-BUCKET", "prefix": "alerts"
1855
- * }</code>
2033
+ * <code>"LogDestination": \{ "bucketName": "DOC-EXAMPLE-BUCKET", "prefix": "alerts"
2034
+ * \}</code>
1856
2035
  * </p>
1857
2036
  * </li>
1858
2037
  * <li>
@@ -1860,7 +2039,7 @@ export interface LogDestinationConfig {
1860
2039
  * <code>logGroup</code>. The following example specifies a log group named
1861
2040
  * <code>alert-log-group</code>: </p>
1862
2041
  * <p>
1863
- * <code>"LogDestination": { "logGroup": "alert-log-group" }</code>
2042
+ * <code>"LogDestination": \{ "logGroup": "alert-log-group" \}</code>
1864
2043
  * </p>
1865
2044
  * </li>
1866
2045
  * <li>
@@ -1868,8 +2047,8 @@ export interface LogDestinationConfig {
1868
2047
  * <code>deliveryStream</code>. The following example specifies a delivery stream
1869
2048
  * named <code>alert-delivery-stream</code>: </p>
1870
2049
  * <p>
1871
- * <code>"LogDestination": { "deliveryStream": "alert-delivery-stream"
1872
- * }</code>
2050
+ * <code>"LogDestination": \{ "deliveryStream": "alert-delivery-stream"
2051
+ * \}</code>
1873
2052
  * </p>
1874
2053
  * </li>
1875
2054
  * </ul>
@@ -1877,6 +2056,7 @@ export interface LogDestinationConfig {
1877
2056
  LogDestination: Record<string, string> | undefined;
1878
2057
  }
1879
2058
  /**
2059
+ * @public
1880
2060
  * <p>Defines how Network Firewall performs logging for a <a>Firewall</a>. </p>
1881
2061
  */
1882
2062
  export interface LoggingConfiguration {
@@ -1886,6 +2066,9 @@ export interface LoggingConfiguration {
1886
2066
  */
1887
2067
  LogDestinationConfigs: LogDestinationConfig[] | undefined;
1888
2068
  }
2069
+ /**
2070
+ * @public
2071
+ */
1889
2072
  export interface DescribeLoggingConfigurationResponse {
1890
2073
  /**
1891
2074
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -1896,18 +2079,27 @@ export interface DescribeLoggingConfigurationResponse {
1896
2079
  */
1897
2080
  LoggingConfiguration?: LoggingConfiguration;
1898
2081
  }
2082
+ /**
2083
+ * @public
2084
+ */
1899
2085
  export interface DescribeResourcePolicyRequest {
1900
2086
  /**
1901
2087
  * <p>The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to retrieve. </p>
1902
2088
  */
1903
2089
  ResourceArn: string | undefined;
1904
2090
  }
2091
+ /**
2092
+ * @public
2093
+ */
1905
2094
  export interface DescribeResourcePolicyResponse {
1906
2095
  /**
1907
2096
  * <p>The IAM policy for the resource. </p>
1908
2097
  */
1909
2098
  Policy?: string;
1910
2099
  }
2100
+ /**
2101
+ * @public
2102
+ */
1911
2103
  export interface DescribeRuleGroupRequest {
1912
2104
  /**
1913
2105
  * <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
@@ -1928,6 +2120,9 @@ export interface DescribeRuleGroupRequest {
1928
2120
  */
1929
2121
  Type?: RuleGroupType | string;
1930
2122
  }
2123
+ /**
2124
+ * @public
2125
+ */
1931
2126
  export interface DescribeRuleGroupResponse {
1932
2127
  /**
1933
2128
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. </p>
@@ -1948,6 +2143,9 @@ export interface DescribeRuleGroupResponse {
1948
2143
  */
1949
2144
  RuleGroupResponse: RuleGroupResponse | undefined;
1950
2145
  }
2146
+ /**
2147
+ * @public
2148
+ */
1951
2149
  export interface DescribeRuleGroupMetadataRequest {
1952
2150
  /**
1953
2151
  * <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
@@ -1968,6 +2166,9 @@ export interface DescribeRuleGroupMetadataRequest {
1968
2166
  */
1969
2167
  Type?: RuleGroupType | string;
1970
2168
  }
2169
+ /**
2170
+ * @public
2171
+ */
1971
2172
  export interface DescribeRuleGroupMetadataResponse {
1972
2173
  /**
1973
2174
  * <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
@@ -2009,6 +2210,9 @@ export interface DescribeRuleGroupMetadataResponse {
2009
2210
  */
2010
2211
  LastModifiedTime?: Date;
2011
2212
  }
2213
+ /**
2214
+ * @public
2215
+ */
2012
2216
  export interface DisassociateSubnetsRequest {
2013
2217
  /**
2014
2218
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2031,6 +2235,9 @@ export interface DisassociateSubnetsRequest {
2031
2235
  */
2032
2236
  SubnetIds: string[] | undefined;
2033
2237
  }
2238
+ /**
2239
+ * @public
2240
+ */
2034
2241
  export interface DisassociateSubnetsResponse {
2035
2242
  /**
2036
2243
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -2052,6 +2259,7 @@ export interface DisassociateSubnetsResponse {
2052
2259
  UpdateToken?: string;
2053
2260
  }
2054
2261
  /**
2262
+ * @public
2055
2263
  * <p>High-level information about a firewall, returned by operations like create and
2056
2264
  * describe. You can use the information provided in the metadata to retrieve and manage a
2057
2265
  * firewall.</p>
@@ -2067,6 +2275,7 @@ export interface FirewallMetadata {
2067
2275
  FirewallArn?: string;
2068
2276
  }
2069
2277
  /**
2278
+ * @public
2070
2279
  * <p>High-level information about a firewall policy, returned by operations like create and
2071
2280
  * describe. You can use the information provided in the metadata to retrieve and manage a
2072
2281
  * firewall policy. You can retrieve all objects for a firewall policy by calling <a>DescribeFirewallPolicy</a>. </p>
@@ -2081,6 +2290,9 @@ export interface FirewallPolicyMetadata {
2081
2290
  */
2082
2291
  Arn?: string;
2083
2292
  }
2293
+ /**
2294
+ * @public
2295
+ */
2084
2296
  export interface ListFirewallPoliciesRequest {
2085
2297
  /**
2086
2298
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2095,6 +2307,9 @@ export interface ListFirewallPoliciesRequest {
2095
2307
  */
2096
2308
  MaxResults?: number;
2097
2309
  }
2310
+ /**
2311
+ * @public
2312
+ */
2098
2313
  export interface ListFirewallPoliciesResponse {
2099
2314
  /**
2100
2315
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2108,6 +2323,9 @@ export interface ListFirewallPoliciesResponse {
2108
2323
  */
2109
2324
  FirewallPolicies?: FirewallPolicyMetadata[];
2110
2325
  }
2326
+ /**
2327
+ * @public
2328
+ */
2111
2329
  export interface ListFirewallsRequest {
2112
2330
  /**
2113
2331
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2127,6 +2345,9 @@ export interface ListFirewallsRequest {
2127
2345
  */
2128
2346
  MaxResults?: number;
2129
2347
  }
2348
+ /**
2349
+ * @public
2350
+ */
2130
2351
  export interface ListFirewallsResponse {
2131
2352
  /**
2132
2353
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2141,14 +2362,23 @@ export interface ListFirewallsResponse {
2141
2362
  */
2142
2363
  Firewalls?: FirewallMetadata[];
2143
2364
  }
2365
+ /**
2366
+ * @public
2367
+ */
2144
2368
  export declare enum ResourceManagedType {
2145
2369
  AWS_MANAGED_DOMAIN_LISTS = "AWS_MANAGED_DOMAIN_LISTS",
2146
2370
  AWS_MANAGED_THREAT_SIGNATURES = "AWS_MANAGED_THREAT_SIGNATURES"
2147
2371
  }
2372
+ /**
2373
+ * @public
2374
+ */
2148
2375
  export declare enum ResourceManagedStatus {
2149
2376
  ACCOUNT = "ACCOUNT",
2150
2377
  MANAGED = "MANAGED"
2151
2378
  }
2379
+ /**
2380
+ * @public
2381
+ */
2152
2382
  export interface ListRuleGroupsRequest {
2153
2383
  /**
2154
2384
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2178,6 +2408,7 @@ export interface ListRuleGroupsRequest {
2178
2408
  Type?: RuleGroupType | string;
2179
2409
  }
2180
2410
  /**
2411
+ * @public
2181
2412
  * <p>High-level information about a rule group, returned by <a>ListRuleGroups</a>.
2182
2413
  * You can use the information provided in the metadata to retrieve and manage a
2183
2414
  * rule group.</p>
@@ -2192,6 +2423,9 @@ export interface RuleGroupMetadata {
2192
2423
  */
2193
2424
  Arn?: string;
2194
2425
  }
2426
+ /**
2427
+ * @public
2428
+ */
2195
2429
  export interface ListRuleGroupsResponse {
2196
2430
  /**
2197
2431
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2205,6 +2439,9 @@ export interface ListRuleGroupsResponse {
2205
2439
  */
2206
2440
  RuleGroups?: RuleGroupMetadata[];
2207
2441
  }
2442
+ /**
2443
+ * @public
2444
+ */
2208
2445
  export interface ListTagsForResourceRequest {
2209
2446
  /**
2210
2447
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2223,6 +2460,9 @@ export interface ListTagsForResourceRequest {
2223
2460
  */
2224
2461
  ResourceArn: string | undefined;
2225
2462
  }
2463
+ /**
2464
+ * @public
2465
+ */
2226
2466
  export interface ListTagsForResourceResponse {
2227
2467
  /**
2228
2468
  * <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
@@ -2236,6 +2476,7 @@ export interface ListTagsForResourceResponse {
2236
2476
  Tags?: Tag[];
2237
2477
  }
2238
2478
  /**
2479
+ * @public
2239
2480
  * <p>Unable to send logs to a configured logging destination. </p>
2240
2481
  */
2241
2482
  export declare class LogDestinationPermissionException extends __BaseException {
@@ -2247,6 +2488,9 @@ export declare class LogDestinationPermissionException extends __BaseException {
2247
2488
  */
2248
2489
  constructor(opts: __ExceptionOptionType<LogDestinationPermissionException, __BaseException>);
2249
2490
  }
2491
+ /**
2492
+ * @public
2493
+ */
2250
2494
  export interface PutResourcePolicyRequest {
2251
2495
  /**
2252
2496
  * <p>The Amazon Resource Name (ARN) of the account that you want to share rule groups and firewall policies with.</p>
@@ -2286,8 +2530,14 @@ export interface PutResourcePolicyRequest {
2286
2530
  */
2287
2531
  Policy: string | undefined;
2288
2532
  }
2533
+ /**
2534
+ * @public
2535
+ */
2289
2536
  export interface PutResourcePolicyResponse {
2290
2537
  }
2538
+ /**
2539
+ * @public
2540
+ */
2291
2541
  export interface TagResourceRequest {
2292
2542
  /**
2293
2543
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -2298,8 +2548,14 @@ export interface TagResourceRequest {
2298
2548
  */
2299
2549
  Tags: Tag[] | undefined;
2300
2550
  }
2551
+ /**
2552
+ * @public
2553
+ */
2301
2554
  export interface TagResourceResponse {
2302
2555
  }
2556
+ /**
2557
+ * @public
2558
+ */
2303
2559
  export interface UntagResourceRequest {
2304
2560
  /**
2305
2561
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -2310,9 +2566,13 @@ export interface UntagResourceRequest {
2310
2566
  */
2311
2567
  TagKeys: string[] | undefined;
2312
2568
  }
2569
+ /**
2570
+ * @public
2571
+ */
2313
2572
  export interface UntagResourceResponse {
2314
2573
  }
2315
2574
  /**
2575
+ * @public
2316
2576
  * <p>Unable to change the resource because your account doesn't own it. </p>
2317
2577
  */
2318
2578
  export declare class ResourceOwnerCheckException extends __BaseException {
@@ -2324,6 +2584,9 @@ export declare class ResourceOwnerCheckException extends __BaseException {
2324
2584
  */
2325
2585
  constructor(opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>);
2326
2586
  }
2587
+ /**
2588
+ * @public
2589
+ */
2327
2590
  export interface UpdateFirewallDeleteProtectionRequest {
2328
2591
  /**
2329
2592
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2348,6 +2611,9 @@ export interface UpdateFirewallDeleteProtectionRequest {
2348
2611
  */
2349
2612
  DeleteProtection: boolean | undefined;
2350
2613
  }
2614
+ /**
2615
+ * @public
2616
+ */
2351
2617
  export interface UpdateFirewallDeleteProtectionResponse {
2352
2618
  /**
2353
2619
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -2370,6 +2636,9 @@ export interface UpdateFirewallDeleteProtectionResponse {
2370
2636
  */
2371
2637
  UpdateToken?: string;
2372
2638
  }
2639
+ /**
2640
+ * @public
2641
+ */
2373
2642
  export interface UpdateFirewallDescriptionRequest {
2374
2643
  /**
2375
2644
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2393,6 +2662,9 @@ export interface UpdateFirewallDescriptionRequest {
2393
2662
  */
2394
2663
  Description?: string;
2395
2664
  }
2665
+ /**
2666
+ * @public
2667
+ */
2396
2668
  export interface UpdateFirewallDescriptionResponse {
2397
2669
  /**
2398
2670
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -2413,6 +2685,9 @@ export interface UpdateFirewallDescriptionResponse {
2413
2685
  */
2414
2686
  UpdateToken?: string;
2415
2687
  }
2688
+ /**
2689
+ * @public
2690
+ */
2416
2691
  export interface UpdateFirewallEncryptionConfigurationRequest {
2417
2692
  /**
2418
2693
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2433,6 +2708,9 @@ export interface UpdateFirewallEncryptionConfigurationRequest {
2433
2708
  */
2434
2709
  EncryptionConfiguration?: EncryptionConfiguration;
2435
2710
  }
2711
+ /**
2712
+ * @public
2713
+ */
2436
2714
  export interface UpdateFirewallEncryptionConfigurationResponse {
2437
2715
  /**
2438
2716
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -2453,6 +2731,9 @@ export interface UpdateFirewallEncryptionConfigurationResponse {
2453
2731
  */
2454
2732
  EncryptionConfiguration?: EncryptionConfiguration;
2455
2733
  }
2734
+ /**
2735
+ * @public
2736
+ */
2456
2737
  export interface UpdateFirewallPolicyRequest {
2457
2738
  /**
2458
2739
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. </p>
@@ -2491,6 +2772,9 @@ export interface UpdateFirewallPolicyRequest {
2491
2772
  */
2492
2773
  EncryptionConfiguration?: EncryptionConfiguration;
2493
2774
  }
2775
+ /**
2776
+ * @public
2777
+ */
2494
2778
  export interface UpdateFirewallPolicyResponse {
2495
2779
  /**
2496
2780
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. </p>
@@ -2502,6 +2786,9 @@ export interface UpdateFirewallPolicyResponse {
2502
2786
  */
2503
2787
  FirewallPolicyResponse: FirewallPolicyResponse | undefined;
2504
2788
  }
2789
+ /**
2790
+ * @public
2791
+ */
2505
2792
  export interface UpdateFirewallPolicyChangeProtectionRequest {
2506
2793
  /**
2507
2794
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2526,6 +2813,9 @@ export interface UpdateFirewallPolicyChangeProtectionRequest {
2526
2813
  */
2527
2814
  FirewallPolicyChangeProtection: boolean | undefined;
2528
2815
  }
2816
+ /**
2817
+ * @public
2818
+ */
2529
2819
  export interface UpdateFirewallPolicyChangeProtectionResponse {
2530
2820
  /**
2531
2821
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2548,6 +2838,9 @@ export interface UpdateFirewallPolicyChangeProtectionResponse {
2548
2838
  */
2549
2839
  FirewallPolicyChangeProtection?: boolean;
2550
2840
  }
2841
+ /**
2842
+ * @public
2843
+ */
2551
2844
  export interface UpdateLoggingConfigurationRequest {
2552
2845
  /**
2553
2846
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -2565,6 +2858,9 @@ export interface UpdateLoggingConfigurationRequest {
2565
2858
  */
2566
2859
  LoggingConfiguration?: LoggingConfiguration;
2567
2860
  }
2861
+ /**
2862
+ * @public
2863
+ */
2568
2864
  export interface UpdateLoggingConfigurationResponse {
2569
2865
  /**
2570
2866
  * <p>The Amazon Resource Name (ARN) of the firewall.</p>
@@ -2579,6 +2875,9 @@ export interface UpdateLoggingConfigurationResponse {
2579
2875
  */
2580
2876
  LoggingConfiguration?: LoggingConfiguration;
2581
2877
  }
2878
+ /**
2879
+ * @public
2880
+ */
2582
2881
  export interface UpdateRuleGroupRequest {
2583
2882
  /**
2584
2883
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. </p>
@@ -2642,6 +2941,9 @@ export interface UpdateRuleGroupRequest {
2642
2941
  */
2643
2942
  SourceMetadata?: SourceMetadata;
2644
2943
  }
2944
+ /**
2945
+ * @public
2946
+ */
2645
2947
  export interface UpdateRuleGroupResponse {
2646
2948
  /**
2647
2949
  * <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. </p>
@@ -2653,6 +2955,9 @@ export interface UpdateRuleGroupResponse {
2653
2955
  */
2654
2956
  RuleGroupResponse: RuleGroupResponse | undefined;
2655
2957
  }
2958
+ /**
2959
+ * @public
2960
+ */
2656
2961
  export interface UpdateSubnetChangeProtectionRequest {
2657
2962
  /**
2658
2963
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>
@@ -2677,6 +2982,9 @@ export interface UpdateSubnetChangeProtectionRequest {
2677
2982
  */
2678
2983
  SubnetChangeProtection: boolean | undefined;
2679
2984
  }
2985
+ /**
2986
+ * @public
2987
+ */
2680
2988
  export interface UpdateSubnetChangeProtectionResponse {
2681
2989
  /**
2682
2990
  * <p>An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. </p>