@aws-sdk/client-auditmanager 3.299.0 → 3.300.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/AssociateAssessmentReportEvidenceFolderCommand.d.ts +4 -0
- package/dist-types/commands/BatchAssociateAssessmentReportEvidenceCommand.d.ts +7 -0
- package/dist-types/commands/BatchCreateDelegationByAssessmentCommand.d.ts +11 -0
- package/dist-types/commands/BatchDeleteDelegationByAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/BatchDisassociateAssessmentReportEvidenceCommand.d.ts +7 -0
- package/dist-types/commands/BatchImportEvidenceToAssessmentControlCommand.d.ts +10 -0
- package/dist-types/commands/CreateAssessmentCommand.d.ts +32 -0
- package/dist-types/commands/CreateAssessmentFrameworkCommand.d.ts +18 -0
- package/dist-types/commands/CreateAssessmentReportCommand.d.ts +6 -0
- package/dist-types/commands/CreateControlCommand.d.ts +24 -0
- package/dist-types/commands/DeleteAssessmentCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAssessmentFrameworkCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAssessmentFrameworkShareCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAssessmentReportCommand.d.ts +4 -0
- package/dist-types/commands/DeleteControlCommand.d.ts +3 -0
- package/dist-types/commands/DeregisterAccountCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateAssessmentReportEvidenceFolderCommand.d.ts +4 -0
- package/dist-types/commands/GetAccountStatusCommand.d.ts +1 -0
- package/dist-types/commands/GetAssessmentCommand.d.ts +3 -0
- package/dist-types/commands/GetAssessmentFrameworkCommand.d.ts +3 -0
- package/dist-types/commands/GetAssessmentReportUrlCommand.d.ts +4 -0
- package/dist-types/commands/GetChangeLogsCommand.d.ts +7 -0
- package/dist-types/commands/GetControlCommand.d.ts +3 -0
- package/dist-types/commands/GetDelegationsCommand.d.ts +4 -0
- package/dist-types/commands/GetEvidenceByEvidenceFolderCommand.d.ts +7 -0
- package/dist-types/commands/GetEvidenceCommand.d.ts +6 -0
- package/dist-types/commands/GetEvidenceFolderCommand.d.ts +5 -0
- package/dist-types/commands/GetEvidenceFoldersByAssessmentCommand.d.ts +5 -0
- package/dist-types/commands/GetEvidenceFoldersByAssessmentControlCommand.d.ts +7 -0
- package/dist-types/commands/GetInsightsByAssessmentCommand.d.ts +3 -0
- package/dist-types/commands/GetInsightsCommand.d.ts +1 -0
- package/dist-types/commands/GetOrganizationAdminAccountCommand.d.ts +1 -0
- package/dist-types/commands/GetServicesInScopeCommand.d.ts +1 -0
- package/dist-types/commands/GetSettingsCommand.d.ts +3 -0
- package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +6 -0
- package/dist-types/commands/ListAssessmentFrameworkShareRequestsCommand.d.ts +5 -0
- package/dist-types/commands/ListAssessmentFrameworksCommand.d.ts +5 -0
- package/dist-types/commands/ListAssessmentReportsCommand.d.ts +4 -0
- package/dist-types/commands/ListAssessmentsCommand.d.ts +5 -0
- package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +5 -0
- package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +4 -0
- package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +5 -0
- package/dist-types/commands/ListControlsCommand.d.ts +5 -0
- package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +5 -0
- package/dist-types/commands/ListNotificationsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/RegisterAccountCommand.d.ts +4 -0
- package/dist-types/commands/RegisterOrganizationAdminAccountCommand.d.ts +3 -0
- package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentCommand.d.ts +29 -0
- package/dist-types/commands/UpdateAssessmentControlCommand.d.ts +7 -0
- package/dist-types/commands/UpdateAssessmentControlSetStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentFrameworkCommand.d.ts +17 -0
- package/dist-types/commands/UpdateAssessmentFrameworkShareCommand.d.ts +5 -0
- package/dist-types/commands/UpdateAssessmentStatusCommand.d.ts +4 -0
- package/dist-types/commands/UpdateControlCommand.d.ts +23 -0
- package/dist-types/commands/UpdateSettingsCommand.d.ts +18 -0
- package/dist-types/commands/ValidateAssessmentReportIntegrityCommand.d.ts +3 -0
- package/package.json +8 -8
|
@@ -27,6 +27,10 @@ export interface AssociateAssessmentReportEvidenceFolderCommandOutput extends As
|
|
|
27
27
|
* import { AuditManagerClient, AssociateAssessmentReportEvidenceFolderCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, AssociateAssessmentReportEvidenceFolderCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new AssociateAssessmentReportEvidenceFolderCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface BatchAssociateAssessmentReportEvidenceCommandOutput extends Bat
|
|
|
27
27
|
* import { AuditManagerClient, BatchAssociateAssessmentReportEvidenceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, BatchAssociateAssessmentReportEvidenceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
33
|
+
* evidenceIds: [ // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
30
37
|
* const command = new BatchAssociateAssessmentReportEvidenceCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface BatchCreateDelegationByAssessmentCommandOutput extends BatchCre
|
|
|
26
26
|
* import { AuditManagerClient, BatchCreateDelegationByAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, BatchCreateDelegationByAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* createDelegationRequests: [ // required
|
|
31
|
+
* {
|
|
32
|
+
* comment: "STRING_VALUE",
|
|
33
|
+
* controlSetId: "STRING_VALUE",
|
|
34
|
+
* roleArn: "STRING_VALUE",
|
|
35
|
+
* roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* assessmentId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
29
40
|
* const command = new BatchCreateDelegationByAssessmentCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface BatchDeleteDelegationByAssessmentCommandOutput extends BatchDel
|
|
|
26
26
|
* import { AuditManagerClient, BatchDeleteDelegationByAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, BatchDeleteDelegationByAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* delegationIds: [ // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* assessmentId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new BatchDeleteDelegationByAssessmentCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface BatchDisassociateAssessmentReportEvidenceCommandOutput extends
|
|
|
27
27
|
* import { AuditManagerClient, BatchDisassociateAssessmentReportEvidenceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, BatchDisassociateAssessmentReportEvidenceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
33
|
+
* evidenceIds: [ // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
30
37
|
* const command = new BatchDisassociateAssessmentReportEvidenceCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -47,6 +47,16 @@ export interface BatchImportEvidenceToAssessmentControlCommandOutput extends Bat
|
|
|
47
47
|
* import { AuditManagerClient, BatchImportEvidenceToAssessmentControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
48
48
|
* // const { AuditManagerClient, BatchImportEvidenceToAssessmentControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
49
49
|
* const client = new AuditManagerClient(config);
|
|
50
|
+
* const input = {
|
|
51
|
+
* assessmentId: "STRING_VALUE", // required
|
|
52
|
+
* controlSetId: "STRING_VALUE", // required
|
|
53
|
+
* controlId: "STRING_VALUE", // required
|
|
54
|
+
* manualEvidence: [ // required
|
|
55
|
+
* {
|
|
56
|
+
* s3ResourcePath: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* };
|
|
50
60
|
* const command = new BatchImportEvidenceToAssessmentControlCommand(input);
|
|
51
61
|
* const response = await client.send(command);
|
|
52
62
|
* ```
|
|
@@ -26,6 +26,38 @@ export interface CreateAssessmentCommandOutput extends CreateAssessmentResponse,
|
|
|
26
26
|
* import { AuditManagerClient, CreateAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, CreateAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* assessmentReportsDestination: {
|
|
33
|
+
* destinationType: "S3",
|
|
34
|
+
* destination: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* scope: {
|
|
37
|
+
* awsAccounts: [
|
|
38
|
+
* {
|
|
39
|
+
* id: "STRING_VALUE",
|
|
40
|
+
* emailAddress: "STRING_VALUE",
|
|
41
|
+
* name: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* awsServices: [
|
|
45
|
+
* {
|
|
46
|
+
* serviceName: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* },
|
|
50
|
+
* roles: [ // required
|
|
51
|
+
* {
|
|
52
|
+
* roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
53
|
+
* roleArn: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* frameworkId: "STRING_VALUE", // required
|
|
57
|
+
* tags: {
|
|
58
|
+
* "<keys>": "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* };
|
|
29
61
|
* const command = new CreateAssessmentCommand(input);
|
|
30
62
|
* const response = await client.send(command);
|
|
31
63
|
* ```
|
|
@@ -26,6 +26,24 @@ export interface CreateAssessmentFrameworkCommandOutput extends CreateAssessment
|
|
|
26
26
|
* import { AuditManagerClient, CreateAssessmentFrameworkCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, CreateAssessmentFrameworkCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* complianceType: "STRING_VALUE",
|
|
33
|
+
* controlSets: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* name: "STRING_VALUE", // required
|
|
36
|
+
* controls: [
|
|
37
|
+
* {
|
|
38
|
+
* id: "STRING_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* tags: {
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
29
47
|
* const command = new CreateAssessmentFrameworkCommand(input);
|
|
30
48
|
* const response = await client.send(command);
|
|
31
49
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface CreateAssessmentReportCommandOutput extends CreateAssessmentRep
|
|
|
26
26
|
* import { AuditManagerClient, CreateAssessmentReportCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, CreateAssessmentReportCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* assessmentId: "STRING_VALUE", // required
|
|
33
|
+
* queryStatement: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new CreateAssessmentReportCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,30 @@ export interface CreateControlCommandOutput extends CreateControlResponse, __Met
|
|
|
26
26
|
* import { AuditManagerClient, CreateControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, CreateControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* description: "STRING_VALUE",
|
|
32
|
+
* testingInformation: "STRING_VALUE",
|
|
33
|
+
* actionPlanTitle: "STRING_VALUE",
|
|
34
|
+
* actionPlanInstructions: "STRING_VALUE",
|
|
35
|
+
* controlMappingSources: [ // required
|
|
36
|
+
* {
|
|
37
|
+
* sourceName: "STRING_VALUE",
|
|
38
|
+
* sourceDescription: "STRING_VALUE",
|
|
39
|
+
* sourceSetUpOption: "System_Controls_Mapping" || "Procedural_Controls_Mapping",
|
|
40
|
+
* sourceType: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL",
|
|
41
|
+
* sourceKeyword: {
|
|
42
|
+
* keywordInputType: "SELECT_FROM_LIST",
|
|
43
|
+
* keywordValue: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* sourceFrequency: "DAILY" || "WEEKLY" || "MONTHLY",
|
|
46
|
+
* troubleshootingText: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* tags: {
|
|
50
|
+
* "<keys>": "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* };
|
|
29
53
|
* const command = new CreateControlCommand(input);
|
|
30
54
|
* const response = await client.send(command);
|
|
31
55
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteAssessmentCommandOutput extends DeleteAssessmentResponse,
|
|
|
26
26
|
* import { AuditManagerClient, DeleteAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, DeleteAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteAssessmentCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteAssessmentFrameworkCommandOutput extends DeleteAssessment
|
|
|
26
26
|
* import { AuditManagerClient, DeleteAssessmentFrameworkCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, DeleteAssessmentFrameworkCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* frameworkId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteAssessmentFrameworkCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteAssessmentFrameworkShareCommandOutput extends DeleteAsses
|
|
|
26
26
|
* import { AuditManagerClient, DeleteAssessmentFrameworkShareCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, DeleteAssessmentFrameworkShareCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* requestId: "STRING_VALUE", // required
|
|
31
|
+
* requestType: "SENT" || "RECEIVED", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteAssessmentFrameworkShareCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -47,6 +47,10 @@ export interface DeleteAssessmentReportCommandOutput extends DeleteAssessmentRep
|
|
|
47
47
|
* import { AuditManagerClient, DeleteAssessmentReportCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
48
48
|
* // const { AuditManagerClient, DeleteAssessmentReportCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
49
49
|
* const client = new AuditManagerClient(config);
|
|
50
|
+
* const input = {
|
|
51
|
+
* assessmentId: "STRING_VALUE", // required
|
|
52
|
+
* assessmentReportId: "STRING_VALUE", // required
|
|
53
|
+
* };
|
|
50
54
|
* const command = new DeleteAssessmentReportCommand(input);
|
|
51
55
|
* const response = await client.send(command);
|
|
52
56
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteControlCommandOutput extends DeleteControlResponse, __Met
|
|
|
26
26
|
* import { AuditManagerClient, DeleteControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, DeleteControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* controlId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteControlCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -35,6 +35,7 @@ export interface DeregisterAccountCommandOutput extends DeregisterAccountRespons
|
|
|
35
35
|
* import { AuditManagerClient, DeregisterAccountCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
36
36
|
* // const { AuditManagerClient, DeregisterAccountCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
37
37
|
* const client = new AuditManagerClient(config);
|
|
38
|
+
* const input = {};
|
|
38
39
|
* const command = new DeregisterAccountCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
40
41
|
* ```
|
|
@@ -85,6 +85,9 @@ export interface DeregisterOrganizationAdminAccountCommandOutput extends Deregis
|
|
|
85
85
|
* import { AuditManagerClient, DeregisterOrganizationAdminAccountCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
86
86
|
* // const { AuditManagerClient, DeregisterOrganizationAdminAccountCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
87
87
|
* const client = new AuditManagerClient(config);
|
|
88
|
+
* const input = {
|
|
89
|
+
* adminAccountId: "STRING_VALUE",
|
|
90
|
+
* };
|
|
88
91
|
* const command = new DeregisterOrganizationAdminAccountCommand(input);
|
|
89
92
|
* const response = await client.send(command);
|
|
90
93
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DisassociateAssessmentReportEvidenceFolderCommandOutput extends
|
|
|
26
26
|
* import { AuditManagerClient, DisassociateAssessmentReportEvidenceFolderCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, DisassociateAssessmentReportEvidenceFolderCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DisassociateAssessmentReportEvidenceFolderCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface GetAccountStatusCommandOutput extends GetAccountStatusResponse,
|
|
|
26
26
|
* import { AuditManagerClient, GetAccountStatusCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetAccountStatusCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new GetAccountStatusCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __Met
|
|
|
26
26
|
* import { AuditManagerClient, GetAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetAssessmentCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetAssessmentFrameworkCommandOutput extends GetAssessmentFramew
|
|
|
26
26
|
* import { AuditManagerClient, GetAssessmentFrameworkCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetAssessmentFrameworkCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* frameworkId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetAssessmentFrameworkCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetAssessmentReportUrlCommandOutput extends GetAssessmentReport
|
|
|
26
26
|
* import { AuditManagerClient, GetAssessmentReportUrlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetAssessmentReportUrlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentReportId: "STRING_VALUE", // required
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetAssessmentReportUrlCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface GetChangeLogsCommandOutput extends GetChangeLogsResponse, __Met
|
|
|
26
26
|
* import { AuditManagerClient, GetChangeLogsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetChangeLogsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* controlSetId: "STRING_VALUE",
|
|
32
|
+
* controlId: "STRING_VALUE",
|
|
33
|
+
* nextToken: "STRING_VALUE",
|
|
34
|
+
* maxResults: Number("int"),
|
|
35
|
+
* };
|
|
29
36
|
* const command = new GetChangeLogsCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetControlCommandOutput extends GetControlResponse, __MetadataB
|
|
|
26
26
|
* import { AuditManagerClient, GetControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* controlId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetControlCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetDelegationsCommandOutput extends GetDelegationsResponse, __M
|
|
|
26
26
|
* import { AuditManagerClient, GetDelegationsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetDelegationsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetDelegationsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface GetEvidenceByEvidenceFolderCommandOutput extends GetEvidenceByE
|
|
|
26
26
|
* import { AuditManagerClient, GetEvidenceByEvidenceFolderCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetEvidenceByEvidenceFolderCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* controlSetId: "STRING_VALUE", // required
|
|
32
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
33
|
+
* nextToken: "STRING_VALUE",
|
|
34
|
+
* maxResults: Number("int"),
|
|
35
|
+
* };
|
|
29
36
|
* const command = new GetEvidenceByEvidenceFolderCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface GetEvidenceCommandOutput extends GetEvidenceResponse, __Metadat
|
|
|
26
26
|
* import { AuditManagerClient, GetEvidenceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetEvidenceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* controlSetId: "STRING_VALUE", // required
|
|
32
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
33
|
+
* evidenceId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new GetEvidenceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface GetEvidenceFolderCommandOutput extends GetEvidenceFolderRespons
|
|
|
27
27
|
* import { AuditManagerClient, GetEvidenceFolderCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, GetEvidenceFolderCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* controlSetId: "STRING_VALUE", // required
|
|
33
|
+
* evidenceFolderId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new GetEvidenceFolderCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface GetEvidenceFoldersByAssessmentCommandOutput extends GetEvidence
|
|
|
27
27
|
* import { AuditManagerClient, GetEvidenceFoldersByAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, GetEvidenceFoldersByAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
30
35
|
* const command = new GetEvidenceFoldersByAssessmentCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface GetEvidenceFoldersByAssessmentControlCommandOutput extends GetE
|
|
|
27
27
|
* import { AuditManagerClient, GetEvidenceFoldersByAssessmentControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, GetEvidenceFoldersByAssessmentControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* assessmentId: "STRING_VALUE", // required
|
|
32
|
+
* controlSetId: "STRING_VALUE", // required
|
|
33
|
+
* controlId: "STRING_VALUE", // required
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* };
|
|
30
37
|
* const command = new GetEvidenceFoldersByAssessmentControlCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetInsightsByAssessmentCommandOutput extends GetInsightsByAsses
|
|
|
26
26
|
* import { AuditManagerClient, GetInsightsByAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetInsightsByAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetInsightsByAssessmentCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface GetInsightsCommandOutput extends GetInsightsResponse, __Metadat
|
|
|
26
26
|
* import { AuditManagerClient, GetInsightsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetInsightsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new GetInsightsCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface GetOrganizationAdminAccountCommandOutput extends GetOrganizatio
|
|
|
27
27
|
* import { AuditManagerClient, GetOrganizationAdminAccountCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, GetOrganizationAdminAccountCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new GetOrganizationAdminAccountCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -28,6 +28,7 @@ export interface GetServicesInScopeCommandOutput extends GetServicesInScopeRespo
|
|
|
28
28
|
* import { AuditManagerClient, GetServicesInScopeCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
29
29
|
* // const { AuditManagerClient, GetServicesInScopeCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
30
30
|
* const client = new AuditManagerClient(config);
|
|
31
|
+
* const input = {};
|
|
31
32
|
* const command = new GetServicesInScopeCommand(input);
|
|
32
33
|
* const response = await client.send(command);
|
|
33
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetSettingsCommandOutput extends GetSettingsResponse, __Metadat
|
|
|
26
26
|
* import { AuditManagerClient, GetSettingsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, GetSettingsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* attribute: "ALL" || "IS_AWS_ORG_ENABLED" || "SNS_TOPIC" || "DEFAULT_ASSESSMENT_REPORTS_DESTINATION" || "DEFAULT_PROCESS_OWNERS" || "EVIDENCE_FINDER_ENABLEMENT" || "DEREGISTRATION_POLICY", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -33,6 +33,12 @@ export interface ListAssessmentControlInsightsByControlDomainCommandOutput exten
|
|
|
33
33
|
* import { AuditManagerClient, ListAssessmentControlInsightsByControlDomainCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
34
34
|
* // const { AuditManagerClient, ListAssessmentControlInsightsByControlDomainCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
35
35
|
* const client = new AuditManagerClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* controlDomainId: "STRING_VALUE", // required
|
|
38
|
+
* assessmentId: "STRING_VALUE", // required
|
|
39
|
+
* nextToken: "STRING_VALUE",
|
|
40
|
+
* maxResults: Number("int"),
|
|
41
|
+
* };
|
|
36
42
|
* const command = new ListAssessmentControlInsightsByControlDomainCommand(input);
|
|
37
43
|
* const response = await client.send(command);
|
|
38
44
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListAssessmentFrameworkShareRequestsCommandOutput extends ListA
|
|
|
26
26
|
* import { AuditManagerClient, ListAssessmentFrameworkShareRequestsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ListAssessmentFrameworkShareRequestsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* requestType: "SENT" || "RECEIVED", // required
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListAssessmentFrameworkShareRequestsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface ListAssessmentFrameworksCommandOutput extends ListAssessmentFra
|
|
|
27
27
|
* import { AuditManagerClient, ListAssessmentFrameworksCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, ListAssessmentFrameworksCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* frameworkType: "Standard" || "Custom", // required
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
30
35
|
* const command = new ListAssessmentFrameworksCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListAssessmentReportsCommandOutput extends ListAssessmentReport
|
|
|
26
26
|
* import { AuditManagerClient, ListAssessmentReportsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ListAssessmentReportsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListAssessmentReportsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListAssessmentsCommandOutput extends ListAssessmentsResponse, _
|
|
|
26
26
|
* import { AuditManagerClient, ListAssessmentsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ListAssessmentsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* status: "ACTIVE" || "INACTIVE",
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListAssessmentsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -32,6 +32,11 @@ export interface ListControlDomainInsightsByAssessmentCommandOutput extends List
|
|
|
32
32
|
* import { AuditManagerClient, ListControlDomainInsightsByAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
33
33
|
* // const { AuditManagerClient, ListControlDomainInsightsByAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
34
34
|
* const client = new AuditManagerClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* assessmentId: "STRING_VALUE", // required
|
|
37
|
+
* nextToken: "STRING_VALUE",
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* };
|
|
35
40
|
* const command = new ListControlDomainInsightsByAssessmentCommand(input);
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
@@ -33,6 +33,10 @@ export interface ListControlDomainInsightsCommandOutput extends ListControlDomai
|
|
|
33
33
|
* import { AuditManagerClient, ListControlDomainInsightsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
34
34
|
* // const { AuditManagerClient, ListControlDomainInsightsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
35
35
|
* const client = new AuditManagerClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* nextToken: "STRING_VALUE",
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* };
|
|
36
40
|
* const command = new ListControlDomainInsightsCommand(input);
|
|
37
41
|
* const response = await client.send(command);
|
|
38
42
|
* ```
|
|
@@ -33,6 +33,11 @@ export interface ListControlInsightsByControlDomainCommandOutput extends ListCon
|
|
|
33
33
|
* import { AuditManagerClient, ListControlInsightsByControlDomainCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
34
34
|
* // const { AuditManagerClient, ListControlInsightsByControlDomainCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
35
35
|
* const client = new AuditManagerClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* controlDomainId: "STRING_VALUE", // required
|
|
38
|
+
* nextToken: "STRING_VALUE",
|
|
39
|
+
* maxResults: Number("int"),
|
|
40
|
+
* };
|
|
36
41
|
* const command = new ListControlInsightsByControlDomainCommand(input);
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListControlsCommandOutput extends ListControlsResponse, __Metad
|
|
|
26
26
|
* import { AuditManagerClient, ListControlsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ListControlsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* controlType: "Standard" || "Custom", // required
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListControlsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface ListKeywordsForDataSourceCommandOutput extends ListKeywordsForD
|
|
|
27
27
|
* import { AuditManagerClient, ListKeywordsForDataSourceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, ListKeywordsForDataSourceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* source: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL", // required
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
30
35
|
* const command = new ListKeywordsForDataSourceCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListNotificationsCommandOutput extends ListNotificationsRespons
|
|
|
26
26
|
* import { AuditManagerClient, ListNotificationsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ListNotificationsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListNotificationsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { AuditManagerClient, ListTagsForResourceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
|
|
|
26
26
|
* import { AuditManagerClient, RegisterAccountCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, RegisterAccountCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* kmsKey: "STRING_VALUE",
|
|
31
|
+
* delegatedAdminAccount: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new RegisterAccountCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface RegisterOrganizationAdminAccountCommandOutput extends RegisterO
|
|
|
27
27
|
* import { AuditManagerClient, RegisterOrganizationAdminAccountCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
28
28
|
* // const { AuditManagerClient, RegisterOrganizationAdminAccountCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
29
29
|
* const client = new AuditManagerClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* adminAccountId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new RegisterOrganizationAdminAccountCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -62,6 +62,12 @@ export interface StartAssessmentFrameworkShareCommandOutput extends StartAssessm
|
|
|
62
62
|
* import { AuditManagerClient, StartAssessmentFrameworkShareCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
63
63
|
* // const { AuditManagerClient, StartAssessmentFrameworkShareCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
64
64
|
* const client = new AuditManagerClient(config);
|
|
65
|
+
* const input = {
|
|
66
|
+
* frameworkId: "STRING_VALUE", // required
|
|
67
|
+
* destinationAccount: "STRING_VALUE", // required
|
|
68
|
+
* destinationRegion: "STRING_VALUE", // required
|
|
69
|
+
* comment: "STRING_VALUE",
|
|
70
|
+
* };
|
|
65
71
|
* const command = new StartAssessmentFrameworkShareCommand(input);
|
|
66
72
|
* const response = await client.send(command);
|
|
67
73
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { AuditManagerClient, TagResourceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, TagResourceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { AuditManagerClient, UntagResourceCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UntagResourceCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,35 @@ export interface UpdateAssessmentCommandOutput extends UpdateAssessmentResponse,
|
|
|
26
26
|
* import { AuditManagerClient, UpdateAssessmentCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateAssessmentCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* assessmentName: "STRING_VALUE",
|
|
32
|
+
* assessmentDescription: "STRING_VALUE",
|
|
33
|
+
* scope: {
|
|
34
|
+
* awsAccounts: [
|
|
35
|
+
* {
|
|
36
|
+
* id: "STRING_VALUE",
|
|
37
|
+
* emailAddress: "STRING_VALUE",
|
|
38
|
+
* name: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* awsServices: [
|
|
42
|
+
* {
|
|
43
|
+
* serviceName: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* },
|
|
47
|
+
* assessmentReportsDestination: {
|
|
48
|
+
* destinationType: "S3",
|
|
49
|
+
* destination: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* roles: [
|
|
52
|
+
* {
|
|
53
|
+
* roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
54
|
+
* roleArn: "STRING_VALUE", // required
|
|
55
|
+
* },
|
|
56
|
+
* ],
|
|
57
|
+
* };
|
|
29
58
|
* const command = new UpdateAssessmentCommand(input);
|
|
30
59
|
* const response = await client.send(command);
|
|
31
60
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface UpdateAssessmentControlCommandOutput extends UpdateAssessmentCo
|
|
|
26
26
|
* import { AuditManagerClient, UpdateAssessmentControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateAssessmentControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* controlSetId: "STRING_VALUE", // required
|
|
32
|
+
* controlId: "STRING_VALUE", // required
|
|
33
|
+
* controlStatus: "UNDER_REVIEW" || "REVIEWED" || "INACTIVE",
|
|
34
|
+
* commentBody: "STRING_VALUE",
|
|
35
|
+
* };
|
|
29
36
|
* const command = new UpdateAssessmentControlCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UpdateAssessmentControlSetStatusCommandOutput extends UpdateAss
|
|
|
26
26
|
* import { AuditManagerClient, UpdateAssessmentControlSetStatusCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateAssessmentControlSetStatusCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* controlSetId: "STRING_VALUE", // required
|
|
32
|
+
* status: "ACTIVE" || "UNDER_REVIEW" || "REVIEWED", // required
|
|
33
|
+
* comment: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UpdateAssessmentControlSetStatusCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,23 @@ export interface UpdateAssessmentFrameworkCommandOutput extends UpdateAssessment
|
|
|
26
26
|
* import { AuditManagerClient, UpdateAssessmentFrameworkCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateAssessmentFrameworkCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* frameworkId: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE", // required
|
|
32
|
+
* description: "STRING_VALUE",
|
|
33
|
+
* complianceType: "STRING_VALUE",
|
|
34
|
+
* controlSets: [ // required
|
|
35
|
+
* {
|
|
36
|
+
* id: "STRING_VALUE",
|
|
37
|
+
* name: "STRING_VALUE", // required
|
|
38
|
+
* controls: [ // required
|
|
39
|
+
* {
|
|
40
|
+
* id: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* };
|
|
29
46
|
* const command = new UpdateAssessmentFrameworkCommand(input);
|
|
30
47
|
* const response = await client.send(command);
|
|
31
48
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpdateAssessmentFrameworkShareCommandOutput extends UpdateAsses
|
|
|
26
26
|
* import { AuditManagerClient, UpdateAssessmentFrameworkShareCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateAssessmentFrameworkShareCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* requestId: "STRING_VALUE", // required
|
|
31
|
+
* requestType: "SENT" || "RECEIVED", // required
|
|
32
|
+
* action: "ACCEPT" || "DECLINE" || "REVOKE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpdateAssessmentFrameworkShareCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface UpdateAssessmentStatusCommandOutput extends UpdateAssessmentSta
|
|
|
26
26
|
* import { AuditManagerClient, UpdateAssessmentStatusCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateAssessmentStatusCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* assessmentId: "STRING_VALUE", // required
|
|
31
|
+
* status: "ACTIVE" || "INACTIVE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new UpdateAssessmentStatusCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,29 @@ export interface UpdateControlCommandOutput extends UpdateControlResponse, __Met
|
|
|
26
26
|
* import { AuditManagerClient, UpdateControlCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateControlCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* controlId: "STRING_VALUE", // required
|
|
31
|
+
* name: "STRING_VALUE", // required
|
|
32
|
+
* description: "STRING_VALUE",
|
|
33
|
+
* testingInformation: "STRING_VALUE",
|
|
34
|
+
* actionPlanTitle: "STRING_VALUE",
|
|
35
|
+
* actionPlanInstructions: "STRING_VALUE",
|
|
36
|
+
* controlMappingSources: [ // required
|
|
37
|
+
* {
|
|
38
|
+
* sourceId: "STRING_VALUE",
|
|
39
|
+
* sourceName: "STRING_VALUE",
|
|
40
|
+
* sourceDescription: "STRING_VALUE",
|
|
41
|
+
* sourceSetUpOption: "System_Controls_Mapping" || "Procedural_Controls_Mapping",
|
|
42
|
+
* sourceType: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL",
|
|
43
|
+
* sourceKeyword: {
|
|
44
|
+
* keywordInputType: "SELECT_FROM_LIST",
|
|
45
|
+
* keywordValue: "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* sourceFrequency: "DAILY" || "WEEKLY" || "MONTHLY",
|
|
48
|
+
* troubleshootingText: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* };
|
|
29
52
|
* const command = new UpdateControlCommand(input);
|
|
30
53
|
* const response = await client.send(command);
|
|
31
54
|
* ```
|
|
@@ -26,6 +26,24 @@ export interface UpdateSettingsCommandOutput extends UpdateSettingsResponse, __M
|
|
|
26
26
|
* import { AuditManagerClient, UpdateSettingsCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, UpdateSettingsCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* snsTopic: "STRING_VALUE",
|
|
31
|
+
* defaultAssessmentReportsDestination: {
|
|
32
|
+
* destinationType: "S3",
|
|
33
|
+
* destination: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* defaultProcessOwners: [
|
|
36
|
+
* {
|
|
37
|
+
* roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
38
|
+
* roleArn: "STRING_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* kmsKey: "STRING_VALUE",
|
|
42
|
+
* evidenceFinderEnabled: true || false,
|
|
43
|
+
* deregistrationPolicy: {
|
|
44
|
+
* deleteResources: "ALL" || "DEFAULT",
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
29
47
|
* const command = new UpdateSettingsCommand(input);
|
|
30
48
|
* const response = await client.send(command);
|
|
31
49
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ValidateAssessmentReportIntegrityCommandOutput extends Validate
|
|
|
26
26
|
* import { AuditManagerClient, ValidateAssessmentReportIntegrityCommand } from "@aws-sdk/client-auditmanager"; // ES Modules import
|
|
27
27
|
* // const { AuditManagerClient, ValidateAssessmentReportIntegrityCommand } = require("@aws-sdk/client-auditmanager"); // CommonJS import
|
|
28
28
|
* const client = new AuditManagerClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* s3RelativePath: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ValidateAssessmentReportIntegrityCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auditmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auditmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|