@aws-sdk/client-securityhub 3.454.0 → 3.459.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/README.md +163 -67
  2. package/dist-cjs/SecurityHub.js +24 -0
  3. package/dist-cjs/commands/BatchGetConfigurationPolicyAssociationsCommand.js +51 -0
  4. package/dist-cjs/commands/CreateConfigurationPolicyCommand.js +51 -0
  5. package/dist-cjs/commands/DeleteConfigurationPolicyCommand.js +51 -0
  6. package/dist-cjs/commands/GetConfigurationPolicyAssociationCommand.js +51 -0
  7. package/dist-cjs/commands/GetConfigurationPolicyCommand.js +51 -0
  8. package/dist-cjs/commands/GetSecurityControlDefinitionCommand.js +51 -0
  9. package/dist-cjs/commands/ListConfigurationPoliciesCommand.js +51 -0
  10. package/dist-cjs/commands/ListConfigurationPolicyAssociationsCommand.js +51 -0
  11. package/dist-cjs/commands/StartConfigurationPolicyAssociationCommand.js +51 -0
  12. package/dist-cjs/commands/StartConfigurationPolicyDisassociationCommand.js +51 -0
  13. package/dist-cjs/commands/UpdateConfigurationPolicyCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateSecurityControlCommand.js +51 -0
  15. package/dist-cjs/commands/index.js +12 -0
  16. package/dist-cjs/models/models_0.js +10 -1
  17. package/dist-cjs/models/models_2.js +104 -1
  18. package/dist-cjs/pagination/ListConfigurationPoliciesPaginator.js +29 -0
  19. package/dist-cjs/pagination/ListConfigurationPolicyAssociationsPaginator.js +29 -0
  20. package/dist-cjs/pagination/index.js +2 -0
  21. package/dist-cjs/protocols/Aws_restJson1.js +1283 -31
  22. package/dist-es/SecurityHub.js +24 -0
  23. package/dist-es/commands/BatchGetConfigurationPolicyAssociationsCommand.js +47 -0
  24. package/dist-es/commands/CreateConfigurationPolicyCommand.js +47 -0
  25. package/dist-es/commands/DeleteConfigurationPolicyCommand.js +47 -0
  26. package/dist-es/commands/GetConfigurationPolicyAssociationCommand.js +47 -0
  27. package/dist-es/commands/GetConfigurationPolicyCommand.js +47 -0
  28. package/dist-es/commands/GetSecurityControlDefinitionCommand.js +47 -0
  29. package/dist-es/commands/ListConfigurationPoliciesCommand.js +47 -0
  30. package/dist-es/commands/ListConfigurationPolicyAssociationsCommand.js +47 -0
  31. package/dist-es/commands/StartConfigurationPolicyAssociationCommand.js +47 -0
  32. package/dist-es/commands/StartConfigurationPolicyDisassociationCommand.js +47 -0
  33. package/dist-es/commands/UpdateConfigurationPolicyCommand.js +47 -0
  34. package/dist-es/commands/UpdateSecurityControlCommand.js +47 -0
  35. package/dist-es/commands/index.js +12 -0
  36. package/dist-es/models/models_0.js +9 -0
  37. package/dist-es/models/models_2.js +102 -0
  38. package/dist-es/pagination/ListConfigurationPoliciesPaginator.js +25 -0
  39. package/dist-es/pagination/ListConfigurationPolicyAssociationsPaginator.js +25 -0
  40. package/dist-es/pagination/index.js +2 -0
  41. package/dist-es/protocols/Aws_restJson1.js +1258 -31
  42. package/dist-types/SecurityHub.d.ts +84 -0
  43. package/dist-types/SecurityHubClient.d.ts +14 -2
  44. package/dist-types/commands/BatchDisableStandardsCommand.d.ts +3 -0
  45. package/dist-types/commands/BatchEnableStandardsCommand.d.ts +3 -0
  46. package/dist-types/commands/BatchGetAutomationRulesCommand.d.ts +7 -0
  47. package/dist-types/commands/BatchGetConfigurationPolicyAssociationsCommand.d.ts +128 -0
  48. package/dist-types/commands/BatchGetSecurityControlsCommand.d.ts +45 -2
  49. package/dist-types/commands/BatchImportFindingsCommand.d.ts +13 -3
  50. package/dist-types/commands/BatchUpdateAutomationRulesCommand.d.ts +7 -0
  51. package/dist-types/commands/BatchUpdateStandardsControlAssociationsCommand.d.ts +3 -0
  52. package/dist-types/commands/CreateAutomationRuleCommand.d.ts +7 -0
  53. package/dist-types/commands/CreateConfigurationPolicyCommand.d.ts +189 -0
  54. package/dist-types/commands/CreateInsightCommand.d.ts +17 -0
  55. package/dist-types/commands/CreateMembersCommand.d.ts +3 -0
  56. package/dist-types/commands/DeleteConfigurationPolicyCommand.d.ts +98 -0
  57. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +7 -2
  58. package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +3 -0
  59. package/dist-types/commands/DisableSecurityHubCommand.d.ts +3 -0
  60. package/dist-types/commands/DisassociateMembersCommand.d.ts +3 -0
  61. package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +3 -0
  62. package/dist-types/commands/GetConfigurationPolicyAssociationCommand.d.ts +107 -0
  63. package/dist-types/commands/GetConfigurationPolicyCommand.d.ts +143 -0
  64. package/dist-types/commands/GetFindingsCommand.d.ts +30 -3
  65. package/dist-types/commands/GetInsightsCommand.d.ts +17 -0
  66. package/dist-types/commands/GetSecurityControlDefinitionCommand.d.ts +193 -0
  67. package/dist-types/commands/ListConfigurationPoliciesCommand.d.ts +104 -0
  68. package/dist-types/commands/ListConfigurationPolicyAssociationsCommand.d.ts +110 -0
  69. package/dist-types/commands/ListSecurityControlDefinitionsCommand.d.ts +65 -0
  70. package/dist-types/commands/StartConfigurationPolicyAssociationCommand.d.ts +108 -0
  71. package/dist-types/commands/StartConfigurationPolicyDisassociationCommand.d.ts +102 -0
  72. package/dist-types/commands/UpdateConfigurationPolicyCommand.d.ts +191 -0
  73. package/dist-types/commands/UpdateFindingsCommand.d.ts +17 -0
  74. package/dist-types/commands/UpdateInsightCommand.d.ts +17 -0
  75. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +16 -2
  76. package/dist-types/commands/UpdateSecurityControlCommand.d.ts +141 -0
  77. package/dist-types/commands/UpdateSecurityHubConfigurationCommand.d.ts +3 -0
  78. package/dist-types/commands/UpdateStandardsControlCommand.d.ts +3 -0
  79. package/dist-types/commands/index.d.ts +12 -0
  80. package/dist-types/models/models_0.d.ts +101 -193
  81. package/dist-types/models/models_1.d.ts +221 -86
  82. package/dist-types/models/models_2.d.ts +2377 -394
  83. package/dist-types/pagination/ListConfigurationPoliciesPaginator.d.ts +7 -0
  84. package/dist-types/pagination/ListConfigurationPolicyAssociationsPaginator.d.ts +7 -0
  85. package/dist-types/pagination/index.d.ts +2 -0
  86. package/dist-types/protocols/Aws_restJson1.d.ts +108 -0
  87. package/dist-types/ts3.4/SecurityHub.d.ts +234 -0
  88. package/dist-types/ts3.4/SecurityHubClient.d.ts +72 -0
  89. package/dist-types/ts3.4/commands/BatchGetConfigurationPolicyAssociationsCommand.d.ts +42 -0
  90. package/dist-types/ts3.4/commands/CreateConfigurationPolicyCommand.d.ts +42 -0
  91. package/dist-types/ts3.4/commands/DeleteConfigurationPolicyCommand.d.ts +42 -0
  92. package/dist-types/ts3.4/commands/GetConfigurationPolicyAssociationCommand.d.ts +42 -0
  93. package/dist-types/ts3.4/commands/GetConfigurationPolicyCommand.d.ts +42 -0
  94. package/dist-types/ts3.4/commands/GetSecurityControlDefinitionCommand.d.ts +42 -0
  95. package/dist-types/ts3.4/commands/ListConfigurationPoliciesCommand.d.ts +42 -0
  96. package/dist-types/ts3.4/commands/ListConfigurationPolicyAssociationsCommand.d.ts +42 -0
  97. package/dist-types/ts3.4/commands/StartConfigurationPolicyAssociationCommand.d.ts +42 -0
  98. package/dist-types/ts3.4/commands/StartConfigurationPolicyDisassociationCommand.d.ts +42 -0
  99. package/dist-types/ts3.4/commands/UpdateConfigurationPolicyCommand.d.ts +42 -0
  100. package/dist-types/ts3.4/commands/UpdateSecurityControlCommand.d.ts +42 -0
  101. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  102. package/dist-types/ts3.4/models/models_0.d.ts +23 -26
  103. package/dist-types/ts3.4/models/models_1.d.ts +37 -15
  104. package/dist-types/ts3.4/models/models_2.d.ts +602 -17
  105. package/dist-types/ts3.4/pagination/ListConfigurationPoliciesPaginator.d.ts +11 -0
  106. package/dist-types/ts3.4/pagination/ListConfigurationPolicyAssociationsPaginator.d.ts +11 -0
  107. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  108. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +144 -0
  109. package/package.json +3 -3
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ UpdateConfigurationPolicyRequest,
11
+ UpdateConfigurationPolicyResponse,
12
+ } from "../models/models_2";
13
+ import {
14
+ SecurityHubClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SecurityHubClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateConfigurationPolicyCommandInput
20
+ extends UpdateConfigurationPolicyRequest {}
21
+ export interface UpdateConfigurationPolicyCommandOutput
22
+ extends UpdateConfigurationPolicyResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateConfigurationPolicyCommand extends $Command<
25
+ UpdateConfigurationPolicyCommandInput,
26
+ UpdateConfigurationPolicyCommandOutput,
27
+ SecurityHubClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateConfigurationPolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateConfigurationPolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SecurityHubClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateConfigurationPolicyCommandInput,
38
+ UpdateConfigurationPolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ UpdateSecurityControlRequest,
11
+ UpdateSecurityControlResponse,
12
+ } from "../models/models_2";
13
+ import {
14
+ SecurityHubClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SecurityHubClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateSecurityControlCommandInput
20
+ extends UpdateSecurityControlRequest {}
21
+ export interface UpdateSecurityControlCommandOutput
22
+ extends UpdateSecurityControlResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateSecurityControlCommand extends $Command<
25
+ UpdateSecurityControlCommandInput,
26
+ UpdateSecurityControlCommandOutput,
27
+ SecurityHubClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateSecurityControlCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateSecurityControlCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SecurityHubClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateSecurityControlCommandInput,
38
+ UpdateSecurityControlCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -4,6 +4,7 @@ export * from "./BatchDeleteAutomationRulesCommand";
4
4
  export * from "./BatchDisableStandardsCommand";
5
5
  export * from "./BatchEnableStandardsCommand";
6
6
  export * from "./BatchGetAutomationRulesCommand";
7
+ export * from "./BatchGetConfigurationPolicyAssociationsCommand";
7
8
  export * from "./BatchGetSecurityControlsCommand";
8
9
  export * from "./BatchGetStandardsControlAssociationsCommand";
9
10
  export * from "./BatchImportFindingsCommand";
@@ -12,11 +13,13 @@ export * from "./BatchUpdateFindingsCommand";
12
13
  export * from "./BatchUpdateStandardsControlAssociationsCommand";
13
14
  export * from "./CreateActionTargetCommand";
14
15
  export * from "./CreateAutomationRuleCommand";
16
+ export * from "./CreateConfigurationPolicyCommand";
15
17
  export * from "./CreateFindingAggregatorCommand";
16
18
  export * from "./CreateInsightCommand";
17
19
  export * from "./CreateMembersCommand";
18
20
  export * from "./DeclineInvitationsCommand";
19
21
  export * from "./DeleteActionTargetCommand";
22
+ export * from "./DeleteConfigurationPolicyCommand";
20
23
  export * from "./DeleteFindingAggregatorCommand";
21
24
  export * from "./DeleteInsightCommand";
22
25
  export * from "./DeleteInvitationsCommand";
@@ -37,6 +40,8 @@ export * from "./EnableImportFindingsForProductCommand";
37
40
  export * from "./EnableOrganizationAdminAccountCommand";
38
41
  export * from "./EnableSecurityHubCommand";
39
42
  export * from "./GetAdministratorAccountCommand";
43
+ export * from "./GetConfigurationPolicyAssociationCommand";
44
+ export * from "./GetConfigurationPolicyCommand";
40
45
  export * from "./GetEnabledStandardsCommand";
41
46
  export * from "./GetFindingAggregatorCommand";
42
47
  export * from "./GetFindingHistoryCommand";
@@ -46,8 +51,11 @@ export * from "./GetInsightsCommand";
46
51
  export * from "./GetInvitationsCountCommand";
47
52
  export * from "./GetMasterAccountCommand";
48
53
  export * from "./GetMembersCommand";
54
+ export * from "./GetSecurityControlDefinitionCommand";
49
55
  export * from "./InviteMembersCommand";
50
56
  export * from "./ListAutomationRulesCommand";
57
+ export * from "./ListConfigurationPoliciesCommand";
58
+ export * from "./ListConfigurationPolicyAssociationsCommand";
51
59
  export * from "./ListEnabledProductsForImportCommand";
52
60
  export * from "./ListFindingAggregatorsCommand";
53
61
  export * from "./ListInvitationsCommand";
@@ -56,12 +64,16 @@ export * from "./ListOrganizationAdminAccountsCommand";
56
64
  export * from "./ListSecurityControlDefinitionsCommand";
57
65
  export * from "./ListStandardsControlAssociationsCommand";
58
66
  export * from "./ListTagsForResourceCommand";
67
+ export * from "./StartConfigurationPolicyAssociationCommand";
68
+ export * from "./StartConfigurationPolicyDisassociationCommand";
59
69
  export * from "./TagResourceCommand";
60
70
  export * from "./UntagResourceCommand";
61
71
  export * from "./UpdateActionTargetCommand";
72
+ export * from "./UpdateConfigurationPolicyCommand";
62
73
  export * from "./UpdateFindingAggregatorCommand";
63
74
  export * from "./UpdateFindingsCommand";
64
75
  export * from "./UpdateInsightCommand";
65
76
  export * from "./UpdateOrganizationConfigurationCommand";
77
+ export * from "./UpdateSecurityControlCommand";
66
78
  export * from "./UpdateSecurityHubConfigurationCommand";
67
79
  export * from "./UpdateStandardsControlCommand";
@@ -224,6 +224,24 @@ export interface AdminAccount {
224
224
  export interface AssociatedStandard {
225
225
  StandardsId?: string;
226
226
  }
227
+ export declare const ConfigurationPolicyAssociationStatus: {
228
+ readonly FAILED: "FAILED";
229
+ readonly PENDING: "PENDING";
230
+ readonly SUCCESS: "SUCCESS";
231
+ };
232
+ export type ConfigurationPolicyAssociationStatus =
233
+ (typeof ConfigurationPolicyAssociationStatus)[keyof typeof ConfigurationPolicyAssociationStatus];
234
+ export declare const AssociationType: {
235
+ readonly APPLIED: "APPLIED";
236
+ readonly INHERITED: "INHERITED";
237
+ };
238
+ export type AssociationType =
239
+ (typeof AssociationType)[keyof typeof AssociationType];
240
+ export interface AssociationFilters {
241
+ ConfigurationPolicyId?: string;
242
+ AssociationType?: AssociationType;
243
+ AssociationStatus?: ConfigurationPolicyAssociationStatus;
244
+ }
227
245
  export interface AssociationStateDetails {
228
246
  State?: string;
229
247
  StatusMessage?: string;
@@ -265,6 +283,8 @@ export interface StringFilter {
265
283
  export interface NumberFilter {
266
284
  Gte?: number;
267
285
  Lte?: number;
286
+ Gt?: number;
287
+ Lt?: number;
268
288
  Eq?: number;
269
289
  }
270
290
  export declare const DateRangeUnit: {
@@ -329,6 +349,9 @@ export interface AutomationRulesFindingFilters {
329
349
  NoteUpdatedAt?: DateFilter[];
330
350
  NoteUpdatedBy?: StringFilter[];
331
351
  UserDefinedFields?: MapFilter[];
352
+ ResourceApplicationArn?: StringFilter[];
353
+ ResourceApplicationName?: StringFilter[];
354
+ AwsAccountName?: StringFilter[];
332
355
  }
333
356
  export declare const RuleStatus: {
334
357
  readonly DISABLED: "DISABLED";
@@ -1995,29 +2018,3 @@ export interface AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails {
1995
2018
  TransitEncryption?: string;
1996
2019
  TransitEncryptionPort?: number;
1997
2020
  }
1998
- export interface AwsEcsTaskDefinitionVolumesHostDetails {
1999
- SourcePath?: string;
2000
- }
2001
- export interface AwsEcsTaskDefinitionVolumesDetails {
2002
- DockerVolumeConfiguration?: AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails;
2003
- EfsVolumeConfiguration?: AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails;
2004
- Host?: AwsEcsTaskDefinitionVolumesHostDetails;
2005
- Name?: string;
2006
- }
2007
- export interface AwsEcsTaskDefinitionDetails {
2008
- ContainerDefinitions?: AwsEcsTaskDefinitionContainerDefinitionsDetails[];
2009
- Cpu?: string;
2010
- ExecutionRoleArn?: string;
2011
- Family?: string;
2012
- InferenceAccelerators?: AwsEcsTaskDefinitionInferenceAcceleratorsDetails[];
2013
- IpcMode?: string;
2014
- Memory?: string;
2015
- NetworkMode?: string;
2016
- PidMode?: string;
2017
- PlacementConstraints?: AwsEcsTaskDefinitionPlacementConstraintsDetails[];
2018
- ProxyConfiguration?: AwsEcsTaskDefinitionProxyConfigurationDetails;
2019
- RequiresCompatibilities?: string[];
2020
- TaskRoleArn?: string;
2021
- Volumes?: AwsEcsTaskDefinitionVolumesDetails[];
2022
- Status?: string;
2023
- }
@@ -2,9 +2,41 @@ import {
2
2
  AssociatedStandard,
3
3
  AvailabilityZone,
4
4
  AwsEcsContainerDetails,
5
+ AwsEcsTaskDefinitionContainerDefinitionsDetails,
6
+ AwsEcsTaskDefinitionInferenceAcceleratorsDetails,
7
+ AwsEcsTaskDefinitionPlacementConstraintsDetails,
8
+ AwsEcsTaskDefinitionProxyConfigurationDetails,
9
+ AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails,
10
+ AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails,
5
11
  RelatedFinding,
6
12
  SeverityLabel,
7
13
  } from "./models_0";
14
+ export interface AwsEcsTaskDefinitionVolumesHostDetails {
15
+ SourcePath?: string;
16
+ }
17
+ export interface AwsEcsTaskDefinitionVolumesDetails {
18
+ DockerVolumeConfiguration?: AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails;
19
+ EfsVolumeConfiguration?: AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails;
20
+ Host?: AwsEcsTaskDefinitionVolumesHostDetails;
21
+ Name?: string;
22
+ }
23
+ export interface AwsEcsTaskDefinitionDetails {
24
+ ContainerDefinitions?: AwsEcsTaskDefinitionContainerDefinitionsDetails[];
25
+ Cpu?: string;
26
+ ExecutionRoleArn?: string;
27
+ Family?: string;
28
+ InferenceAccelerators?: AwsEcsTaskDefinitionInferenceAcceleratorsDetails[];
29
+ IpcMode?: string;
30
+ Memory?: string;
31
+ NetworkMode?: string;
32
+ PidMode?: string;
33
+ PlacementConstraints?: AwsEcsTaskDefinitionPlacementConstraintsDetails[];
34
+ ProxyConfiguration?: AwsEcsTaskDefinitionProxyConfigurationDetails;
35
+ RequiresCompatibilities?: string[];
36
+ TaskRoleArn?: string;
37
+ Volumes?: AwsEcsTaskDefinitionVolumesDetails[];
38
+ Status?: string;
39
+ }
8
40
  export interface AwsEcsTaskVolumeHostDetails {
9
41
  SourcePath?: string;
10
42
  }
@@ -1442,6 +1474,10 @@ export interface AwsSecretsManagerSecretDetails {
1442
1474
  Name?: string;
1443
1475
  Description?: string;
1444
1476
  }
1477
+ export interface SecurityControlParameter {
1478
+ Name?: string;
1479
+ Value?: string[];
1480
+ }
1445
1481
  export declare const ComplianceStatus: {
1446
1482
  readonly FAILED: "FAILED";
1447
1483
  readonly NOT_AVAILABLE: "NOT_AVAILABLE";
@@ -1460,6 +1496,7 @@ export interface Compliance {
1460
1496
  StatusReasons?: StatusReason[];
1461
1497
  SecurityControlId?: string;
1462
1498
  AssociatedStandards?: AssociatedStandard[];
1499
+ SecurityControlParameters?: SecurityControlParameter[];
1463
1500
  }
1464
1501
  export interface FindingProviderSeverity {
1465
1502
  Label?: SeverityLabel;
@@ -1833,18 +1870,3 @@ export interface AwsWafv2CustomResponseDetails {
1833
1870
  ResponseCode?: number;
1834
1871
  ResponseHeaders?: AwsWafv2CustomHttpHeader[];
1835
1872
  }
1836
- export interface AwsWafv2ActionBlockDetails {
1837
- CustomResponse?: AwsWafv2CustomResponseDetails;
1838
- }
1839
- export interface AwsWafv2RulesActionCaptchaDetails {
1840
- CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
1841
- }
1842
- export interface AwsWafv2RulesActionCountDetails {
1843
- CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
1844
- }
1845
- export interface AwsWafv2RulesActionDetails {
1846
- Allow?: AwsWafv2ActionAllowDetails;
1847
- Block?: AwsWafv2ActionBlockDetails;
1848
- Captcha?: AwsWafv2RulesActionCaptchaDetails;
1849
- Count?: AwsWafv2RulesActionCountDetails;
1850
- }