@aws-sdk/client-network-firewall 3.428.0 → 3.429.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -254,7 +254,7 @@ export interface SubnetMapping {
|
|
|
254
254
|
* @public
|
|
255
255
|
* <p>The subnet's IP address type. You can't change the IP address type after you create the subnet.</p>
|
|
256
256
|
*/
|
|
257
|
-
IPAddressType?: IPAddressType
|
|
257
|
+
IPAddressType?: IPAddressType;
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
260
|
* @public
|
|
@@ -370,7 +370,7 @@ export interface Attachment {
|
|
|
370
370
|
* available for traffic, this value will reflect its state, for example
|
|
371
371
|
* <code>CREATING</code> or <code>DELETING</code>.</p>
|
|
372
372
|
*/
|
|
373
|
-
Status?: AttachmentStatus
|
|
373
|
+
Status?: AttachmentStatus;
|
|
374
374
|
/**
|
|
375
375
|
* @public
|
|
376
376
|
* <p>If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A <code>FAILED</code> status indicates a non-recoverable state, and a <code>ERROR</code> status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/firewall-troubleshooting-endpoint-failures.html">Troubleshooting firewall endpoint failures</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
@@ -485,7 +485,7 @@ export interface EncryptionConfiguration {
|
|
|
485
485
|
* @public
|
|
486
486
|
* <p>The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources.</p>
|
|
487
487
|
*/
|
|
488
|
-
Type: EncryptionType |
|
|
488
|
+
Type: EncryptionType | undefined;
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
491
|
* @public
|
|
@@ -691,7 +691,7 @@ export interface PerObjectStatus {
|
|
|
691
691
|
* @public
|
|
692
692
|
* <p>Indicates whether this object is in sync with the version indicated in the update token.</p>
|
|
693
693
|
*/
|
|
694
|
-
SyncStatus?: PerObjectSyncStatus
|
|
694
|
+
SyncStatus?: PerObjectSyncStatus;
|
|
695
695
|
/**
|
|
696
696
|
* @public
|
|
697
697
|
* <p>The current version of the object that is either in sync or pending synchronization. </p>
|
|
@@ -748,7 +748,7 @@ export interface FirewallStatus {
|
|
|
748
748
|
* <code>Status</code> values for all of the configured subnets are <code>READY</code>.
|
|
749
749
|
* </p>
|
|
750
750
|
*/
|
|
751
|
-
Status: FirewallStatusValue |
|
|
751
|
+
Status: FirewallStatusValue | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* @public
|
|
754
754
|
* <p>The configuration sync state for the firewall. This summarizes the sync states reported
|
|
@@ -762,7 +762,7 @@ export interface FirewallStatus {
|
|
|
762
762
|
* doesn't indicate that the firewall is ready. The <code>Status</code> setting indicates
|
|
763
763
|
* firewall readiness.</p>
|
|
764
764
|
*/
|
|
765
|
-
ConfigurationSyncStateSummary: ConfigurationSyncState |
|
|
765
|
+
ConfigurationSyncStateSummary: ConfigurationSyncState | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* @public
|
|
768
768
|
* <p>The subnets that you've configured for use by the Network Firewall firewall. This contains
|
|
@@ -868,7 +868,7 @@ export interface StatefulEngineOptions {
|
|
|
868
868
|
* <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html">Evaluation order for stateful rules</a> in the <i>Network Firewall Developer Guide</i>.
|
|
869
869
|
* </p>
|
|
870
870
|
*/
|
|
871
|
-
RuleOrder?: RuleOrder
|
|
871
|
+
RuleOrder?: RuleOrder;
|
|
872
872
|
/**
|
|
873
873
|
* @public
|
|
874
874
|
* <p>Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself.</p>
|
|
@@ -887,7 +887,7 @@ export interface StatefulEngineOptions {
|
|
|
887
887
|
* </li>
|
|
888
888
|
* </ul>
|
|
889
889
|
*/
|
|
890
|
-
StreamExceptionPolicy?: StreamExceptionPolicy
|
|
890
|
+
StreamExceptionPolicy?: StreamExceptionPolicy;
|
|
891
891
|
}
|
|
892
892
|
/**
|
|
893
893
|
* @public
|
|
@@ -910,7 +910,7 @@ export interface StatefulRuleGroupOverride {
|
|
|
910
910
|
* <p>The action that changes the rule group from <code>DROP</code> to <code>ALERT</code>. This only applies to
|
|
911
911
|
* managed rule groups.</p>
|
|
912
912
|
*/
|
|
913
|
-
Action?: OverrideAction
|
|
913
|
+
Action?: OverrideAction;
|
|
914
914
|
}
|
|
915
915
|
/**
|
|
916
916
|
* @public
|
|
@@ -1182,7 +1182,7 @@ export interface FirewallPolicyResponse {
|
|
|
1182
1182
|
* by calling <a>DescribeFirewallPolicy</a> and providing the firewall policy's
|
|
1183
1183
|
* name or ARN.</p>
|
|
1184
1184
|
*/
|
|
1185
|
-
FirewallPolicyStatus?: ResourceStatus
|
|
1185
|
+
FirewallPolicyStatus?: ResourceStatus;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* @public
|
|
1188
1188
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
@@ -1303,12 +1303,12 @@ export interface RulesSourceList {
|
|
|
1303
1303
|
* @public
|
|
1304
1304
|
* <p>The protocols you want to inspect. Specify <code>TLS_SNI</code> for <code>HTTPS</code>. Specify <code>HTTP_HOST</code> for <code>HTTP</code>. You can specify either or both. </p>
|
|
1305
1305
|
*/
|
|
1306
|
-
TargetTypes:
|
|
1306
|
+
TargetTypes: TargetType[] | undefined;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* @public
|
|
1309
1309
|
* <p>Whether you want to allow or deny access to the domains in your target list.</p>
|
|
1310
1310
|
*/
|
|
1311
|
-
GeneratedRulesType: GeneratedRulesType |
|
|
1311
|
+
GeneratedRulesType: GeneratedRulesType | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
/**
|
|
1314
1314
|
* @public
|
|
@@ -1376,7 +1376,7 @@ export interface Header {
|
|
|
1376
1376
|
* @public
|
|
1377
1377
|
* <p>The protocol to inspect for. To specify all, you can use <code>IP</code>, because all traffic on Amazon Web Services and on the internet is IP.</p>
|
|
1378
1378
|
*/
|
|
1379
|
-
Protocol: StatefulRuleProtocol |
|
|
1379
|
+
Protocol: StatefulRuleProtocol | undefined;
|
|
1380
1380
|
/**
|
|
1381
1381
|
* @public
|
|
1382
1382
|
* <p>The source IP address or address range to inspect for, in CIDR notation.
|
|
@@ -1416,7 +1416,7 @@ export interface Header {
|
|
|
1416
1416
|
* destination to the source. If set to <code>FORWARD</code>, the inspection only matches
|
|
1417
1417
|
* traffic going from the source to the destination. </p>
|
|
1418
1418
|
*/
|
|
1419
|
-
Direction: StatefulRuleDirection |
|
|
1419
|
+
Direction: StatefulRuleDirection | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* @public
|
|
1422
1422
|
* <p>The destination IP address or address range to inspect for, in CIDR notation.
|
|
@@ -1503,7 +1503,7 @@ export interface StatefulRule {
|
|
|
1503
1503
|
* </li>
|
|
1504
1504
|
* </ul>
|
|
1505
1505
|
*/
|
|
1506
|
-
Action: StatefulAction |
|
|
1506
|
+
Action: StatefulAction | undefined;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* @public
|
|
1509
1509
|
* <p>The stateful inspection criteria for this rule, used to inspect traffic flows.
|
|
@@ -1572,12 +1572,12 @@ export interface TCPFlagField {
|
|
|
1572
1572
|
* </li>
|
|
1573
1573
|
* </ul>
|
|
1574
1574
|
*/
|
|
1575
|
-
Flags:
|
|
1575
|
+
Flags: TCPFlag[] | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* @public
|
|
1578
1578
|
* <p>The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.</p>
|
|
1579
1579
|
*/
|
|
1580
|
-
Masks?:
|
|
1580
|
+
Masks?: TCPFlag[];
|
|
1581
1581
|
}
|
|
1582
1582
|
/**
|
|
1583
1583
|
* @public
|
|
@@ -1806,7 +1806,7 @@ export interface StatefulRuleOptions {
|
|
|
1806
1806
|
* <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html">Evaluation order for stateful rules</a> in the <i>Network Firewall Developer Guide</i>.
|
|
1807
1807
|
* </p>
|
|
1808
1808
|
*/
|
|
1809
|
-
RuleOrder?: RuleOrder
|
|
1809
|
+
RuleOrder?: RuleOrder;
|
|
1810
1810
|
}
|
|
1811
1811
|
/**
|
|
1812
1812
|
* @public
|
|
@@ -1902,7 +1902,7 @@ export interface CreateRuleGroupRequest {
|
|
|
1902
1902
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
1903
1903
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
1904
1904
|
*/
|
|
1905
|
-
Type: RuleGroupType |
|
|
1905
|
+
Type: RuleGroupType | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* @public
|
|
1908
1908
|
* <p>A description of the rule group. </p>
|
|
@@ -2014,7 +2014,7 @@ export interface RuleGroupResponse {
|
|
|
2014
2014
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains
|
|
2015
2015
|
* stateless rules. If it is stateful, it contains stateful rules. </p>
|
|
2016
2016
|
*/
|
|
2017
|
-
Type?: RuleGroupType
|
|
2017
|
+
Type?: RuleGroupType;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* @public
|
|
2020
2020
|
* <p>The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation.
|
|
@@ -2028,7 +2028,7 @@ export interface RuleGroupResponse {
|
|
|
2028
2028
|
* @public
|
|
2029
2029
|
* <p>Detailed information about the current status of a rule group. </p>
|
|
2030
2030
|
*/
|
|
2031
|
-
RuleGroupStatus?: ResourceStatus
|
|
2031
|
+
RuleGroupStatus?: ResourceStatus;
|
|
2032
2032
|
/**
|
|
2033
2033
|
* @public
|
|
2034
2034
|
* <p>The key:value pairs to associate with the resource.</p>
|
|
@@ -2221,7 +2221,7 @@ export interface TLSInspectionConfigurationResponse {
|
|
|
2221
2221
|
* @public
|
|
2222
2222
|
* <p>Detailed information about the current status of a <a>TLSInspectionConfiguration</a>. You can retrieve this for a TLS inspection configuration by calling <a>DescribeTLSInspectionConfiguration</a> and providing the TLS inspection configuration name and ARN.</p>
|
|
2223
2223
|
*/
|
|
2224
|
-
TLSInspectionConfigurationStatus?: ResourceStatus
|
|
2224
|
+
TLSInspectionConfigurationStatus?: ResourceStatus;
|
|
2225
2225
|
/**
|
|
2226
2226
|
* @public
|
|
2227
2227
|
* <p>A description of the TLS inspection configuration. </p>
|
|
@@ -2397,7 +2397,7 @@ export interface DeleteRuleGroupRequest {
|
|
|
2397
2397
|
* <p>This setting is required for requests that do not include the <code>RuleGroupARN</code>.</p>
|
|
2398
2398
|
* </note>
|
|
2399
2399
|
*/
|
|
2400
|
-
Type?: RuleGroupType
|
|
2400
|
+
Type?: RuleGroupType;
|
|
2401
2401
|
}
|
|
2402
2402
|
/**
|
|
2403
2403
|
* @public
|
|
@@ -2570,13 +2570,13 @@ export interface LogDestinationConfig {
|
|
|
2570
2570
|
* <p>The type of log to send. Alert logs report traffic that matches a <a>StatefulRule</a> with an action setting that sends an alert log message. Flow logs are
|
|
2571
2571
|
* standard network traffic flow logs. </p>
|
|
2572
2572
|
*/
|
|
2573
|
-
LogType: LogType |
|
|
2573
|
+
LogType: LogType | undefined;
|
|
2574
2574
|
/**
|
|
2575
2575
|
* @public
|
|
2576
2576
|
* <p>The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket,
|
|
2577
2577
|
* a CloudWatch log group, or a Kinesis Data Firehose delivery stream.</p>
|
|
2578
2578
|
*/
|
|
2579
|
-
LogDestinationType: LogDestinationType |
|
|
2579
|
+
LogDestinationType: LogDestinationType | undefined;
|
|
2580
2580
|
/**
|
|
2581
2581
|
* @public
|
|
2582
2582
|
* <p>The named location for the logs, provided in a key:value mapping that is specific to the
|
|
@@ -2684,7 +2684,7 @@ export interface DescribeRuleGroupRequest {
|
|
|
2684
2684
|
* <p>This setting is required for requests that do not include the <code>RuleGroupARN</code>.</p>
|
|
2685
2685
|
* </note>
|
|
2686
2686
|
*/
|
|
2687
|
-
Type?: RuleGroupType
|
|
2687
|
+
Type?: RuleGroupType;
|
|
2688
2688
|
}
|
|
2689
2689
|
/**
|
|
2690
2690
|
* @public
|
|
@@ -2736,7 +2736,7 @@ export interface DescribeRuleGroupMetadataRequest {
|
|
|
2736
2736
|
* <p>This setting is required for requests that do not include the <code>RuleGroupARN</code>.</p>
|
|
2737
2737
|
* </note>
|
|
2738
2738
|
*/
|
|
2739
|
-
Type?: RuleGroupType
|
|
2739
|
+
Type?: RuleGroupType;
|
|
2740
2740
|
}
|
|
2741
2741
|
/**
|
|
2742
2742
|
* @public
|
|
@@ -2768,7 +2768,7 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
2768
2768
|
* <p>This setting is required for requests that do not include the <code>RuleGroupARN</code>.</p>
|
|
2769
2769
|
* </note>
|
|
2770
2770
|
*/
|
|
2771
|
-
Type?: RuleGroupType
|
|
2771
|
+
Type?: RuleGroupType;
|
|
2772
2772
|
/**
|
|
2773
2773
|
* @public
|
|
2774
2774
|
* <p>The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation.
|
|
@@ -3051,17 +3051,17 @@ export interface ListRuleGroupsRequest {
|
|
|
3051
3051
|
* <code>NULL</code> returns all of the rule groups in your account. A setting of
|
|
3052
3052
|
* <code>MANAGED</code> returns all available managed rule groups.</p>
|
|
3053
3053
|
*/
|
|
3054
|
-
Scope?: ResourceManagedStatus
|
|
3054
|
+
Scope?: ResourceManagedStatus;
|
|
3055
3055
|
/**
|
|
3056
3056
|
* @public
|
|
3057
3057
|
* <p>Indicates the general category of the Amazon Web Services managed rule group.</p>
|
|
3058
3058
|
*/
|
|
3059
|
-
ManagedType?: ResourceManagedType
|
|
3059
|
+
ManagedType?: ResourceManagedType;
|
|
3060
3060
|
/**
|
|
3061
3061
|
* @public
|
|
3062
3062
|
* <p>Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.</p>
|
|
3063
3063
|
*/
|
|
3064
|
-
Type?: RuleGroupType
|
|
3064
|
+
Type?: RuleGroupType;
|
|
3065
3065
|
}
|
|
3066
3066
|
/**
|
|
3067
3067
|
* @public
|
|
@@ -3688,7 +3688,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
3688
3688
|
* <p>This setting is required for requests that do not include the <code>RuleGroupARN</code>.</p>
|
|
3689
3689
|
* </note>
|
|
3690
3690
|
*/
|
|
3691
|
-
Type?: RuleGroupType
|
|
3691
|
+
Type?: RuleGroupType;
|
|
3692
3692
|
/**
|
|
3693
3693
|
* @public
|
|
3694
3694
|
* <p>A description of the rule group. </p>
|
|
@@ -80,7 +80,7 @@ export declare const IPAddressType: {
|
|
|
80
80
|
export type IPAddressType = (typeof IPAddressType)[keyof typeof IPAddressType];
|
|
81
81
|
export interface SubnetMapping {
|
|
82
82
|
SubnetId: string | undefined;
|
|
83
|
-
IPAddressType?: IPAddressType
|
|
83
|
+
IPAddressType?: IPAddressType;
|
|
84
84
|
}
|
|
85
85
|
export interface AssociateSubnetsRequest {
|
|
86
86
|
UpdateToken?: string;
|
|
@@ -115,7 +115,7 @@ export type AttachmentStatus =
|
|
|
115
115
|
export interface Attachment {
|
|
116
116
|
SubnetId?: string;
|
|
117
117
|
EndpointId?: string;
|
|
118
|
-
Status?: AttachmentStatus
|
|
118
|
+
Status?: AttachmentStatus;
|
|
119
119
|
StatusMessage?: string;
|
|
120
120
|
}
|
|
121
121
|
export interface IPSetMetadata {
|
|
@@ -150,7 +150,7 @@ export type EncryptionType =
|
|
|
150
150
|
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
151
151
|
export interface EncryptionConfiguration {
|
|
152
152
|
KeyId?: string;
|
|
153
|
-
Type: EncryptionType |
|
|
153
|
+
Type: EncryptionType | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface Tag {
|
|
156
156
|
Key: string | undefined;
|
|
@@ -197,7 +197,7 @@ export declare const PerObjectSyncStatus: {
|
|
|
197
197
|
export type PerObjectSyncStatus =
|
|
198
198
|
(typeof PerObjectSyncStatus)[keyof typeof PerObjectSyncStatus];
|
|
199
199
|
export interface PerObjectStatus {
|
|
200
|
-
SyncStatus?: PerObjectSyncStatus
|
|
200
|
+
SyncStatus?: PerObjectSyncStatus;
|
|
201
201
|
UpdateToken?: string;
|
|
202
202
|
}
|
|
203
203
|
export interface SyncState {
|
|
@@ -205,8 +205,8 @@ export interface SyncState {
|
|
|
205
205
|
Config?: Record<string, PerObjectStatus>;
|
|
206
206
|
}
|
|
207
207
|
export interface FirewallStatus {
|
|
208
|
-
Status: FirewallStatusValue |
|
|
209
|
-
ConfigurationSyncStateSummary: ConfigurationSyncState |
|
|
208
|
+
Status: FirewallStatusValue | undefined;
|
|
209
|
+
ConfigurationSyncStateSummary: ConfigurationSyncState | undefined;
|
|
210
210
|
SyncStates?: Record<string, SyncState>;
|
|
211
211
|
CapacityUsageSummary?: CapacityUsageSummary;
|
|
212
212
|
}
|
|
@@ -241,8 +241,8 @@ export declare const StreamExceptionPolicy: {
|
|
|
241
241
|
export type StreamExceptionPolicy =
|
|
242
242
|
(typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
|
|
243
243
|
export interface StatefulEngineOptions {
|
|
244
|
-
RuleOrder?: RuleOrder
|
|
245
|
-
StreamExceptionPolicy?: StreamExceptionPolicy
|
|
244
|
+
RuleOrder?: RuleOrder;
|
|
245
|
+
StreamExceptionPolicy?: StreamExceptionPolicy;
|
|
246
246
|
}
|
|
247
247
|
export declare const OverrideAction: {
|
|
248
248
|
readonly DROP_TO_ALERT: "DROP_TO_ALERT";
|
|
@@ -250,7 +250,7 @@ export declare const OverrideAction: {
|
|
|
250
250
|
export type OverrideAction =
|
|
251
251
|
(typeof OverrideAction)[keyof typeof OverrideAction];
|
|
252
252
|
export interface StatefulRuleGroupOverride {
|
|
253
|
-
Action?: OverrideAction
|
|
253
|
+
Action?: OverrideAction;
|
|
254
254
|
}
|
|
255
255
|
export interface StatefulRuleGroupReference {
|
|
256
256
|
ResourceArn: string | undefined;
|
|
@@ -295,7 +295,7 @@ export interface FirewallPolicyResponse {
|
|
|
295
295
|
FirewallPolicyArn: string | undefined;
|
|
296
296
|
FirewallPolicyId: string | undefined;
|
|
297
297
|
Description?: string;
|
|
298
|
-
FirewallPolicyStatus?: ResourceStatus
|
|
298
|
+
FirewallPolicyStatus?: ResourceStatus;
|
|
299
299
|
Tags?: Tag[];
|
|
300
300
|
ConsumedStatelessRuleCapacity?: number;
|
|
301
301
|
ConsumedStatefulRuleCapacity?: number;
|
|
@@ -326,8 +326,8 @@ export declare const TargetType: {
|
|
|
326
326
|
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
327
327
|
export interface RulesSourceList {
|
|
328
328
|
Targets: string[] | undefined;
|
|
329
|
-
TargetTypes:
|
|
330
|
-
GeneratedRulesType: GeneratedRulesType |
|
|
329
|
+
TargetTypes: TargetType[] | undefined;
|
|
330
|
+
GeneratedRulesType: GeneratedRulesType | undefined;
|
|
331
331
|
}
|
|
332
332
|
export declare const StatefulAction: {
|
|
333
333
|
readonly ALERT: "ALERT";
|
|
@@ -367,10 +367,10 @@ export declare const StatefulRuleProtocol: {
|
|
|
367
367
|
export type StatefulRuleProtocol =
|
|
368
368
|
(typeof StatefulRuleProtocol)[keyof typeof StatefulRuleProtocol];
|
|
369
369
|
export interface Header {
|
|
370
|
-
Protocol: StatefulRuleProtocol |
|
|
370
|
+
Protocol: StatefulRuleProtocol | undefined;
|
|
371
371
|
Source: string | undefined;
|
|
372
372
|
SourcePort: string | undefined;
|
|
373
|
-
Direction: StatefulRuleDirection |
|
|
373
|
+
Direction: StatefulRuleDirection | undefined;
|
|
374
374
|
Destination: string | undefined;
|
|
375
375
|
DestinationPort: string | undefined;
|
|
376
376
|
}
|
|
@@ -379,7 +379,7 @@ export interface RuleOption {
|
|
|
379
379
|
Settings?: string[];
|
|
380
380
|
}
|
|
381
381
|
export interface StatefulRule {
|
|
382
|
-
Action: StatefulAction |
|
|
382
|
+
Action: StatefulAction | undefined;
|
|
383
383
|
Header: Header | undefined;
|
|
384
384
|
RuleOptions: RuleOption[] | undefined;
|
|
385
385
|
}
|
|
@@ -399,8 +399,8 @@ export declare const TCPFlag: {
|
|
|
399
399
|
};
|
|
400
400
|
export type TCPFlag = (typeof TCPFlag)[keyof typeof TCPFlag];
|
|
401
401
|
export interface TCPFlagField {
|
|
402
|
-
Flags:
|
|
403
|
-
Masks?:
|
|
402
|
+
Flags: TCPFlag[] | undefined;
|
|
403
|
+
Masks?: TCPFlag[];
|
|
404
404
|
}
|
|
405
405
|
export interface MatchAttributes {
|
|
406
406
|
Sources?: Address[];
|
|
@@ -436,7 +436,7 @@ export interface RuleVariables {
|
|
|
436
436
|
PortSets?: Record<string, PortSet>;
|
|
437
437
|
}
|
|
438
438
|
export interface StatefulRuleOptions {
|
|
439
|
-
RuleOrder?: RuleOrder
|
|
439
|
+
RuleOrder?: RuleOrder;
|
|
440
440
|
}
|
|
441
441
|
export interface RuleGroup {
|
|
442
442
|
RuleVariables?: RuleVariables;
|
|
@@ -457,7 +457,7 @@ export interface CreateRuleGroupRequest {
|
|
|
457
457
|
RuleGroupName: string | undefined;
|
|
458
458
|
RuleGroup?: RuleGroup;
|
|
459
459
|
Rules?: string;
|
|
460
|
-
Type: RuleGroupType |
|
|
460
|
+
Type: RuleGroupType | undefined;
|
|
461
461
|
Description?: string;
|
|
462
462
|
Capacity: number | undefined;
|
|
463
463
|
Tags?: Tag[];
|
|
@@ -470,9 +470,9 @@ export interface RuleGroupResponse {
|
|
|
470
470
|
RuleGroupName: string | undefined;
|
|
471
471
|
RuleGroupId: string | undefined;
|
|
472
472
|
Description?: string;
|
|
473
|
-
Type?: RuleGroupType
|
|
473
|
+
Type?: RuleGroupType;
|
|
474
474
|
Capacity?: number;
|
|
475
|
-
RuleGroupStatus?: ResourceStatus
|
|
475
|
+
RuleGroupStatus?: ResourceStatus;
|
|
476
476
|
Tags?: Tag[];
|
|
477
477
|
ConsumedCapacity?: number;
|
|
478
478
|
NumberOfAssociations?: number;
|
|
@@ -513,7 +513,7 @@ export interface TLSInspectionConfigurationResponse {
|
|
|
513
513
|
TLSInspectionConfigurationArn: string | undefined;
|
|
514
514
|
TLSInspectionConfigurationName: string | undefined;
|
|
515
515
|
TLSInspectionConfigurationId: string | undefined;
|
|
516
|
-
TLSInspectionConfigurationStatus?: ResourceStatus
|
|
516
|
+
TLSInspectionConfigurationStatus?: ResourceStatus;
|
|
517
517
|
Description?: string;
|
|
518
518
|
Tags?: Tag[];
|
|
519
519
|
LastModifiedTime?: Date;
|
|
@@ -565,7 +565,7 @@ export declare class InvalidResourcePolicyException extends __BaseException {
|
|
|
565
565
|
export interface DeleteRuleGroupRequest {
|
|
566
566
|
RuleGroupName?: string;
|
|
567
567
|
RuleGroupArn?: string;
|
|
568
|
-
Type?: RuleGroupType
|
|
568
|
+
Type?: RuleGroupType;
|
|
569
569
|
}
|
|
570
570
|
export interface DeleteRuleGroupResponse {
|
|
571
571
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
@@ -614,8 +614,8 @@ export declare const LogType: {
|
|
|
614
614
|
};
|
|
615
615
|
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
616
616
|
export interface LogDestinationConfig {
|
|
617
|
-
LogType: LogType |
|
|
618
|
-
LogDestinationType: LogDestinationType |
|
|
617
|
+
LogType: LogType | undefined;
|
|
618
|
+
LogDestinationType: LogDestinationType | undefined;
|
|
619
619
|
LogDestination: Record<string, string> | undefined;
|
|
620
620
|
}
|
|
621
621
|
export interface LoggingConfiguration {
|
|
@@ -634,7 +634,7 @@ export interface DescribeResourcePolicyResponse {
|
|
|
634
634
|
export interface DescribeRuleGroupRequest {
|
|
635
635
|
RuleGroupName?: string;
|
|
636
636
|
RuleGroupArn?: string;
|
|
637
|
-
Type?: RuleGroupType
|
|
637
|
+
Type?: RuleGroupType;
|
|
638
638
|
}
|
|
639
639
|
export interface DescribeRuleGroupResponse {
|
|
640
640
|
UpdateToken: string | undefined;
|
|
@@ -644,13 +644,13 @@ export interface DescribeRuleGroupResponse {
|
|
|
644
644
|
export interface DescribeRuleGroupMetadataRequest {
|
|
645
645
|
RuleGroupName?: string;
|
|
646
646
|
RuleGroupArn?: string;
|
|
647
|
-
Type?: RuleGroupType
|
|
647
|
+
Type?: RuleGroupType;
|
|
648
648
|
}
|
|
649
649
|
export interface DescribeRuleGroupMetadataResponse {
|
|
650
650
|
RuleGroupArn: string | undefined;
|
|
651
651
|
RuleGroupName: string | undefined;
|
|
652
652
|
Description?: string;
|
|
653
|
-
Type?: RuleGroupType
|
|
653
|
+
Type?: RuleGroupType;
|
|
654
654
|
Capacity?: number;
|
|
655
655
|
StatefulRuleOptions?: StatefulRuleOptions;
|
|
656
656
|
LastModifiedTime?: Date;
|
|
@@ -718,9 +718,9 @@ export type ResourceManagedStatus =
|
|
|
718
718
|
export interface ListRuleGroupsRequest {
|
|
719
719
|
NextToken?: string;
|
|
720
720
|
MaxResults?: number;
|
|
721
|
-
Scope?: ResourceManagedStatus
|
|
722
|
-
ManagedType?: ResourceManagedType
|
|
723
|
-
Type?: RuleGroupType
|
|
721
|
+
Scope?: ResourceManagedStatus;
|
|
722
|
+
ManagedType?: ResourceManagedType;
|
|
723
|
+
Type?: RuleGroupType;
|
|
724
724
|
}
|
|
725
725
|
export interface RuleGroupMetadata {
|
|
726
726
|
Name?: string;
|
|
@@ -862,7 +862,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
862
862
|
RuleGroupName?: string;
|
|
863
863
|
RuleGroup?: RuleGroup;
|
|
864
864
|
Rules?: string;
|
|
865
|
-
Type?: RuleGroupType
|
|
865
|
+
Type?: RuleGroupType;
|
|
866
866
|
Description?: string;
|
|
867
867
|
DryRun?: boolean;
|
|
868
868
|
EncryptionConfiguration?: EncryptionConfiguration;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-network-firewall",
|
|
3
3
|
"description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|