@aws-sdk/client-securityhub 3.300.0 → 3.301.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/dist-types/commands/AcceptAdministratorInvitationCommand.d.ts +1 -1
- package/dist-types/commands/AcceptInvitationCommand.d.ts +1 -1
- package/dist-types/commands/BatchDisableStandardsCommand.d.ts +2 -2
- package/dist-types/commands/BatchEnableStandardsCommand.d.ts +4 -4
- package/dist-types/commands/BatchGetSecurityControlsCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetStandardsControlAssociationsCommand.d.ts +3 -3
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +836 -1117
- package/dist-types/commands/BatchUpdateFindingsCommand.d.ts +10 -10
- package/dist-types/commands/BatchUpdateStandardsControlAssociationsCommand.d.ts +3 -3
- package/dist-types/commands/CreateActionTargetCommand.d.ts +1 -1
- package/dist-types/commands/CreateFindingAggregatorCommand.d.ts +2 -2
- package/dist-types/commands/CreateInsightCommand.d.ts +91 -474
- package/dist-types/commands/CreateMembersCommand.d.ts +3 -3
- package/dist-types/commands/DeclineInvitationsCommand.d.ts +2 -2
- package/dist-types/commands/DeleteActionTargetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFindingAggregatorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInsightCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInvitationsCommand.d.ts +2 -2
- package/dist-types/commands/DeleteMembersCommand.d.ts +2 -2
- package/dist-types/commands/DescribeActionTargetsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeHubCommand.d.ts +1 -1
- package/dist-types/commands/DescribeProductsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStandardsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStandardsControlsCommand.d.ts +1 -1
- package/dist-types/commands/DisableImportFindingsForProductCommand.d.ts +1 -1
- package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateMembersCommand.d.ts +2 -2
- package/dist-types/commands/EnableImportFindingsForProductCommand.d.ts +1 -1
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/EnableSecurityHubCommand.d.ts +2 -2
- package/dist-types/commands/GetEnabledStandardsCommand.d.ts +2 -2
- package/dist-types/commands/GetFindingAggregatorCommand.d.ts +1 -1
- package/dist-types/commands/GetFindingsCommand.d.ts +93 -476
- package/dist-types/commands/GetInsightResultsCommand.d.ts +1 -1
- package/dist-types/commands/GetInsightsCommand.d.ts +2 -2
- package/dist-types/commands/GetMembersCommand.d.ts +2 -2
- package/dist-types/commands/InviteMembersCommand.d.ts +2 -2
- package/dist-types/commands/ListEnabledProductsForImportCommand.d.ts +1 -1
- package/dist-types/commands/ListFindingAggregatorsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListMembersCommand.d.ts +1 -1
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListSecurityControlDefinitionsCommand.d.ts +1 -1
- package/dist-types/commands/ListStandardsControlAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateActionTargetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFindingAggregatorCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFindingsCommand.d.ts +92 -475
- package/dist-types/commands/UpdateInsightCommand.d.ts +91 -474
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityHubConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStandardsControlCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -31,7 +31,7 @@ export interface AcceptAdministratorInvitationCommandOutput extends AcceptAdmini
|
|
|
31
31
|
* import { SecurityHubClient, AcceptAdministratorInvitationCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
|
|
32
32
|
* // const { SecurityHubClient, AcceptAdministratorInvitationCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
|
|
33
33
|
* const client = new SecurityHubClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // AcceptAdministratorInvitationRequest
|
|
35
35
|
* AdministratorId: "STRING_VALUE", // required
|
|
36
36
|
* InvitationId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
@@ -35,7 +35,7 @@ export interface AcceptInvitationCommandOutput extends AcceptInvitationResponse,
|
|
|
35
35
|
* import { SecurityHubClient, AcceptInvitationCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
|
|
36
36
|
* // const { SecurityHubClient, AcceptInvitationCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
|
|
37
37
|
* const client = new SecurityHubClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // AcceptInvitationRequest
|
|
39
39
|
* MasterId: "STRING_VALUE", // required
|
|
40
40
|
* InvitationId: "STRING_VALUE", // required
|
|
41
41
|
* };
|
|
@@ -29,8 +29,8 @@ export interface BatchDisableStandardsCommandOutput extends BatchDisableStandard
|
|
|
29
29
|
* import { SecurityHubClient, BatchDisableStandardsCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
|
|
30
30
|
* // const { SecurityHubClient, BatchDisableStandardsCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
|
|
31
31
|
* const client = new SecurityHubClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* StandardsSubscriptionArns: [ // required
|
|
32
|
+
* const input = { // BatchDisableStandardsRequest
|
|
33
|
+
* StandardsSubscriptionArns: [ // StandardsSubscriptionArns // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -30,11 +30,11 @@ export interface BatchEnableStandardsCommandOutput extends BatchEnableStandardsR
|
|
|
30
30
|
* import { SecurityHubClient, BatchEnableStandardsCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
|
|
31
31
|
* // const { SecurityHubClient, BatchEnableStandardsCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
|
|
32
32
|
* const client = new SecurityHubClient(config);
|
|
33
|
-
* const input = {
|
|
34
|
-
* StandardsSubscriptionRequests: [ // required
|
|
35
|
-
* {
|
|
33
|
+
* const input = { // BatchEnableStandardsRequest
|
|
34
|
+
* StandardsSubscriptionRequests: [ // StandardsSubscriptionRequests // required
|
|
35
|
+
* { // StandardsSubscriptionRequest
|
|
36
36
|
* StandardsArn: "STRING_VALUE", // required
|
|
37
|
-
* StandardsInput: {
|
|
37
|
+
* StandardsInput: { // StandardsInputParameterMap
|
|
38
38
|
* "<keys>": "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
@@ -28,8 +28,8 @@ export interface BatchGetSecurityControlsCommandOutput extends BatchGetSecurityC
|
|
|
28
28
|
* import { SecurityHubClient, BatchGetSecurityControlsCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
|
|
29
29
|
* // const { SecurityHubClient, BatchGetSecurityControlsCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
|
|
30
30
|
* const client = new SecurityHubClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* SecurityControlIds: [ // required
|
|
31
|
+
* const input = { // BatchGetSecurityControlsRequest
|
|
32
|
+
* SecurityControlIds: [ // StringList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -28,9 +28,9 @@ export interface BatchGetStandardsControlAssociationsCommandOutput extends Batch
|
|
|
28
28
|
* import { SecurityHubClient, BatchGetStandardsControlAssociationsCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
|
|
29
29
|
* // const { SecurityHubClient, BatchGetStandardsControlAssociationsCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
|
|
30
30
|
* const client = new SecurityHubClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* StandardsControlAssociationIds: [ // required
|
|
33
|
-
* {
|
|
31
|
+
* const input = { // BatchGetStandardsControlAssociationsRequest
|
|
32
|
+
* StandardsControlAssociationIds: [ // StandardsControlAssociationIds // required
|
|
33
|
+
* { // StandardsControlAssociationId
|
|
34
34
|
* SecurityControlId: "STRING_VALUE", // required
|
|
35
35
|
* StandardsArn: "STRING_VALUE", // required
|
|
36
36
|
* },
|