@aws-sdk/client-auditmanager 3.321.1 → 3.326.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 +15 -0
- package/dist-types/commands/BatchCreateDelegationByAssessmentCommand.d.ts +32 -0
- package/dist-types/commands/BatchDeleteDelegationByAssessmentCommand.d.ts +12 -0
- package/dist-types/commands/BatchDisassociateAssessmentReportEvidenceCommand.d.ts +15 -0
- package/dist-types/commands/BatchImportEvidenceToAssessmentControlCommand.d.ts +14 -0
- package/dist-types/commands/CreateAssessmentCommand.d.ts +125 -0
- package/dist-types/commands/CreateAssessmentFrameworkCommand.d.ts +63 -0
- package/dist-types/commands/CreateAssessmentReportCommand.d.ts +16 -0
- package/dist-types/commands/CreateControlCommand.d.ts +38 -0
- package/dist-types/commands/DeleteAssessmentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAssessmentFrameworkCommand.d.ts +4 -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 +4 -0
- package/dist-types/commands/DeregisterAccountCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateAssessmentReportEvidenceFolderCommand.d.ts +4 -0
- package/dist-types/commands/GetAccountStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetAssessmentCommand.d.ts +126 -0
- package/dist-types/commands/GetAssessmentFrameworkCommand.d.ts +63 -0
- package/dist-types/commands/GetAssessmentReportUrlCommand.d.ts +9 -0
- package/dist-types/commands/GetChangeLogsCommand.d.ts +15 -0
- package/dist-types/commands/GetControlCommand.d.ts +38 -0
- package/dist-types/commands/GetDelegationsCommand.d.ts +17 -0
- package/dist-types/commands/GetEvidenceByEvidenceFolderCommand.d.ts +33 -0
- package/dist-types/commands/GetEvidenceCommand.d.ts +30 -0
- package/dist-types/commands/GetEvidenceFolderCommand.d.ts +25 -0
- package/dist-types/commands/GetEvidenceFoldersByAssessmentCommand.d.ts +28 -0
- package/dist-types/commands/GetEvidenceFoldersByAssessmentControlCommand.d.ts +28 -0
- package/dist-types/commands/GetInsightsByAssessmentCommand.d.ts +13 -0
- package/dist-types/commands/GetInsightsCommand.d.ts +14 -0
- package/dist-types/commands/GetOrganizationAdminAccountCommand.d.ts +7 -0
- package/dist-types/commands/GetServicesInScopeCommand.d.ts +13 -0
- package/dist-types/commands/GetSettingsCommand.d.ts +29 -0
- package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +19 -0
- package/dist-types/commands/ListAssessmentFrameworkShareRequestsCommand.d.ts +25 -0
- package/dist-types/commands/ListAssessmentFrameworksCommand.d.ts +21 -0
- package/dist-types/commands/ListAssessmentReportsCommand.d.ts +18 -0
- package/dist-types/commands/ListAssessmentsCommand.d.ts +37 -0
- package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +20 -0
- package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +20 -0
- package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +18 -0
- package/dist-types/commands/ListControlsCommand.d.ts +16 -0
- package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +9 -0
- package/dist-types/commands/ListNotificationsCommand.d.ts +18 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/RegisterAccountCommand.d.ts +6 -0
- package/dist-types/commands/RegisterOrganizationAdminAccountCommand.d.ts +7 -0
- package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +22 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAssessmentCommand.d.ts +125 -0
- package/dist-types/commands/UpdateAssessmentControlCommand.d.ts +24 -0
- package/dist-types/commands/UpdateAssessmentControlSetStatusCommand.d.ts +54 -0
- package/dist-types/commands/UpdateAssessmentFrameworkCommand.d.ts +63 -0
- package/dist-types/commands/UpdateAssessmentFrameworkShareCommand.d.ts +22 -0
- package/dist-types/commands/UpdateAssessmentStatusCommand.d.ts +125 -0
- package/dist-types/commands/UpdateControlCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSettingsCommand.d.ts +29 -0
- package/dist-types/commands/ValidateAssessmentReportIntegrityCommand.d.ts +12 -0
- package/package.json +16 -16
|
@@ -31,6 +31,17 @@ export interface GetServicesInScopeCommandOutput extends GetServicesInScopeRespo
|
|
|
31
31
|
* const input = {};
|
|
32
32
|
* const command = new GetServicesInScopeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetServicesInScopeResponse
|
|
35
|
+
* // serviceMetadata: [ // ServiceMetadataList
|
|
36
|
+
* // { // ServiceMetadata
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // displayName: "STRING_VALUE",
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // category: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetServicesInScopeCommandInput - {@link GetServicesInScopeCommandInput}
|
|
@@ -50,6 +61,8 @@ export interface GetServicesInScopeCommandOutput extends GetServicesInScopeRespo
|
|
|
50
61
|
* @throws {@link ValidationException} (client fault)
|
|
51
62
|
* <p> The request has invalid or missing parameters. </p>
|
|
52
63
|
*
|
|
64
|
+
* @throws {@link AuditManagerServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
53
66
|
*
|
|
54
67
|
*/
|
|
55
68
|
export declare class GetServicesInScopeCommand extends $Command<GetServicesInScopeCommandInput, GetServicesInScopeCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,33 @@ export interface GetSettingsCommandOutput extends GetSettingsResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetSettingsResponse
|
|
35
|
+
* // settings: { // Settings
|
|
36
|
+
* // isAwsOrgEnabled: true || false,
|
|
37
|
+
* // snsTopic: "STRING_VALUE",
|
|
38
|
+
* // defaultAssessmentReportsDestination: { // AssessmentReportsDestination
|
|
39
|
+
* // destinationType: "S3",
|
|
40
|
+
* // destination: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // defaultProcessOwners: [ // Roles
|
|
43
|
+
* // { // Role
|
|
44
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
45
|
+
* // roleArn: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // kmsKey: "STRING_VALUE",
|
|
49
|
+
* // evidenceFinderEnablement: { // EvidenceFinderEnablement
|
|
50
|
+
* // eventDataStoreArn: "STRING_VALUE",
|
|
51
|
+
* // enablementStatus: "ENABLED" || "DISABLED" || "ENABLE_IN_PROGRESS" || "DISABLE_IN_PROGRESS",
|
|
52
|
+
* // backfillStatus: "NOT_STARTED" || "IN_PROGRESS" || "COMPLETED",
|
|
53
|
+
* // error: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // deregistrationPolicy: { // DeregistrationPolicy
|
|
56
|
+
* // deleteResources: "ALL" || "DEFAULT",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
34
61
|
* ```
|
|
35
62
|
*
|
|
36
63
|
* @param GetSettingsCommandInput - {@link GetSettingsCommandInput}
|
|
@@ -47,6 +74,8 @@ export interface GetSettingsCommandOutput extends GetSettingsResponse, __Metadat
|
|
|
47
74
|
* <p> An internal service error occurred during the processing of your request. Try again
|
|
48
75
|
* later. </p>
|
|
49
76
|
*
|
|
77
|
+
* @throws {@link AuditManagerServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
50
79
|
*
|
|
51
80
|
*/
|
|
52
81
|
export declare class GetSettingsCommand extends $Command<GetSettingsCommandInput, GetSettingsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -41,6 +41,23 @@ export interface ListAssessmentControlInsightsByControlDomainCommandOutput exten
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListAssessmentControlInsightsByControlDomainCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListAssessmentControlInsightsByControlDomainResponse
|
|
45
|
+
* // controlInsightsByAssessment: [ // ControlInsightsMetadataByAssessment
|
|
46
|
+
* // { // ControlInsightsMetadataByAssessmentItem
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // evidenceInsights: { // EvidenceInsights
|
|
50
|
+
* // noncompliantEvidenceCount: Number("int"),
|
|
51
|
+
* // compliantEvidenceCount: Number("int"),
|
|
52
|
+
* // inconclusiveEvidenceCount: Number("int"),
|
|
53
|
+
* // },
|
|
54
|
+
* // controlSetName: "STRING_VALUE",
|
|
55
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // nextToken: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
44
61
|
* ```
|
|
45
62
|
*
|
|
46
63
|
* @param ListAssessmentControlInsightsByControlDomainCommandInput - {@link ListAssessmentControlInsightsByControlDomainCommandInput}
|
|
@@ -63,6 +80,8 @@ export interface ListAssessmentControlInsightsByControlDomainCommandOutput exten
|
|
|
63
80
|
* @throws {@link ValidationException} (client fault)
|
|
64
81
|
* <p> The request has invalid or missing parameters. </p>
|
|
65
82
|
*
|
|
83
|
+
* @throws {@link AuditManagerServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
66
85
|
*
|
|
67
86
|
*/
|
|
68
87
|
export declare class ListAssessmentControlInsightsByControlDomainCommand extends $Command<ListAssessmentControlInsightsByControlDomainCommandInput, ListAssessmentControlInsightsByControlDomainCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -33,6 +33,29 @@ export interface ListAssessmentFrameworkShareRequestsCommandOutput extends ListA
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAssessmentFrameworkShareRequestsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAssessmentFrameworkShareRequestsResponse
|
|
37
|
+
* // assessmentFrameworkShareRequests: [ // AssessmentFrameworkShareRequestList
|
|
38
|
+
* // { // AssessmentFrameworkShareRequest
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // frameworkId: "STRING_VALUE",
|
|
41
|
+
* // frameworkName: "STRING_VALUE",
|
|
42
|
+
* // frameworkDescription: "STRING_VALUE",
|
|
43
|
+
* // status: "ACTIVE" || "REPLICATING" || "SHARED" || "EXPIRING" || "FAILED" || "EXPIRED" || "DECLINED" || "REVOKED",
|
|
44
|
+
* // sourceAccount: "STRING_VALUE",
|
|
45
|
+
* // destinationAccount: "STRING_VALUE",
|
|
46
|
+
* // destinationRegion: "STRING_VALUE",
|
|
47
|
+
* // expirationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
50
|
+
* // comment: "STRING_VALUE",
|
|
51
|
+
* // standardControlsCount: Number("int"),
|
|
52
|
+
* // customControlsCount: Number("int"),
|
|
53
|
+
* // complianceType: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // nextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
36
59
|
* ```
|
|
37
60
|
*
|
|
38
61
|
* @param ListAssessmentFrameworkShareRequestsCommandInput - {@link ListAssessmentFrameworkShareRequestsCommandInput}
|
|
@@ -52,6 +75,8 @@ export interface ListAssessmentFrameworkShareRequestsCommandOutput extends ListA
|
|
|
52
75
|
* @throws {@link ValidationException} (client fault)
|
|
53
76
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
77
|
*
|
|
78
|
+
* @throws {@link AuditManagerServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
55
80
|
*
|
|
56
81
|
*/
|
|
57
82
|
export declare class ListAssessmentFrameworkShareRequestsCommand extends $Command<ListAssessmentFrameworkShareRequestsCommandInput, ListAssessmentFrameworkShareRequestsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,25 @@ export interface ListAssessmentFrameworksCommandOutput extends ListAssessmentFra
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListAssessmentFrameworksCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListAssessmentFrameworksResponse
|
|
38
|
+
* // frameworkMetadataList: [ // FrameworkMetadataList
|
|
39
|
+
* // { // AssessmentFrameworkMetadata
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // type: "Standard" || "Custom",
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // description: "STRING_VALUE",
|
|
45
|
+
* // logo: "STRING_VALUE",
|
|
46
|
+
* // complianceType: "STRING_VALUE",
|
|
47
|
+
* // controlsCount: Number("int"),
|
|
48
|
+
* // controlSetsCount: Number("int"),
|
|
49
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
37
56
|
* ```
|
|
38
57
|
*
|
|
39
58
|
* @param ListAssessmentFrameworksCommandInput - {@link ListAssessmentFrameworksCommandInput}
|
|
@@ -53,6 +72,8 @@ export interface ListAssessmentFrameworksCommandOutput extends ListAssessmentFra
|
|
|
53
72
|
* @throws {@link ValidationException} (client fault)
|
|
54
73
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
74
|
*
|
|
75
|
+
* @throws {@link AuditManagerServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
77
|
*
|
|
57
78
|
*/
|
|
58
79
|
export declare class ListAssessmentFrameworksCommand extends $Command<ListAssessmentFrameworksCommandInput, ListAssessmentFrameworksCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface ListAssessmentReportsCommandOutput extends ListAssessmentReport
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListAssessmentReportsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListAssessmentReportsResponse
|
|
36
|
+
* // assessmentReports: [ // AssessmentReportsMetadata
|
|
37
|
+
* // { // AssessmentReportMetadata
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // description: "STRING_VALUE",
|
|
41
|
+
* // assessmentId: "STRING_VALUE",
|
|
42
|
+
* // assessmentName: "STRING_VALUE",
|
|
43
|
+
* // author: "STRING_VALUE",
|
|
44
|
+
* // status: "COMPLETE" || "IN_PROGRESS" || "FAILED",
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param ListAssessmentReportsCommandInput - {@link ListAssessmentReportsCommandInput}
|
|
@@ -51,6 +67,8 @@ export interface ListAssessmentReportsCommandOutput extends ListAssessmentReport
|
|
|
51
67
|
* @throws {@link ValidationException} (client fault)
|
|
52
68
|
* <p> The request has invalid or missing parameters. </p>
|
|
53
69
|
*
|
|
70
|
+
* @throws {@link AuditManagerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
54
72
|
*
|
|
55
73
|
*/
|
|
56
74
|
export declare class ListAssessmentReportsCommand extends $Command<ListAssessmentReportsCommandInput, ListAssessmentReportsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -33,6 +33,41 @@ export interface ListAssessmentsCommandOutput extends ListAssessmentsResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListAssessmentsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListAssessmentsResponse
|
|
37
|
+
* // assessmentMetadata: [ // ListAssessmentMetadata
|
|
38
|
+
* // { // AssessmentMetadataItem
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // complianceType: "STRING_VALUE",
|
|
42
|
+
* // status: "ACTIVE" || "INACTIVE",
|
|
43
|
+
* // roles: [ // Roles
|
|
44
|
+
* // { // Role
|
|
45
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
46
|
+
* // roleArn: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // delegations: [ // Delegations
|
|
50
|
+
* // { // Delegation
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // assessmentName: "STRING_VALUE",
|
|
53
|
+
* // assessmentId: "STRING_VALUE",
|
|
54
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
55
|
+
* // roleArn: "STRING_VALUE",
|
|
56
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
57
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
58
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
59
|
+
* // controlSetId: "STRING_VALUE",
|
|
60
|
+
* // comment: "STRING_VALUE",
|
|
61
|
+
* // createdBy: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
65
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // nextToken: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
36
71
|
* ```
|
|
37
72
|
*
|
|
38
73
|
* @param ListAssessmentsCommandInput - {@link ListAssessmentsCommandInput}
|
|
@@ -52,6 +87,8 @@ export interface ListAssessmentsCommandOutput extends ListAssessmentsResponse, _
|
|
|
52
87
|
* @throws {@link ValidationException} (client fault)
|
|
53
88
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
89
|
*
|
|
90
|
+
* @throws {@link AuditManagerServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
55
92
|
*
|
|
56
93
|
*/
|
|
57
94
|
export declare class ListAssessmentsCommand extends $Command<ListAssessmentsCommandInput, ListAssessmentsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -39,6 +39,24 @@ export interface ListControlDomainInsightsByAssessmentCommandOutput extends List
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListControlDomainInsightsByAssessmentCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListControlDomainInsightsByAssessmentResponse
|
|
43
|
+
* // controlDomainInsights: [ // ControlDomainInsightsList
|
|
44
|
+
* // { // ControlDomainInsights
|
|
45
|
+
* // name: "STRING_VALUE",
|
|
46
|
+
* // id: "STRING_VALUE",
|
|
47
|
+
* // controlsCountByNoncompliantEvidence: Number("int"),
|
|
48
|
+
* // totalControlsCount: Number("int"),
|
|
49
|
+
* // evidenceInsights: { // EvidenceInsights
|
|
50
|
+
* // noncompliantEvidenceCount: Number("int"),
|
|
51
|
+
* // compliantEvidenceCount: Number("int"),
|
|
52
|
+
* // inconclusiveEvidenceCount: Number("int"),
|
|
53
|
+
* // },
|
|
54
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // nextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
42
60
|
* ```
|
|
43
61
|
*
|
|
44
62
|
* @param ListControlDomainInsightsByAssessmentCommandInput - {@link ListControlDomainInsightsByAssessmentCommandInput}
|
|
@@ -61,6 +79,8 @@ export interface ListControlDomainInsightsByAssessmentCommandOutput extends List
|
|
|
61
79
|
* @throws {@link ValidationException} (client fault)
|
|
62
80
|
* <p> The request has invalid or missing parameters. </p>
|
|
63
81
|
*
|
|
82
|
+
* @throws {@link AuditManagerServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
64
84
|
*
|
|
65
85
|
*/
|
|
66
86
|
export declare class ListControlDomainInsightsByAssessmentCommand extends $Command<ListControlDomainInsightsByAssessmentCommandInput, ListControlDomainInsightsByAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -39,6 +39,24 @@ export interface ListControlDomainInsightsCommandOutput extends ListControlDomai
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListControlDomainInsightsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListControlDomainInsightsResponse
|
|
43
|
+
* // controlDomainInsights: [ // ControlDomainInsightsList
|
|
44
|
+
* // { // ControlDomainInsights
|
|
45
|
+
* // name: "STRING_VALUE",
|
|
46
|
+
* // id: "STRING_VALUE",
|
|
47
|
+
* // controlsCountByNoncompliantEvidence: Number("int"),
|
|
48
|
+
* // totalControlsCount: Number("int"),
|
|
49
|
+
* // evidenceInsights: { // EvidenceInsights
|
|
50
|
+
* // noncompliantEvidenceCount: Number("int"),
|
|
51
|
+
* // compliantEvidenceCount: Number("int"),
|
|
52
|
+
* // inconclusiveEvidenceCount: Number("int"),
|
|
53
|
+
* // },
|
|
54
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // nextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
42
60
|
* ```
|
|
43
61
|
*
|
|
44
62
|
* @param ListControlDomainInsightsCommandInput - {@link ListControlDomainInsightsCommandInput}
|
|
@@ -61,6 +79,8 @@ export interface ListControlDomainInsightsCommandOutput extends ListControlDomai
|
|
|
61
79
|
* @throws {@link ValidationException} (client fault)
|
|
62
80
|
* <p> The request has invalid or missing parameters. </p>
|
|
63
81
|
*
|
|
82
|
+
* @throws {@link AuditManagerServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
64
84
|
*
|
|
65
85
|
*/
|
|
66
86
|
export declare class ListControlDomainInsightsCommand extends $Command<ListControlDomainInsightsCommandInput, ListControlDomainInsightsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -40,6 +40,22 @@ export interface ListControlInsightsByControlDomainCommandOutput extends ListCon
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListControlInsightsByControlDomainCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListControlInsightsByControlDomainResponse
|
|
44
|
+
* // controlInsightsMetadata: [ // ControlInsightsMetadata
|
|
45
|
+
* // { // ControlInsightsMetadataItem
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // id: "STRING_VALUE",
|
|
48
|
+
* // evidenceInsights: { // EvidenceInsights
|
|
49
|
+
* // noncompliantEvidenceCount: Number("int"),
|
|
50
|
+
* // compliantEvidenceCount: Number("int"),
|
|
51
|
+
* // inconclusiveEvidenceCount: Number("int"),
|
|
52
|
+
* // },
|
|
53
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // nextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
43
59
|
* ```
|
|
44
60
|
*
|
|
45
61
|
* @param ListControlInsightsByControlDomainCommandInput - {@link ListControlInsightsByControlDomainCommandInput}
|
|
@@ -62,6 +78,8 @@ export interface ListControlInsightsByControlDomainCommandOutput extends ListCon
|
|
|
62
78
|
* @throws {@link ValidationException} (client fault)
|
|
63
79
|
* <p> The request has invalid or missing parameters. </p>
|
|
64
80
|
*
|
|
81
|
+
* @throws {@link AuditManagerServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
65
83
|
*
|
|
66
84
|
*/
|
|
67
85
|
export declare class ListControlInsightsByControlDomainCommand extends $Command<ListControlInsightsByControlDomainCommandInput, ListControlInsightsByControlDomainCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface ListControlsCommandOutput extends ListControlsResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListControlsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListControlsResponse
|
|
37
|
+
* // controlMetadataList: [ // ControlMetadataList
|
|
38
|
+
* // { // ControlMetadata
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // controlSources: "STRING_VALUE",
|
|
43
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param ListControlsCommandInput - {@link ListControlsCommandInput}
|
|
@@ -52,6 +66,8 @@ export interface ListControlsCommandOutput extends ListControlsResponse, __Metad
|
|
|
52
66
|
* @throws {@link ValidationException} (client fault)
|
|
53
67
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
68
|
*
|
|
69
|
+
* @throws {@link AuditManagerServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
55
71
|
*
|
|
56
72
|
*/
|
|
57
73
|
export declare class ListControlsCommand extends $Command<ListControlsCommandInput, ListControlsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListKeywordsForDataSourceCommandOutput extends ListKeywordsForD
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListKeywordsForDataSourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListKeywordsForDataSourceResponse
|
|
38
|
+
* // keywords: [ // Keywords
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListKeywordsForDataSourceCommandInput - {@link ListKeywordsForDataSourceCommandInput}
|
|
@@ -53,6 +60,8 @@ export interface ListKeywordsForDataSourceCommandOutput extends ListKeywordsForD
|
|
|
53
60
|
* @throws {@link ValidationException} (client fault)
|
|
54
61
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
62
|
*
|
|
63
|
+
* @throws {@link AuditManagerServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
65
|
*
|
|
57
66
|
*/
|
|
58
67
|
export declare class ListKeywordsForDataSourceCommand extends $Command<ListKeywordsForDataSourceCommandInput, ListKeywordsForDataSourceCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface ListNotificationsCommandOutput extends ListNotificationsRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListNotificationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListNotificationsResponse
|
|
36
|
+
* // notifications: [ // Notifications
|
|
37
|
+
* // { // Notification
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // assessmentId: "STRING_VALUE",
|
|
40
|
+
* // assessmentName: "STRING_VALUE",
|
|
41
|
+
* // controlSetId: "STRING_VALUE",
|
|
42
|
+
* // controlSetName: "STRING_VALUE",
|
|
43
|
+
* // description: "STRING_VALUE",
|
|
44
|
+
* // eventTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // source: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param ListNotificationsCommandInput - {@link ListNotificationsCommandInput}
|
|
@@ -51,6 +67,8 @@ export interface ListNotificationsCommandOutput extends ListNotificationsRespons
|
|
|
51
67
|
* @throws {@link ValidationException} (client fault)
|
|
52
68
|
* <p> The request has invalid or missing parameters. </p>
|
|
53
69
|
*
|
|
70
|
+
* @throws {@link AuditManagerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
54
72
|
*
|
|
55
73
|
*/
|
|
56
74
|
export declare class ListNotificationsCommand extends $Command<ListNotificationsCommandInput, ListNotificationsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -49,6 +55,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
55
|
* @throws {@link ValidationException} (client fault)
|
|
50
56
|
* <p> The request has invalid or missing parameters. </p>
|
|
51
57
|
*
|
|
58
|
+
* @throws {@link AuditManagerServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
52
60
|
*
|
|
53
61
|
*/
|
|
54
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RegisterAccountCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RegisterAccountResponse
|
|
36
|
+
* // status: "ACTIVE" || "INACTIVE" || "PENDING_ACTIVATION",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param RegisterAccountCommandInput - {@link RegisterAccountCommandInput}
|
|
@@ -57,6 +61,8 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
|
|
|
57
61
|
* @throws {@link ValidationException} (client fault)
|
|
58
62
|
* <p> The request has invalid or missing parameters. </p>
|
|
59
63
|
*
|
|
64
|
+
* @throws {@link AuditManagerServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
60
66
|
*
|
|
61
67
|
*/
|
|
62
68
|
export declare class RegisterAccountCommand extends $Command<RegisterAccountCommandInput, RegisterAccountCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface RegisterOrganizationAdminAccountCommandOutput extends RegisterO
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RegisterOrganizationAdminAccountCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RegisterOrganizationAdminAccountResponse
|
|
36
|
+
* // adminAccountId: "STRING_VALUE",
|
|
37
|
+
* // organizationId: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param RegisterOrganizationAdminAccountCommandInput - {@link RegisterOrganizationAdminAccountCommandInput}
|
|
@@ -54,6 +59,8 @@ export interface RegisterOrganizationAdminAccountCommandOutput extends RegisterO
|
|
|
54
59
|
* @throws {@link ValidationException} (client fault)
|
|
55
60
|
* <p> The request has invalid or missing parameters. </p>
|
|
56
61
|
*
|
|
62
|
+
* @throws {@link AuditManagerServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
57
64
|
*
|
|
58
65
|
*/
|
|
59
66
|
export declare class RegisterOrganizationAdminAccountCommand extends $Command<RegisterOrganizationAdminAccountCommandInput, RegisterOrganizationAdminAccountCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -70,6 +70,26 @@ export interface StartAssessmentFrameworkShareCommandOutput extends StartAssessm
|
|
|
70
70
|
* };
|
|
71
71
|
* const command = new StartAssessmentFrameworkShareCommand(input);
|
|
72
72
|
* const response = await client.send(command);
|
|
73
|
+
* // { // StartAssessmentFrameworkShareResponse
|
|
74
|
+
* // assessmentFrameworkShareRequest: { // AssessmentFrameworkShareRequest
|
|
75
|
+
* // id: "STRING_VALUE",
|
|
76
|
+
* // frameworkId: "STRING_VALUE",
|
|
77
|
+
* // frameworkName: "STRING_VALUE",
|
|
78
|
+
* // frameworkDescription: "STRING_VALUE",
|
|
79
|
+
* // status: "ACTIVE" || "REPLICATING" || "SHARED" || "EXPIRING" || "FAILED" || "EXPIRED" || "DECLINED" || "REVOKED",
|
|
80
|
+
* // sourceAccount: "STRING_VALUE",
|
|
81
|
+
* // destinationAccount: "STRING_VALUE",
|
|
82
|
+
* // destinationRegion: "STRING_VALUE",
|
|
83
|
+
* // expirationTime: new Date("TIMESTAMP"),
|
|
84
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
85
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
86
|
+
* // comment: "STRING_VALUE",
|
|
87
|
+
* // standardControlsCount: Number("int"),
|
|
88
|
+
* // customControlsCount: Number("int"),
|
|
89
|
+
* // complianceType: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
73
93
|
* ```
|
|
74
94
|
*
|
|
75
95
|
* @param StartAssessmentFrameworkShareCommandInput - {@link StartAssessmentFrameworkShareCommandInput}
|
|
@@ -92,6 +112,8 @@ export interface StartAssessmentFrameworkShareCommandOutput extends StartAssessm
|
|
|
92
112
|
* @throws {@link ValidationException} (client fault)
|
|
93
113
|
* <p> The request has invalid or missing parameters. </p>
|
|
94
114
|
*
|
|
115
|
+
* @throws {@link AuditManagerServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
95
117
|
*
|
|
96
118
|
*/
|
|
97
119
|
export declare class StartAssessmentFrameworkShareCommand extends $Command<StartAssessmentFrameworkShareCommandInput, StartAssessmentFrameworkShareCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link AuditManagerServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link AuditManagerServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AuditManagerClientResolvedConfig> {
|