@aws-sdk/client-network-firewall 3.830.0 → 3.831.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +48 -0
- package/dist-es/NetworkFirewall.js +2 -0
- package/dist-es/commands/DescribeRuleGroupSummaryCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/protocols/Aws_json1_0.js +22 -0
- package/dist-types/NetworkFirewall.d.ts +8 -0
- package/dist-types/NetworkFirewallClient.d.ts +3 -2
- package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +10 -0
- package/dist-types/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +5 -0
- package/dist-types/commands/DescribeFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +5 -0
- package/dist-types/commands/DescribeRuleGroupSummaryCommand.d.ts +112 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +1 -1
- package/dist-types/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +10 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +190 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +9 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +18 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeRuleGroupSummaryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -480,6 +480,14 @@ DescribeRuleGroupMetadata
|
|
|
480
480
|
|
|
481
481
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeRuleGroupMetadataCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeRuleGroupMetadataCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeRuleGroupMetadataCommandOutput/)
|
|
482
482
|
|
|
483
|
+
</details>
|
|
484
|
+
<details>
|
|
485
|
+
<summary>
|
|
486
|
+
DescribeRuleGroupSummary
|
|
487
|
+
</summary>
|
|
488
|
+
|
|
489
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeRuleGroupSummaryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeRuleGroupSummaryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeRuleGroupSummaryCommandOutput/)
|
|
490
|
+
|
|
483
491
|
</details>
|
|
484
492
|
<details>
|
|
485
493
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -47,6 +47,7 @@ __export(index_exports, {
|
|
|
47
47
|
DescribeResourcePolicyCommand: () => DescribeResourcePolicyCommand,
|
|
48
48
|
DescribeRuleGroupCommand: () => DescribeRuleGroupCommand,
|
|
49
49
|
DescribeRuleGroupMetadataCommand: () => DescribeRuleGroupMetadataCommand,
|
|
50
|
+
DescribeRuleGroupSummaryCommand: () => DescribeRuleGroupSummaryCommand,
|
|
50
51
|
DescribeTLSInspectionConfigurationCommand: () => DescribeTLSInspectionConfigurationCommand,
|
|
51
52
|
DescribeVpcEndpointAssociationCommand: () => DescribeVpcEndpointAssociationCommand,
|
|
52
53
|
DisassociateAvailabilityZonesCommand: () => DisassociateAvailabilityZonesCommand,
|
|
@@ -101,6 +102,7 @@ __export(index_exports, {
|
|
|
101
102
|
StatefulRuleDirection: () => StatefulRuleDirection,
|
|
102
103
|
StatefulRuleProtocol: () => StatefulRuleProtocol,
|
|
103
104
|
StreamExceptionPolicy: () => StreamExceptionPolicy,
|
|
105
|
+
SummaryRuleOption: () => SummaryRuleOption,
|
|
104
106
|
TCPFlag: () => TCPFlag,
|
|
105
107
|
TagResourceCommand: () => TagResourceCommand,
|
|
106
108
|
TargetType: () => TargetType,
|
|
@@ -587,6 +589,11 @@ var TCPFlag = {
|
|
|
587
589
|
SYN: "SYN",
|
|
588
590
|
URG: "URG"
|
|
589
591
|
};
|
|
592
|
+
var SummaryRuleOption = {
|
|
593
|
+
METADATA: "METADATA",
|
|
594
|
+
MSG: "MSG",
|
|
595
|
+
SID: "SID"
|
|
596
|
+
};
|
|
590
597
|
var RuleGroupType = {
|
|
591
598
|
STATEFUL: "STATEFUL",
|
|
592
599
|
STATELESS: "STATELESS"
|
|
@@ -652,6 +659,7 @@ var LogType = {
|
|
|
652
659
|
TLS: "TLS"
|
|
653
660
|
};
|
|
654
661
|
var ResourceManagedType = {
|
|
662
|
+
ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE",
|
|
655
663
|
AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS",
|
|
656
664
|
AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES"
|
|
657
665
|
};
|
|
@@ -845,6 +853,12 @@ var se_DescribeRuleGroupMetadataCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
845
853
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
846
854
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
847
855
|
}, "se_DescribeRuleGroupMetadataCommand");
|
|
856
|
+
var se_DescribeRuleGroupSummaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
857
|
+
const headers = sharedHeaders("DescribeRuleGroupSummary");
|
|
858
|
+
let body;
|
|
859
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
860
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
861
|
+
}, "se_DescribeRuleGroupSummaryCommand");
|
|
848
862
|
var se_DescribeTLSInspectionConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
849
863
|
const headers = sharedHeaders("DescribeTLSInspectionConfiguration");
|
|
850
864
|
let body;
|
|
@@ -1349,6 +1363,19 @@ var de_DescribeRuleGroupMetadataCommand = /* @__PURE__ */ __name(async (output,
|
|
|
1349
1363
|
};
|
|
1350
1364
|
return response;
|
|
1351
1365
|
}, "de_DescribeRuleGroupMetadataCommand");
|
|
1366
|
+
var de_DescribeRuleGroupSummaryCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1367
|
+
if (output.statusCode >= 300) {
|
|
1368
|
+
return de_CommandError(output, context);
|
|
1369
|
+
}
|
|
1370
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1371
|
+
let contents = {};
|
|
1372
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1373
|
+
const response = {
|
|
1374
|
+
$metadata: deserializeMetadata(output),
|
|
1375
|
+
...contents
|
|
1376
|
+
};
|
|
1377
|
+
return response;
|
|
1378
|
+
}, "de_DescribeRuleGroupSummaryCommand");
|
|
1352
1379
|
var de_DescribeTLSInspectionConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1353
1380
|
if (output.statusCode >= 300) {
|
|
1354
1381
|
return de_CommandError(output, context);
|
|
@@ -1936,6 +1963,7 @@ var se_CreateRuleGroupRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
1936
1963
|
RuleGroupName: [],
|
|
1937
1964
|
Rules: [],
|
|
1938
1965
|
SourceMetadata: import_smithy_client._json,
|
|
1966
|
+
SummaryConfiguration: import_smithy_client._json,
|
|
1939
1967
|
Tags: import_smithy_client._json,
|
|
1940
1968
|
Type: []
|
|
1941
1969
|
});
|
|
@@ -1951,6 +1979,7 @@ var se_UpdateRuleGroupRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
1951
1979
|
RuleGroupName: [],
|
|
1952
1980
|
Rules: [],
|
|
1953
1981
|
SourceMetadata: import_smithy_client._json,
|
|
1982
|
+
SummaryConfiguration: import_smithy_client._json,
|
|
1954
1983
|
Type: [],
|
|
1955
1984
|
UpdateToken: []
|
|
1956
1985
|
});
|
|
@@ -2145,6 +2174,7 @@ var de_RuleGroupResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
2145
2174
|
RuleGroupStatus: import_smithy_client.expectString,
|
|
2146
2175
|
SnsTopic: import_smithy_client.expectString,
|
|
2147
2176
|
SourceMetadata: import_smithy_client._json,
|
|
2177
|
+
SummaryConfiguration: import_smithy_client._json,
|
|
2148
2178
|
Tags: import_smithy_client._json,
|
|
2149
2179
|
Type: import_smithy_client.expectString
|
|
2150
2180
|
});
|
|
@@ -2572,6 +2602,21 @@ var DescribeRuleGroupMetadataCommand = class extends import_smithy_client.Comman
|
|
|
2572
2602
|
}
|
|
2573
2603
|
};
|
|
2574
2604
|
|
|
2605
|
+
// src/commands/DescribeRuleGroupSummaryCommand.ts
|
|
2606
|
+
|
|
2607
|
+
|
|
2608
|
+
|
|
2609
|
+
var DescribeRuleGroupSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2610
|
+
return [
|
|
2611
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2612
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2613
|
+
];
|
|
2614
|
+
}).s("NetworkFirewall_20201112", "DescribeRuleGroupSummary", {}).n("NetworkFirewallClient", "DescribeRuleGroupSummaryCommand").f(void 0, void 0).ser(se_DescribeRuleGroupSummaryCommand).de(de_DescribeRuleGroupSummaryCommand).build() {
|
|
2615
|
+
static {
|
|
2616
|
+
__name(this, "DescribeRuleGroupSummaryCommand");
|
|
2617
|
+
}
|
|
2618
|
+
};
|
|
2619
|
+
|
|
2575
2620
|
// src/commands/DescribeTLSInspectionConfigurationCommand.ts
|
|
2576
2621
|
|
|
2577
2622
|
|
|
@@ -3078,6 +3123,7 @@ var commands = {
|
|
|
3078
3123
|
DescribeResourcePolicyCommand,
|
|
3079
3124
|
DescribeRuleGroupCommand,
|
|
3080
3125
|
DescribeRuleGroupMetadataCommand,
|
|
3126
|
+
DescribeRuleGroupSummaryCommand,
|
|
3081
3127
|
DescribeTLSInspectionConfigurationCommand,
|
|
3082
3128
|
DescribeVpcEndpointAssociationCommand,
|
|
3083
3129
|
DisassociateAvailabilityZonesCommand,
|
|
@@ -3189,6 +3235,7 @@ var paginateListVpcEndpointAssociations = (0, import_core.createPaginator)(Netwo
|
|
|
3189
3235
|
DescribeResourcePolicyCommand,
|
|
3190
3236
|
DescribeRuleGroupCommand,
|
|
3191
3237
|
DescribeRuleGroupMetadataCommand,
|
|
3238
|
+
DescribeRuleGroupSummaryCommand,
|
|
3192
3239
|
DescribeTLSInspectionConfigurationCommand,
|
|
3193
3240
|
DescribeVpcEndpointAssociationCommand,
|
|
3194
3241
|
DisassociateAvailabilityZonesCommand,
|
|
@@ -3259,6 +3306,7 @@ var paginateListVpcEndpointAssociations = (0, import_core.createPaginator)(Netwo
|
|
|
3259
3306
|
StatefulRuleDirection,
|
|
3260
3307
|
StatefulRuleProtocol,
|
|
3261
3308
|
TCPFlag,
|
|
3309
|
+
SummaryRuleOption,
|
|
3262
3310
|
RuleGroupType,
|
|
3263
3311
|
UnsupportedOperationException,
|
|
3264
3312
|
InvalidResourcePolicyException,
|
|
@@ -23,6 +23,7 @@ import { DescribeLoggingConfigurationCommand, } from "./commands/DescribeLogging
|
|
|
23
23
|
import { DescribeResourcePolicyCommand, } from "./commands/DescribeResourcePolicyCommand";
|
|
24
24
|
import { DescribeRuleGroupCommand, } from "./commands/DescribeRuleGroupCommand";
|
|
25
25
|
import { DescribeRuleGroupMetadataCommand, } from "./commands/DescribeRuleGroupMetadataCommand";
|
|
26
|
+
import { DescribeRuleGroupSummaryCommand, } from "./commands/DescribeRuleGroupSummaryCommand";
|
|
26
27
|
import { DescribeTLSInspectionConfigurationCommand, } from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
27
28
|
import { DescribeVpcEndpointAssociationCommand, } from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
28
29
|
import { DisassociateAvailabilityZonesCommand, } from "./commands/DisassociateAvailabilityZonesCommand";
|
|
@@ -81,6 +82,7 @@ const commands = {
|
|
|
81
82
|
DescribeResourcePolicyCommand,
|
|
82
83
|
DescribeRuleGroupCommand,
|
|
83
84
|
DescribeRuleGroupMetadataCommand,
|
|
85
|
+
DescribeRuleGroupSummaryCommand,
|
|
84
86
|
DescribeTLSInspectionConfigurationCommand,
|
|
85
87
|
DescribeVpcEndpointAssociationCommand,
|
|
86
88
|
DisassociateAvailabilityZonesCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DescribeRuleGroupSummaryCommand, se_DescribeRuleGroupSummaryCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeRuleGroupSummaryCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "DescribeRuleGroupSummary", {})
|
|
17
|
+
.n("NetworkFirewallClient", "DescribeRuleGroupSummaryCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DescribeRuleGroupSummaryCommand)
|
|
20
|
+
.de(de_DescribeRuleGroupSummaryCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -22,6 +22,7 @@ export * from "./DescribeLoggingConfigurationCommand";
|
|
|
22
22
|
export * from "./DescribeResourcePolicyCommand";
|
|
23
23
|
export * from "./DescribeRuleGroupCommand";
|
|
24
24
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
25
|
+
export * from "./DescribeRuleGroupSummaryCommand";
|
|
25
26
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
26
27
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
27
28
|
export * from "./DisassociateAvailabilityZonesCommand";
|
|
@@ -235,6 +235,11 @@ export const TCPFlag = {
|
|
|
235
235
|
SYN: "SYN",
|
|
236
236
|
URG: "URG",
|
|
237
237
|
};
|
|
238
|
+
export const SummaryRuleOption = {
|
|
239
|
+
METADATA: "METADATA",
|
|
240
|
+
MSG: "MSG",
|
|
241
|
+
SID: "SID",
|
|
242
|
+
};
|
|
238
243
|
export const RuleGroupType = {
|
|
239
244
|
STATEFUL: "STATEFUL",
|
|
240
245
|
STATELESS: "STATELESS",
|
|
@@ -288,6 +293,7 @@ export const LogType = {
|
|
|
288
293
|
TLS: "TLS",
|
|
289
294
|
};
|
|
290
295
|
export const ResourceManagedType = {
|
|
296
|
+
ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE",
|
|
291
297
|
AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS",
|
|
292
298
|
AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES",
|
|
293
299
|
};
|
|
@@ -147,6 +147,12 @@ export const se_DescribeRuleGroupMetadataCommand = async (input, context) => {
|
|
|
147
147
|
body = JSON.stringify(_json(input));
|
|
148
148
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
149
149
|
};
|
|
150
|
+
export const se_DescribeRuleGroupSummaryCommand = async (input, context) => {
|
|
151
|
+
const headers = sharedHeaders("DescribeRuleGroupSummary");
|
|
152
|
+
let body;
|
|
153
|
+
body = JSON.stringify(_json(input));
|
|
154
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
155
|
+
};
|
|
150
156
|
export const se_DescribeTLSInspectionConfigurationCommand = async (input, context) => {
|
|
151
157
|
const headers = sharedHeaders("DescribeTLSInspectionConfiguration");
|
|
152
158
|
let body;
|
|
@@ -651,6 +657,19 @@ export const de_DescribeRuleGroupMetadataCommand = async (output, context) => {
|
|
|
651
657
|
};
|
|
652
658
|
return response;
|
|
653
659
|
};
|
|
660
|
+
export const de_DescribeRuleGroupSummaryCommand = async (output, context) => {
|
|
661
|
+
if (output.statusCode >= 300) {
|
|
662
|
+
return de_CommandError(output, context);
|
|
663
|
+
}
|
|
664
|
+
const data = await parseBody(output.body, context);
|
|
665
|
+
let contents = {};
|
|
666
|
+
contents = _json(data);
|
|
667
|
+
const response = {
|
|
668
|
+
$metadata: deserializeMetadata(output),
|
|
669
|
+
...contents,
|
|
670
|
+
};
|
|
671
|
+
return response;
|
|
672
|
+
};
|
|
654
673
|
export const de_DescribeTLSInspectionConfigurationCommand = async (output, context) => {
|
|
655
674
|
if (output.statusCode >= 300) {
|
|
656
675
|
return de_CommandError(output, context);
|
|
@@ -1238,6 +1257,7 @@ const se_CreateRuleGroupRequest = (input, context) => {
|
|
|
1238
1257
|
RuleGroupName: [],
|
|
1239
1258
|
Rules: [],
|
|
1240
1259
|
SourceMetadata: _json,
|
|
1260
|
+
SummaryConfiguration: _json,
|
|
1241
1261
|
Tags: _json,
|
|
1242
1262
|
Type: [],
|
|
1243
1263
|
});
|
|
@@ -1253,6 +1273,7 @@ const se_UpdateRuleGroupRequest = (input, context) => {
|
|
|
1253
1273
|
RuleGroupName: [],
|
|
1254
1274
|
Rules: [],
|
|
1255
1275
|
SourceMetadata: _json,
|
|
1276
|
+
SummaryConfiguration: _json,
|
|
1256
1277
|
Type: [],
|
|
1257
1278
|
UpdateToken: [],
|
|
1258
1279
|
});
|
|
@@ -1453,6 +1474,7 @@ const de_RuleGroupResponse = (output, context) => {
|
|
|
1453
1474
|
RuleGroupStatus: __expectString,
|
|
1454
1475
|
SnsTopic: __expectString,
|
|
1455
1476
|
SourceMetadata: _json,
|
|
1477
|
+
SummaryConfiguration: _json,
|
|
1456
1478
|
Tags: _json,
|
|
1457
1479
|
Type: __expectString,
|
|
1458
1480
|
});
|
|
@@ -23,6 +23,7 @@ import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationC
|
|
|
23
23
|
import { DescribeResourcePolicyCommandInput, DescribeResourcePolicyCommandOutput } from "./commands/DescribeResourcePolicyCommand";
|
|
24
24
|
import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from "./commands/DescribeRuleGroupCommand";
|
|
25
25
|
import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "./commands/DescribeRuleGroupMetadataCommand";
|
|
26
|
+
import { DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput } from "./commands/DescribeRuleGroupSummaryCommand";
|
|
26
27
|
import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
27
28
|
import { DescribeVpcEndpointAssociationCommandInput, DescribeVpcEndpointAssociationCommandOutput } from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
28
29
|
import { DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput } from "./commands/DisassociateAvailabilityZonesCommand";
|
|
@@ -211,6 +212,13 @@ export interface NetworkFirewall {
|
|
|
211
212
|
describeRuleGroupMetadata(args: DescribeRuleGroupMetadataCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRuleGroupMetadataCommandOutput>;
|
|
212
213
|
describeRuleGroupMetadata(args: DescribeRuleGroupMetadataCommandInput, cb: (err: any, data?: DescribeRuleGroupMetadataCommandOutput) => void): void;
|
|
213
214
|
describeRuleGroupMetadata(args: DescribeRuleGroupMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuleGroupMetadataCommandOutput) => void): void;
|
|
215
|
+
/**
|
|
216
|
+
* @see {@link DescribeRuleGroupSummaryCommand}
|
|
217
|
+
*/
|
|
218
|
+
describeRuleGroupSummary(): Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
219
|
+
describeRuleGroupSummary(args: DescribeRuleGroupSummaryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
220
|
+
describeRuleGroupSummary(args: DescribeRuleGroupSummaryCommandInput, cb: (err: any, data?: DescribeRuleGroupSummaryCommandOutput) => void): void;
|
|
221
|
+
describeRuleGroupSummary(args: DescribeRuleGroupSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuleGroupSummaryCommandOutput) => void): void;
|
|
214
222
|
/**
|
|
215
223
|
* @see {@link DescribeTLSInspectionConfigurationCommand}
|
|
216
224
|
*/
|
|
@@ -31,6 +31,7 @@ import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationC
|
|
|
31
31
|
import { DescribeResourcePolicyCommandInput, DescribeResourcePolicyCommandOutput } from "./commands/DescribeResourcePolicyCommand";
|
|
32
32
|
import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from "./commands/DescribeRuleGroupCommand";
|
|
33
33
|
import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "./commands/DescribeRuleGroupMetadataCommand";
|
|
34
|
+
import { DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput } from "./commands/DescribeRuleGroupSummaryCommand";
|
|
34
35
|
import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
35
36
|
import { DescribeVpcEndpointAssociationCommandInput, DescribeVpcEndpointAssociationCommandOutput } from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
36
37
|
import { DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput } from "./commands/DisassociateAvailabilityZonesCommand";
|
|
@@ -69,11 +70,11 @@ export { __Client };
|
|
|
69
70
|
/**
|
|
70
71
|
* @public
|
|
71
72
|
*/
|
|
72
|
-
export type ServiceInputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandInput | AssociateAvailabilityZonesCommandInput | AssociateFirewallPolicyCommandInput | AssociateSubnetsCommandInput | CreateFirewallCommandInput | CreateFirewallPolicyCommandInput | CreateRuleGroupCommandInput | CreateTLSInspectionConfigurationCommandInput | CreateVpcEndpointAssociationCommandInput | DeleteFirewallCommandInput | DeleteFirewallPolicyCommandInput | DeleteNetworkFirewallTransitGatewayAttachmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleGroupCommandInput | DeleteTLSInspectionConfigurationCommandInput | DeleteVpcEndpointAssociationCommandInput | DescribeFirewallCommandInput | DescribeFirewallMetadataCommandInput | DescribeFirewallPolicyCommandInput | DescribeFlowOperationCommandInput | DescribeLoggingConfigurationCommandInput | DescribeResourcePolicyCommandInput | DescribeRuleGroupCommandInput | DescribeRuleGroupMetadataCommandInput | DescribeTLSInspectionConfigurationCommandInput | DescribeVpcEndpointAssociationCommandInput | DisassociateAvailabilityZonesCommandInput | DisassociateSubnetsCommandInput | GetAnalysisReportResultsCommandInput | ListAnalysisReportsCommandInput | ListFirewallPoliciesCommandInput | ListFirewallsCommandInput | ListFlowOperationResultsCommandInput | ListFlowOperationsCommandInput | ListRuleGroupsCommandInput | ListTLSInspectionConfigurationsCommandInput | ListTagsForResourceCommandInput | ListVpcEndpointAssociationsCommandInput | PutResourcePolicyCommandInput | RejectNetworkFirewallTransitGatewayAttachmentCommandInput | StartAnalysisReportCommandInput | StartFlowCaptureCommandInput | StartFlowFlushCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAvailabilityZoneChangeProtectionCommandInput | UpdateFirewallAnalysisSettingsCommandInput | UpdateFirewallDeleteProtectionCommandInput | UpdateFirewallDescriptionCommandInput | UpdateFirewallEncryptionConfigurationCommandInput | UpdateFirewallPolicyChangeProtectionCommandInput | UpdateFirewallPolicyCommandInput | UpdateLoggingConfigurationCommandInput | UpdateRuleGroupCommandInput | UpdateSubnetChangeProtectionCommandInput | UpdateTLSInspectionConfigurationCommandInput;
|
|
73
|
+
export type ServiceInputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandInput | AssociateAvailabilityZonesCommandInput | AssociateFirewallPolicyCommandInput | AssociateSubnetsCommandInput | CreateFirewallCommandInput | CreateFirewallPolicyCommandInput | CreateRuleGroupCommandInput | CreateTLSInspectionConfigurationCommandInput | CreateVpcEndpointAssociationCommandInput | DeleteFirewallCommandInput | DeleteFirewallPolicyCommandInput | DeleteNetworkFirewallTransitGatewayAttachmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleGroupCommandInput | DeleteTLSInspectionConfigurationCommandInput | DeleteVpcEndpointAssociationCommandInput | DescribeFirewallCommandInput | DescribeFirewallMetadataCommandInput | DescribeFirewallPolicyCommandInput | DescribeFlowOperationCommandInput | DescribeLoggingConfigurationCommandInput | DescribeResourcePolicyCommandInput | DescribeRuleGroupCommandInput | DescribeRuleGroupMetadataCommandInput | DescribeRuleGroupSummaryCommandInput | DescribeTLSInspectionConfigurationCommandInput | DescribeVpcEndpointAssociationCommandInput | DisassociateAvailabilityZonesCommandInput | DisassociateSubnetsCommandInput | GetAnalysisReportResultsCommandInput | ListAnalysisReportsCommandInput | ListFirewallPoliciesCommandInput | ListFirewallsCommandInput | ListFlowOperationResultsCommandInput | ListFlowOperationsCommandInput | ListRuleGroupsCommandInput | ListTLSInspectionConfigurationsCommandInput | ListTagsForResourceCommandInput | ListVpcEndpointAssociationsCommandInput | PutResourcePolicyCommandInput | RejectNetworkFirewallTransitGatewayAttachmentCommandInput | StartAnalysisReportCommandInput | StartFlowCaptureCommandInput | StartFlowFlushCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAvailabilityZoneChangeProtectionCommandInput | UpdateFirewallAnalysisSettingsCommandInput | UpdateFirewallDeleteProtectionCommandInput | UpdateFirewallDescriptionCommandInput | UpdateFirewallEncryptionConfigurationCommandInput | UpdateFirewallPolicyChangeProtectionCommandInput | UpdateFirewallPolicyCommandInput | UpdateLoggingConfigurationCommandInput | UpdateRuleGroupCommandInput | UpdateSubnetChangeProtectionCommandInput | UpdateTLSInspectionConfigurationCommandInput;
|
|
73
74
|
/**
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
|
-
export type ServiceOutputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput | AssociateAvailabilityZonesCommandOutput | AssociateFirewallPolicyCommandOutput | AssociateSubnetsCommandOutput | CreateFirewallCommandOutput | CreateFirewallPolicyCommandOutput | CreateRuleGroupCommandOutput | CreateTLSInspectionConfigurationCommandOutput | CreateVpcEndpointAssociationCommandOutput | DeleteFirewallCommandOutput | DeleteFirewallPolicyCommandOutput | DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleGroupCommandOutput | DeleteTLSInspectionConfigurationCommandOutput | DeleteVpcEndpointAssociationCommandOutput | DescribeFirewallCommandOutput | DescribeFirewallMetadataCommandOutput | DescribeFirewallPolicyCommandOutput | DescribeFlowOperationCommandOutput | DescribeLoggingConfigurationCommandOutput | DescribeResourcePolicyCommandOutput | DescribeRuleGroupCommandOutput | DescribeRuleGroupMetadataCommandOutput | DescribeTLSInspectionConfigurationCommandOutput | DescribeVpcEndpointAssociationCommandOutput | DisassociateAvailabilityZonesCommandOutput | DisassociateSubnetsCommandOutput | GetAnalysisReportResultsCommandOutput | ListAnalysisReportsCommandOutput | ListFirewallPoliciesCommandOutput | ListFirewallsCommandOutput | ListFlowOperationResultsCommandOutput | ListFlowOperationsCommandOutput | ListRuleGroupsCommandOutput | ListTLSInspectionConfigurationsCommandOutput | ListTagsForResourceCommandOutput | ListVpcEndpointAssociationsCommandOutput | PutResourcePolicyCommandOutput | RejectNetworkFirewallTransitGatewayAttachmentCommandOutput | StartAnalysisReportCommandOutput | StartFlowCaptureCommandOutput | StartFlowFlushCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAvailabilityZoneChangeProtectionCommandOutput | UpdateFirewallAnalysisSettingsCommandOutput | UpdateFirewallDeleteProtectionCommandOutput | UpdateFirewallDescriptionCommandOutput | UpdateFirewallEncryptionConfigurationCommandOutput | UpdateFirewallPolicyChangeProtectionCommandOutput | UpdateFirewallPolicyCommandOutput | UpdateLoggingConfigurationCommandOutput | UpdateRuleGroupCommandOutput | UpdateSubnetChangeProtectionCommandOutput | UpdateTLSInspectionConfigurationCommandOutput;
|
|
77
|
+
export type ServiceOutputTypes = AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput | AssociateAvailabilityZonesCommandOutput | AssociateFirewallPolicyCommandOutput | AssociateSubnetsCommandOutput | CreateFirewallCommandOutput | CreateFirewallPolicyCommandOutput | CreateRuleGroupCommandOutput | CreateTLSInspectionConfigurationCommandOutput | CreateVpcEndpointAssociationCommandOutput | DeleteFirewallCommandOutput | DeleteFirewallPolicyCommandOutput | DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleGroupCommandOutput | DeleteTLSInspectionConfigurationCommandOutput | DeleteVpcEndpointAssociationCommandOutput | DescribeFirewallCommandOutput | DescribeFirewallMetadataCommandOutput | DescribeFirewallPolicyCommandOutput | DescribeFlowOperationCommandOutput | DescribeLoggingConfigurationCommandOutput | DescribeResourcePolicyCommandOutput | DescribeRuleGroupCommandOutput | DescribeRuleGroupMetadataCommandOutput | DescribeRuleGroupSummaryCommandOutput | DescribeTLSInspectionConfigurationCommandOutput | DescribeVpcEndpointAssociationCommandOutput | DisassociateAvailabilityZonesCommandOutput | DisassociateSubnetsCommandOutput | GetAnalysisReportResultsCommandOutput | ListAnalysisReportsCommandOutput | ListFirewallPoliciesCommandOutput | ListFirewallsCommandOutput | ListFlowOperationResultsCommandOutput | ListFlowOperationsCommandOutput | ListRuleGroupsCommandOutput | ListTLSInspectionConfigurationsCommandOutput | ListTagsForResourceCommandOutput | ListVpcEndpointAssociationsCommandOutput | PutResourcePolicyCommandOutput | RejectNetworkFirewallTransitGatewayAttachmentCommandOutput | StartAnalysisReportCommandOutput | StartFlowCaptureCommandOutput | StartFlowFlushCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAvailabilityZoneChangeProtectionCommandOutput | UpdateFirewallAnalysisSettingsCommandOutput | UpdateFirewallDeleteProtectionCommandOutput | UpdateFirewallDescriptionCommandOutput | UpdateFirewallEncryptionConfigurationCommandOutput | UpdateFirewallPolicyChangeProtectionCommandOutput | UpdateFirewallPolicyCommandOutput | UpdateLoggingConfigurationCommandOutput | UpdateRuleGroupCommandOutput | UpdateSubnetChangeProtectionCommandOutput | UpdateTLSInspectionConfigurationCommandOutput;
|
|
77
78
|
/**
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
@@ -183,6 +183,11 @@ declare const CreateRuleGroupCommand_base: {
|
|
|
183
183
|
* SourceUpdateToken: "STRING_VALUE",
|
|
184
184
|
* },
|
|
185
185
|
* AnalyzeRuleGroup: true || false,
|
|
186
|
+
* SummaryConfiguration: { // SummaryConfiguration
|
|
187
|
+
* RuleOptions: [ // SummaryRuleOptions
|
|
188
|
+
* "SID" || "MSG" || "METADATA",
|
|
189
|
+
* ],
|
|
190
|
+
* },
|
|
186
191
|
* };
|
|
187
192
|
* const command = new CreateRuleGroupCommand(input);
|
|
188
193
|
* const response = await client.send(command);
|
|
@@ -223,6 +228,11 @@ declare const CreateRuleGroupCommand_base: {
|
|
|
223
228
|
* // AnalysisDetail: "STRING_VALUE",
|
|
224
229
|
* // },
|
|
225
230
|
* // ],
|
|
231
|
+
* // SummaryConfiguration: { // SummaryConfiguration
|
|
232
|
+
* // RuleOptions: [ // SummaryRuleOptions
|
|
233
|
+
* // "SID" || "MSG" || "METADATA",
|
|
234
|
+
* // ],
|
|
235
|
+
* // },
|
|
226
236
|
* // },
|
|
227
237
|
* // };
|
|
228
238
|
*
|
|
@@ -29,7 +29,7 @@ declare const DeleteNetworkFirewallTransitGatewayAttachmentCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Deletes a transit gateway attachment from a Network Firewall. Either the firewall owner or the transit gateway owner can delete the attachment.</p>
|
|
31
31
|
* <important>
|
|
32
|
-
* <p>After you delete a transit gateway attachment,
|
|
32
|
+
* <p>After you delete a transit gateway attachment, raffic will no longer flow through the firewall endpoints.</p>
|
|
33
33
|
* </important>
|
|
34
34
|
* <p>After you initiate the delete operation, use <a>DescribeFirewall</a> to monitor the deletion status.</p>
|
|
35
35
|
* @example
|
|
@@ -77,6 +77,11 @@ declare const DeleteRuleGroupCommand_base: {
|
|
|
77
77
|
* // AnalysisDetail: "STRING_VALUE",
|
|
78
78
|
* // },
|
|
79
79
|
* // ],
|
|
80
|
+
* // SummaryConfiguration: { // SummaryConfiguration
|
|
81
|
+
* // RuleOptions: [ // SummaryRuleOptions
|
|
82
|
+
* // "SID" || "MSG" || "METADATA",
|
|
83
|
+
* // ],
|
|
84
|
+
* // },
|
|
80
85
|
* // },
|
|
81
86
|
* // };
|
|
82
87
|
*
|
|
@@ -97,6 +97,7 @@ declare const DescribeFirewallPolicyCommand_base: {
|
|
|
97
97
|
* // Override: { // StatefulRuleGroupOverride
|
|
98
98
|
* // Action: "DROP_TO_ALERT",
|
|
99
99
|
* // },
|
|
100
|
+
* // DeepThreatInspection: true || false,
|
|
100
101
|
* // },
|
|
101
102
|
* // ],
|
|
102
103
|
* // StatefulDefaultActions: [ // StatefulActions
|
|
@@ -203,6 +203,11 @@ declare const DescribeRuleGroupCommand_base: {
|
|
|
203
203
|
* // AnalysisDetail: "STRING_VALUE",
|
|
204
204
|
* // },
|
|
205
205
|
* // ],
|
|
206
|
+
* // SummaryConfiguration: { // SummaryConfiguration
|
|
207
|
+
* // RuleOptions: [ // SummaryRuleOptions
|
|
208
|
+
* // "SID" || "MSG" || "METADATA",
|
|
209
|
+
* // ],
|
|
210
|
+
* // },
|
|
206
211
|
* // },
|
|
207
212
|
* // };
|
|
208
213
|
*
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DescribeRuleGroupSummaryRequest, DescribeRuleGroupSummaryResponse } from "../models/models_0";
|
|
4
|
+
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeRuleGroupSummaryCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeRuleGroupSummaryCommandInput extends DescribeRuleGroupSummaryRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeRuleGroupSummaryCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeRuleGroupSummaryCommandOutput extends DescribeRuleGroupSummaryResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeRuleGroupSummaryCommand_base: {
|
|
25
|
+
new (input: DescribeRuleGroupSummaryCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [DescribeRuleGroupSummaryCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput, NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns detailed information for a stateful rule group.</p>
|
|
31
|
+
* <p>For active threat defense Amazon Web Services managed rule groups, this operation provides insight into the protections enabled by the rule group, based on Suricata rule metadata fields. Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups.</p>
|
|
32
|
+
* <p>To modify how threat information appears in summaries, use the <code>SummaryConfiguration</code> parameter in <a>UpdateRuleGroup</a>.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { NetworkFirewallClient, DescribeRuleGroupSummaryCommand } from "@aws-sdk/client-network-firewall"; // ES Modules import
|
|
37
|
+
* // const { NetworkFirewallClient, DescribeRuleGroupSummaryCommand } = require("@aws-sdk/client-network-firewall"); // CommonJS import
|
|
38
|
+
* const client = new NetworkFirewallClient(config);
|
|
39
|
+
* const input = { // DescribeRuleGroupSummaryRequest
|
|
40
|
+
* RuleGroupName: "STRING_VALUE",
|
|
41
|
+
* RuleGroupArn: "STRING_VALUE",
|
|
42
|
+
* Type: "STATELESS" || "STATEFUL",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DescribeRuleGroupSummaryCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // DescribeRuleGroupSummaryResponse
|
|
47
|
+
* // RuleGroupName: "STRING_VALUE", // required
|
|
48
|
+
* // Description: "STRING_VALUE",
|
|
49
|
+
* // Summary: { // Summary
|
|
50
|
+
* // RuleSummaries: [ // RuleSummaries
|
|
51
|
+
* // { // RuleSummary
|
|
52
|
+
* // SID: "STRING_VALUE",
|
|
53
|
+
* // Msg: "STRING_VALUE",
|
|
54
|
+
* // Metadata: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param DescribeRuleGroupSummaryCommandInput - {@link DescribeRuleGroupSummaryCommandInput}
|
|
63
|
+
* @returns {@link DescribeRuleGroupSummaryCommandOutput}
|
|
64
|
+
* @see {@link DescribeRuleGroupSummaryCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link DescribeRuleGroupSummaryCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalServerError} (server fault)
|
|
69
|
+
* <p>Your request is valid, but Network Firewall couldn't perform the operation because of a
|
|
70
|
+
* system problem. Retry your request. </p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
73
|
+
* <p>The operation failed because of a problem with your request. Examples include: </p>
|
|
74
|
+
* <ul>
|
|
75
|
+
* <li>
|
|
76
|
+
* <p>You specified an unsupported parameter name or value.</p>
|
|
77
|
+
* </li>
|
|
78
|
+
* <li>
|
|
79
|
+
* <p>You tried to update a property with a value that isn't among the available
|
|
80
|
+
* types.</p>
|
|
81
|
+
* </li>
|
|
82
|
+
* <li>
|
|
83
|
+
* <p>Your request references an ARN that is malformed, or corresponds to a resource
|
|
84
|
+
* that isn't valid in the context of the request.</p>
|
|
85
|
+
* </li>
|
|
86
|
+
* </ul>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
89
|
+
* <p>Unable to locate a resource using the parameters that you provided.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
+
* <p>Unable to process the request due to throttling limitations.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link NetworkFirewallServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from NetworkFirewall service.</p>
|
|
96
|
+
*
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class DescribeRuleGroupSummaryCommand extends DescribeRuleGroupSummaryCommand_base {
|
|
101
|
+
/** @internal type navigation helper, not in runtime. */
|
|
102
|
+
protected static __types: {
|
|
103
|
+
api: {
|
|
104
|
+
input: DescribeRuleGroupSummaryRequest;
|
|
105
|
+
output: DescribeRuleGroupSummaryResponse;
|
|
106
|
+
};
|
|
107
|
+
sdk: {
|
|
108
|
+
input: DescribeRuleGroupSummaryCommandInput;
|
|
109
|
+
output: DescribeRuleGroupSummaryCommandOutput;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}
|
|
@@ -40,7 +40,7 @@ declare const ListRuleGroupsCommand_base: {
|
|
|
40
40
|
* NextToken: "STRING_VALUE",
|
|
41
41
|
* MaxResults: Number("int"),
|
|
42
42
|
* Scope: "MANAGED" || "ACCOUNT",
|
|
43
|
-
* ManagedType: "AWS_MANAGED_THREAT_SIGNATURES" || "AWS_MANAGED_DOMAIN_LISTS",
|
|
43
|
+
* ManagedType: "AWS_MANAGED_THREAT_SIGNATURES" || "AWS_MANAGED_DOMAIN_LISTS" || "ACTIVE_THREAT_DEFENSE",
|
|
44
44
|
* Type: "STATELESS" || "STATEFUL",
|
|
45
45
|
* };
|
|
46
46
|
* const command = new ListRuleGroupsCommand(input);
|
|
@@ -28,7 +28,7 @@ declare const RejectNetworkFirewallTransitGatewayAttachmentCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Rejects a transit gateway attachment request for Network Firewall. When you reject the attachment request, Network Firewall cancels the creation of routing components between the transit gateway and firewall endpoints.</p>
|
|
31
|
-
* <p>Only the
|
|
31
|
+
* <p>Only the firewall owner can reject the attachment. After rejection, no traffic will flow through the firewall endpoints for this attachment.</p>
|
|
32
32
|
* <p>Use <a>DescribeFirewall</a> to monitor the rejection status. To accept the attachment instead of rejecting it, use <a>AcceptNetworkFirewallTransitGatewayAttachment</a>.</p>
|
|
33
33
|
* <note>
|
|
34
34
|
* <p>Once rejected, you cannot reverse this action. To establish connectivity, you must create a new transit gateway-attached firewall.</p>
|
|
@@ -180,6 +180,11 @@ declare const UpdateRuleGroupCommand_base: {
|
|
|
180
180
|
* SourceUpdateToken: "STRING_VALUE",
|
|
181
181
|
* },
|
|
182
182
|
* AnalyzeRuleGroup: true || false,
|
|
183
|
+
* SummaryConfiguration: { // SummaryConfiguration
|
|
184
|
+
* RuleOptions: [ // SummaryRuleOptions
|
|
185
|
+
* "SID" || "MSG" || "METADATA",
|
|
186
|
+
* ],
|
|
187
|
+
* },
|
|
183
188
|
* };
|
|
184
189
|
* const command = new UpdateRuleGroupCommand(input);
|
|
185
190
|
* const response = await client.send(command);
|
|
@@ -220,6 +225,11 @@ declare const UpdateRuleGroupCommand_base: {
|
|
|
220
225
|
* // AnalysisDetail: "STRING_VALUE",
|
|
221
226
|
* // },
|
|
222
227
|
* // ],
|
|
228
|
+
* // SummaryConfiguration: { // SummaryConfiguration
|
|
229
|
+
* // RuleOptions: [ // SummaryRuleOptions
|
|
230
|
+
* // "SID" || "MSG" || "METADATA",
|
|
231
|
+
* // ],
|
|
232
|
+
* // },
|
|
223
233
|
* // },
|
|
224
234
|
* // };
|
|
225
235
|
*
|
|
@@ -22,6 +22,7 @@ export * from "./DescribeLoggingConfigurationCommand";
|
|
|
22
22
|
export * from "./DescribeResourcePolicyCommand";
|
|
23
23
|
export * from "./DescribeRuleGroupCommand";
|
|
24
24
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
25
|
+
export * from "./DescribeRuleGroupSummaryCommand";
|
|
25
26
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
26
27
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
27
28
|
export * from "./DisassociateAvailabilityZonesCommand";
|
|
@@ -1538,6 +1538,15 @@ export interface StatefulRuleGroupReference {
|
|
|
1538
1538
|
* @public
|
|
1539
1539
|
*/
|
|
1540
1540
|
Override?: StatefulRuleGroupOverride | undefined;
|
|
1541
|
+
/**
|
|
1542
|
+
* <p>Network Firewall plans to augment the active threat defense managed rule group with an additional deep threat inspection capability. When this capability is released, Amazon Web Services will analyze service logs of network traffic processed by these rule groups to identify threat indicators across customers.
|
|
1543
|
+
* Amazon Web Services will use these threat indicators to improve the active threat defense managed rule groups and protect the security of Amazon Web Services customers and services.</p>
|
|
1544
|
+
* <note>
|
|
1545
|
+
* <p>Customers can opt-out of deep threat inspection at any time through the Network Firewall console or API. When customers opt out, Network Firewall will not use the network traffic processed by those customers' active threat defense rule groups for rule group improvement.</p>
|
|
1546
|
+
* </note>
|
|
1547
|
+
* @public
|
|
1548
|
+
*/
|
|
1549
|
+
DeepThreatInspection?: boolean | undefined;
|
|
1541
1550
|
}
|
|
1542
1551
|
/**
|
|
1543
1552
|
* <p>An optional, non-standard action to use for stateless packet handling. You can define
|
|
@@ -2462,6 +2471,37 @@ export interface SourceMetadata {
|
|
|
2462
2471
|
*/
|
|
2463
2472
|
SourceUpdateToken?: string | undefined;
|
|
2464
2473
|
}
|
|
2474
|
+
/**
|
|
2475
|
+
* @public
|
|
2476
|
+
* @enum
|
|
2477
|
+
*/
|
|
2478
|
+
export declare const SummaryRuleOption: {
|
|
2479
|
+
readonly METADATA: "METADATA";
|
|
2480
|
+
readonly MSG: "MSG";
|
|
2481
|
+
readonly SID: "SID";
|
|
2482
|
+
};
|
|
2483
|
+
/**
|
|
2484
|
+
* @public
|
|
2485
|
+
*/
|
|
2486
|
+
export type SummaryRuleOption = (typeof SummaryRuleOption)[keyof typeof SummaryRuleOption];
|
|
2487
|
+
/**
|
|
2488
|
+
* <p>A complex type that specifies which Suricata rule metadata fields to use when displaying threat information. Contains:</p>
|
|
2489
|
+
* <ul>
|
|
2490
|
+
* <li>
|
|
2491
|
+
* <p>
|
|
2492
|
+
* <code>RuleOptions</code> - The Suricata rule options fields to extract and display</p>
|
|
2493
|
+
* </li>
|
|
2494
|
+
* </ul>
|
|
2495
|
+
* <p>These settings affect how threat information appears in both the console and API responses. Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups.</p>
|
|
2496
|
+
* @public
|
|
2497
|
+
*/
|
|
2498
|
+
export interface SummaryConfiguration {
|
|
2499
|
+
/**
|
|
2500
|
+
* <p>Specifies the selected rule options returned by <a>DescribeRuleGroupSummary</a>.</p>
|
|
2501
|
+
* @public
|
|
2502
|
+
*/
|
|
2503
|
+
RuleOptions?: SummaryRuleOption[] | undefined;
|
|
2504
|
+
}
|
|
2465
2505
|
/**
|
|
2466
2506
|
* @public
|
|
2467
2507
|
* @enum
|
|
@@ -2587,6 +2627,28 @@ export interface CreateRuleGroupRequest {
|
|
|
2587
2627
|
* @public
|
|
2588
2628
|
*/
|
|
2589
2629
|
AnalyzeRuleGroup?: boolean | undefined;
|
|
2630
|
+
/**
|
|
2631
|
+
* <p>An object that contains a <code>RuleOptions</code> array of strings.
|
|
2632
|
+
* You use <code>RuleOptions</code> to determine which of the following <a>RuleSummary</a> values are returned in response to <code>DescribeRuleGroupSummary</code>.</p>
|
|
2633
|
+
* <ul>
|
|
2634
|
+
* <li>
|
|
2635
|
+
* <p>
|
|
2636
|
+
* <code>Metadata</code> - returns</p>
|
|
2637
|
+
* </li>
|
|
2638
|
+
* <li>
|
|
2639
|
+
* <p>
|
|
2640
|
+
* <code>Msg</code>
|
|
2641
|
+
* </p>
|
|
2642
|
+
* </li>
|
|
2643
|
+
* <li>
|
|
2644
|
+
* <p>
|
|
2645
|
+
* <code>SID</code>
|
|
2646
|
+
* </p>
|
|
2647
|
+
* </li>
|
|
2648
|
+
* </ul>
|
|
2649
|
+
* @public
|
|
2650
|
+
*/
|
|
2651
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
2590
2652
|
}
|
|
2591
2653
|
/**
|
|
2592
2654
|
* <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>
|
|
@@ -2681,6 +2743,20 @@ export interface RuleGroupResponse {
|
|
|
2681
2743
|
* @public
|
|
2682
2744
|
*/
|
|
2683
2745
|
AnalysisResults?: AnalysisResult[] | undefined;
|
|
2746
|
+
/**
|
|
2747
|
+
* <p>A complex type containing the currently selected rule option fields that will be displayed for rule summarization returned by <a>DescribeRuleGroupSummary</a>.</p>
|
|
2748
|
+
* <ul>
|
|
2749
|
+
* <li>
|
|
2750
|
+
* <p>The <code>RuleOptions</code> specified in <a>SummaryConfiguration</a>
|
|
2751
|
+
* </p>
|
|
2752
|
+
* </li>
|
|
2753
|
+
* <li>
|
|
2754
|
+
* <p>Rule metadata organization preferences</p>
|
|
2755
|
+
* </li>
|
|
2756
|
+
* </ul>
|
|
2757
|
+
* @public
|
|
2758
|
+
*/
|
|
2759
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
2684
2760
|
}
|
|
2685
2761
|
/**
|
|
2686
2762
|
* @public
|
|
@@ -3910,6 +3986,113 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
3910
3986
|
*/
|
|
3911
3987
|
LastModifiedTime?: Date | undefined;
|
|
3912
3988
|
}
|
|
3989
|
+
/**
|
|
3990
|
+
* @public
|
|
3991
|
+
*/
|
|
3992
|
+
export interface DescribeRuleGroupSummaryRequest {
|
|
3993
|
+
/**
|
|
3994
|
+
* <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
|
|
3995
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3996
|
+
* @public
|
|
3997
|
+
*/
|
|
3998
|
+
RuleGroupName?: string | undefined;
|
|
3999
|
+
/**
|
|
4000
|
+
* <p>Required. The Amazon Resource Name (ARN) of the rule group.</p>
|
|
4001
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
4002
|
+
* @public
|
|
4003
|
+
*/
|
|
4004
|
+
RuleGroupArn?: string | undefined;
|
|
4005
|
+
/**
|
|
4006
|
+
* <p>The type of rule group you want a summary for. This is a required field.</p>
|
|
4007
|
+
* <p>Valid value: <code>STATEFUL</code>
|
|
4008
|
+
* </p>
|
|
4009
|
+
* <p>Note that <code>STATELESS</code> exists but is not currently supported. If you provide <code>STATELESS</code>, an exception is returned.</p>
|
|
4010
|
+
* @public
|
|
4011
|
+
*/
|
|
4012
|
+
Type?: RuleGroupType | undefined;
|
|
4013
|
+
}
|
|
4014
|
+
/**
|
|
4015
|
+
* <p>A complex type containing details about a Suricata rule. Contains:</p>
|
|
4016
|
+
* <ul>
|
|
4017
|
+
* <li>
|
|
4018
|
+
* <p>
|
|
4019
|
+
* <code>SID</code>
|
|
4020
|
+
* </p>
|
|
4021
|
+
* </li>
|
|
4022
|
+
* <li>
|
|
4023
|
+
* <p>
|
|
4024
|
+
* <code>Msg</code>
|
|
4025
|
+
* </p>
|
|
4026
|
+
* </li>
|
|
4027
|
+
* <li>
|
|
4028
|
+
* <p>
|
|
4029
|
+
* <code>Metadata</code>
|
|
4030
|
+
* </p>
|
|
4031
|
+
* </li>
|
|
4032
|
+
* </ul>
|
|
4033
|
+
* <p>Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups.</p>
|
|
4034
|
+
* @public
|
|
4035
|
+
*/
|
|
4036
|
+
export interface RuleSummary {
|
|
4037
|
+
/**
|
|
4038
|
+
* <p>The unique identifier (Signature ID) of the Suricata rule.</p>
|
|
4039
|
+
* @public
|
|
4040
|
+
*/
|
|
4041
|
+
SID?: string | undefined;
|
|
4042
|
+
/**
|
|
4043
|
+
* <p>The contents taken from the rule's msg field.</p>
|
|
4044
|
+
* @public
|
|
4045
|
+
*/
|
|
4046
|
+
Msg?: string | undefined;
|
|
4047
|
+
/**
|
|
4048
|
+
* <p>The contents of the rule's metadata.</p>
|
|
4049
|
+
* @public
|
|
4050
|
+
*/
|
|
4051
|
+
Metadata?: string | undefined;
|
|
4052
|
+
}
|
|
4053
|
+
/**
|
|
4054
|
+
* <p>A complex type containing summaries of security protections provided by a rule group.</p>
|
|
4055
|
+
* <p>Network Firewall extracts this information from selected fields in the rule group's Suricata rules, based on your <a>SummaryConfiguration</a> settings.</p>
|
|
4056
|
+
* @public
|
|
4057
|
+
*/
|
|
4058
|
+
export interface Summary {
|
|
4059
|
+
/**
|
|
4060
|
+
* <p>An array of <a>RuleSummary</a> objects containing individual rule details that had been configured by the rulegroup's SummaryConfiguration.</p>
|
|
4061
|
+
* @public
|
|
4062
|
+
*/
|
|
4063
|
+
RuleSummaries?: RuleSummary[] | undefined;
|
|
4064
|
+
}
|
|
4065
|
+
/**
|
|
4066
|
+
* @public
|
|
4067
|
+
*/
|
|
4068
|
+
export interface DescribeRuleGroupSummaryResponse {
|
|
4069
|
+
/**
|
|
4070
|
+
* <p>The descriptive name of the rule group. You can't change the name of a rule group after you create it.</p>
|
|
4071
|
+
* @public
|
|
4072
|
+
*/
|
|
4073
|
+
RuleGroupName: string | undefined;
|
|
4074
|
+
/**
|
|
4075
|
+
* <p>A description of the rule group. </p>
|
|
4076
|
+
* @public
|
|
4077
|
+
*/
|
|
4078
|
+
Description?: string | undefined;
|
|
4079
|
+
/**
|
|
4080
|
+
* <p>A complex type that contains rule information based on the rule group's configured summary settings. The content varies depending on the fields that you specified to extract in your SummaryConfiguration. When you haven't configured any summary settings, this returns an empty array. The response might include:</p>
|
|
4081
|
+
* <ul>
|
|
4082
|
+
* <li>
|
|
4083
|
+
* <p>Rule identifiers</p>
|
|
4084
|
+
* </li>
|
|
4085
|
+
* <li>
|
|
4086
|
+
* <p>Rule descriptions</p>
|
|
4087
|
+
* </li>
|
|
4088
|
+
* <li>
|
|
4089
|
+
* <p>Any metadata fields that you specified in your SummaryConfiguration</p>
|
|
4090
|
+
* </li>
|
|
4091
|
+
* </ul>
|
|
4092
|
+
* @public
|
|
4093
|
+
*/
|
|
4094
|
+
Summary?: Summary | undefined;
|
|
4095
|
+
}
|
|
3913
4096
|
/**
|
|
3914
4097
|
* @public
|
|
3915
4098
|
*/
|
|
@@ -4596,6 +4779,7 @@ export interface ListFlowOperationsResponse {
|
|
|
4596
4779
|
* @enum
|
|
4597
4780
|
*/
|
|
4598
4781
|
export declare const ResourceManagedType: {
|
|
4782
|
+
readonly ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE";
|
|
4599
4783
|
readonly AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS";
|
|
4600
4784
|
readonly AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES";
|
|
4601
4785
|
};
|
|
@@ -5731,6 +5915,12 @@ export interface UpdateRuleGroupRequest {
|
|
|
5731
5915
|
* @public
|
|
5732
5916
|
*/
|
|
5733
5917
|
AnalyzeRuleGroup?: boolean | undefined;
|
|
5918
|
+
/**
|
|
5919
|
+
* <p>Updates the selected summary configuration for a rule group.</p>
|
|
5920
|
+
* <p>Changes affect subsequent responses from <a>DescribeRuleGroupSummary</a>.</p>
|
|
5921
|
+
* @public
|
|
5922
|
+
*/
|
|
5923
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
5734
5924
|
}
|
|
5735
5925
|
/**
|
|
5736
5926
|
* @public
|
|
@@ -24,6 +24,7 @@ import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationC
|
|
|
24
24
|
import { DescribeResourcePolicyCommandInput, DescribeResourcePolicyCommandOutput } from "../commands/DescribeResourcePolicyCommand";
|
|
25
25
|
import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from "../commands/DescribeRuleGroupCommand";
|
|
26
26
|
import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "../commands/DescribeRuleGroupMetadataCommand";
|
|
27
|
+
import { DescribeRuleGroupSummaryCommandInput, DescribeRuleGroupSummaryCommandOutput } from "../commands/DescribeRuleGroupSummaryCommand";
|
|
27
28
|
import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "../commands/DescribeTLSInspectionConfigurationCommand";
|
|
28
29
|
import { DescribeVpcEndpointAssociationCommandInput, DescribeVpcEndpointAssociationCommandOutput } from "../commands/DescribeVpcEndpointAssociationCommand";
|
|
29
30
|
import { DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput } from "../commands/DisassociateAvailabilityZonesCommand";
|
|
@@ -152,6 +153,10 @@ export declare const se_DescribeRuleGroupCommand: (input: DescribeRuleGroupComma
|
|
|
152
153
|
* serializeAws_json1_0DescribeRuleGroupMetadataCommand
|
|
153
154
|
*/
|
|
154
155
|
export declare const se_DescribeRuleGroupMetadataCommand: (input: DescribeRuleGroupMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
156
|
+
/**
|
|
157
|
+
* serializeAws_json1_0DescribeRuleGroupSummaryCommand
|
|
158
|
+
*/
|
|
159
|
+
export declare const se_DescribeRuleGroupSummaryCommand: (input: DescribeRuleGroupSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
155
160
|
/**
|
|
156
161
|
* serializeAws_json1_0DescribeTLSInspectionConfigurationCommand
|
|
157
162
|
*/
|
|
@@ -376,6 +381,10 @@ export declare const de_DescribeRuleGroupCommand: (output: __HttpResponse, conte
|
|
|
376
381
|
* deserializeAws_json1_0DescribeRuleGroupMetadataCommand
|
|
377
382
|
*/
|
|
378
383
|
export declare const de_DescribeRuleGroupMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuleGroupMetadataCommandOutput>;
|
|
384
|
+
/**
|
|
385
|
+
* deserializeAws_json1_0DescribeRuleGroupSummaryCommand
|
|
386
|
+
*/
|
|
387
|
+
export declare const de_DescribeRuleGroupSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
379
388
|
/**
|
|
380
389
|
* deserializeAws_json1_0DescribeTLSInspectionConfigurationCommand
|
|
381
390
|
*/
|
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
DescribeRuleGroupMetadataCommandInput,
|
|
96
96
|
DescribeRuleGroupMetadataCommandOutput,
|
|
97
97
|
} from "./commands/DescribeRuleGroupMetadataCommand";
|
|
98
|
+
import {
|
|
99
|
+
DescribeRuleGroupSummaryCommandInput,
|
|
100
|
+
DescribeRuleGroupSummaryCommandOutput,
|
|
101
|
+
} from "./commands/DescribeRuleGroupSummaryCommand";
|
|
98
102
|
import {
|
|
99
103
|
DescribeTLSInspectionConfigurationCommandInput,
|
|
100
104
|
DescribeTLSInspectionConfigurationCommandOutput,
|
|
@@ -559,6 +563,20 @@ export interface NetworkFirewall {
|
|
|
559
563
|
options: __HttpHandlerOptions,
|
|
560
564
|
cb: (err: any, data?: DescribeRuleGroupMetadataCommandOutput) => void
|
|
561
565
|
): void;
|
|
566
|
+
describeRuleGroupSummary(): Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
567
|
+
describeRuleGroupSummary(
|
|
568
|
+
args: DescribeRuleGroupSummaryCommandInput,
|
|
569
|
+
options?: __HttpHandlerOptions
|
|
570
|
+
): Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
571
|
+
describeRuleGroupSummary(
|
|
572
|
+
args: DescribeRuleGroupSummaryCommandInput,
|
|
573
|
+
cb: (err: any, data?: DescribeRuleGroupSummaryCommandOutput) => void
|
|
574
|
+
): void;
|
|
575
|
+
describeRuleGroupSummary(
|
|
576
|
+
args: DescribeRuleGroupSummaryCommandInput,
|
|
577
|
+
options: __HttpHandlerOptions,
|
|
578
|
+
cb: (err: any, data?: DescribeRuleGroupSummaryCommandOutput) => void
|
|
579
|
+
): void;
|
|
562
580
|
describeTLSInspectionConfiguration(): Promise<DescribeTLSInspectionConfigurationCommandOutput>;
|
|
563
581
|
describeTLSInspectionConfiguration(
|
|
564
582
|
args: DescribeTLSInspectionConfigurationCommandInput,
|
|
@@ -141,6 +141,10 @@ import {
|
|
|
141
141
|
DescribeRuleGroupMetadataCommandInput,
|
|
142
142
|
DescribeRuleGroupMetadataCommandOutput,
|
|
143
143
|
} from "./commands/DescribeRuleGroupMetadataCommand";
|
|
144
|
+
import {
|
|
145
|
+
DescribeRuleGroupSummaryCommandInput,
|
|
146
|
+
DescribeRuleGroupSummaryCommandOutput,
|
|
147
|
+
} from "./commands/DescribeRuleGroupSummaryCommand";
|
|
144
148
|
import {
|
|
145
149
|
DescribeTLSInspectionConfigurationCommandInput,
|
|
146
150
|
DescribeTLSInspectionConfigurationCommandOutput,
|
|
@@ -301,6 +305,7 @@ export type ServiceInputTypes =
|
|
|
301
305
|
| DescribeResourcePolicyCommandInput
|
|
302
306
|
| DescribeRuleGroupCommandInput
|
|
303
307
|
| DescribeRuleGroupMetadataCommandInput
|
|
308
|
+
| DescribeRuleGroupSummaryCommandInput
|
|
304
309
|
| DescribeTLSInspectionConfigurationCommandInput
|
|
305
310
|
| DescribeVpcEndpointAssociationCommandInput
|
|
306
311
|
| DisassociateAvailabilityZonesCommandInput
|
|
@@ -358,6 +363,7 @@ export type ServiceOutputTypes =
|
|
|
358
363
|
| DescribeResourcePolicyCommandOutput
|
|
359
364
|
| DescribeRuleGroupCommandOutput
|
|
360
365
|
| DescribeRuleGroupMetadataCommandOutput
|
|
366
|
+
| DescribeRuleGroupSummaryCommandOutput
|
|
361
367
|
| DescribeTLSInspectionConfigurationCommandOutput
|
|
362
368
|
| DescribeVpcEndpointAssociationCommandOutput
|
|
363
369
|
| DisassociateAvailabilityZonesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeRuleGroupSummaryRequest,
|
|
5
|
+
DescribeRuleGroupSummaryResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeRuleGroupSummaryCommandInput
|
|
15
|
+
extends DescribeRuleGroupSummaryRequest {}
|
|
16
|
+
export interface DescribeRuleGroupSummaryCommandOutput
|
|
17
|
+
extends DescribeRuleGroupSummaryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeRuleGroupSummaryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeRuleGroupSummaryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeRuleGroupSummaryCommandInput,
|
|
24
|
+
DescribeRuleGroupSummaryCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeRuleGroupSummaryCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeRuleGroupSummaryCommandInput,
|
|
33
|
+
DescribeRuleGroupSummaryCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeRuleGroupSummaryCommand extends DescribeRuleGroupSummaryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeRuleGroupSummaryRequest;
|
|
44
|
+
output: DescribeRuleGroupSummaryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeRuleGroupSummaryCommandInput;
|
|
48
|
+
output: DescribeRuleGroupSummaryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -22,6 +22,7 @@ export * from "./DescribeLoggingConfigurationCommand";
|
|
|
22
22
|
export * from "./DescribeResourcePolicyCommand";
|
|
23
23
|
export * from "./DescribeRuleGroupCommand";
|
|
24
24
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
25
|
+
export * from "./DescribeRuleGroupSummaryCommand";
|
|
25
26
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
26
27
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
27
28
|
export * from "./DisassociateAvailabilityZonesCommand";
|
|
@@ -367,6 +367,7 @@ export interface StatefulRuleGroupReference {
|
|
|
367
367
|
ResourceArn: string | undefined;
|
|
368
368
|
Priority?: number | undefined;
|
|
369
369
|
Override?: StatefulRuleGroupOverride | undefined;
|
|
370
|
+
DeepThreatInspection?: boolean | undefined;
|
|
370
371
|
}
|
|
371
372
|
export interface CustomAction {
|
|
372
373
|
ActionName: string | undefined;
|
|
@@ -562,6 +563,16 @@ export interface SourceMetadata {
|
|
|
562
563
|
SourceArn?: string | undefined;
|
|
563
564
|
SourceUpdateToken?: string | undefined;
|
|
564
565
|
}
|
|
566
|
+
export declare const SummaryRuleOption: {
|
|
567
|
+
readonly METADATA: "METADATA";
|
|
568
|
+
readonly MSG: "MSG";
|
|
569
|
+
readonly SID: "SID";
|
|
570
|
+
};
|
|
571
|
+
export type SummaryRuleOption =
|
|
572
|
+
(typeof SummaryRuleOption)[keyof typeof SummaryRuleOption];
|
|
573
|
+
export interface SummaryConfiguration {
|
|
574
|
+
RuleOptions?: SummaryRuleOption[] | undefined;
|
|
575
|
+
}
|
|
565
576
|
export declare const RuleGroupType: {
|
|
566
577
|
readonly STATEFUL: "STATEFUL";
|
|
567
578
|
readonly STATELESS: "STATELESS";
|
|
@@ -579,6 +590,7 @@ export interface CreateRuleGroupRequest {
|
|
|
579
590
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
580
591
|
SourceMetadata?: SourceMetadata | undefined;
|
|
581
592
|
AnalyzeRuleGroup?: boolean | undefined;
|
|
593
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
582
594
|
}
|
|
583
595
|
export interface RuleGroupResponse {
|
|
584
596
|
RuleGroupArn: string | undefined;
|
|
@@ -596,6 +608,7 @@ export interface RuleGroupResponse {
|
|
|
596
608
|
SnsTopic?: string | undefined;
|
|
597
609
|
LastModifiedTime?: Date | undefined;
|
|
598
610
|
AnalysisResults?: AnalysisResult[] | undefined;
|
|
611
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
599
612
|
}
|
|
600
613
|
export interface CreateRuleGroupResponse {
|
|
601
614
|
UpdateToken: string | undefined;
|
|
@@ -876,6 +889,24 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
876
889
|
StatefulRuleOptions?: StatefulRuleOptions | undefined;
|
|
877
890
|
LastModifiedTime?: Date | undefined;
|
|
878
891
|
}
|
|
892
|
+
export interface DescribeRuleGroupSummaryRequest {
|
|
893
|
+
RuleGroupName?: string | undefined;
|
|
894
|
+
RuleGroupArn?: string | undefined;
|
|
895
|
+
Type?: RuleGroupType | undefined;
|
|
896
|
+
}
|
|
897
|
+
export interface RuleSummary {
|
|
898
|
+
SID?: string | undefined;
|
|
899
|
+
Msg?: string | undefined;
|
|
900
|
+
Metadata?: string | undefined;
|
|
901
|
+
}
|
|
902
|
+
export interface Summary {
|
|
903
|
+
RuleSummaries?: RuleSummary[] | undefined;
|
|
904
|
+
}
|
|
905
|
+
export interface DescribeRuleGroupSummaryResponse {
|
|
906
|
+
RuleGroupName: string | undefined;
|
|
907
|
+
Description?: string | undefined;
|
|
908
|
+
Summary?: Summary | undefined;
|
|
909
|
+
}
|
|
879
910
|
export interface DescribeTLSInspectionConfigurationRequest {
|
|
880
911
|
TLSInspectionConfigurationArn?: string | undefined;
|
|
881
912
|
TLSInspectionConfigurationName?: string | undefined;
|
|
@@ -1021,6 +1052,7 @@ export interface ListFlowOperationsResponse {
|
|
|
1021
1052
|
NextToken?: string | undefined;
|
|
1022
1053
|
}
|
|
1023
1054
|
export declare const ResourceManagedType: {
|
|
1055
|
+
readonly ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE";
|
|
1024
1056
|
readonly AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS";
|
|
1025
1057
|
readonly AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES";
|
|
1026
1058
|
};
|
|
@@ -1266,6 +1298,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
1266
1298
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1267
1299
|
SourceMetadata?: SourceMetadata | undefined;
|
|
1268
1300
|
AnalyzeRuleGroup?: boolean | undefined;
|
|
1301
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
1269
1302
|
}
|
|
1270
1303
|
export interface UpdateRuleGroupResponse {
|
|
1271
1304
|
UpdateToken: string | undefined;
|
|
@@ -99,6 +99,10 @@ import {
|
|
|
99
99
|
DescribeRuleGroupMetadataCommandInput,
|
|
100
100
|
DescribeRuleGroupMetadataCommandOutput,
|
|
101
101
|
} from "../commands/DescribeRuleGroupMetadataCommand";
|
|
102
|
+
import {
|
|
103
|
+
DescribeRuleGroupSummaryCommandInput,
|
|
104
|
+
DescribeRuleGroupSummaryCommandOutput,
|
|
105
|
+
} from "../commands/DescribeRuleGroupSummaryCommand";
|
|
102
106
|
import {
|
|
103
107
|
DescribeTLSInspectionConfigurationCommandInput,
|
|
104
108
|
DescribeTLSInspectionConfigurationCommandOutput,
|
|
@@ -323,6 +327,10 @@ export declare const se_DescribeRuleGroupMetadataCommand: (
|
|
|
323
327
|
input: DescribeRuleGroupMetadataCommandInput,
|
|
324
328
|
context: __SerdeContext
|
|
325
329
|
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const se_DescribeRuleGroupSummaryCommand: (
|
|
331
|
+
input: DescribeRuleGroupSummaryCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
326
334
|
export declare const se_DescribeTLSInspectionConfigurationCommand: (
|
|
327
335
|
input: DescribeTLSInspectionConfigurationCommandInput,
|
|
328
336
|
context: __SerdeContext
|
|
@@ -547,6 +555,10 @@ export declare const de_DescribeRuleGroupMetadataCommand: (
|
|
|
547
555
|
output: __HttpResponse,
|
|
548
556
|
context: __SerdeContext
|
|
549
557
|
) => Promise<DescribeRuleGroupMetadataCommandOutput>;
|
|
558
|
+
export declare const de_DescribeRuleGroupSummaryCommand: (
|
|
559
|
+
output: __HttpResponse,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
550
562
|
export declare const de_DescribeTLSInspectionConfigurationCommand: (
|
|
551
563
|
output: __HttpResponse,
|
|
552
564
|
context: __SerdeContext
|
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.831.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-network-firewall",
|