@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,130 @@ export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAssessmentCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAssessmentResponse
|
|
35
|
+
* // assessment: { // Assessment
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // awsAccount: { // AWSAccount
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // emailAddress: "STRING_VALUE",
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // metadata: { // AssessmentMetadata
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // id: "STRING_VALUE",
|
|
45
|
+
* // description: "STRING_VALUE",
|
|
46
|
+
* // complianceType: "STRING_VALUE",
|
|
47
|
+
* // status: "ACTIVE" || "INACTIVE",
|
|
48
|
+
* // assessmentReportsDestination: { // AssessmentReportsDestination
|
|
49
|
+
* // destinationType: "S3",
|
|
50
|
+
* // destination: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // scope: { // Scope
|
|
53
|
+
* // awsAccounts: [ // AWSAccounts
|
|
54
|
+
* // {
|
|
55
|
+
* // id: "STRING_VALUE",
|
|
56
|
+
* // emailAddress: "STRING_VALUE",
|
|
57
|
+
* // name: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // awsServices: [ // AWSServices
|
|
61
|
+
* // { // AWSService
|
|
62
|
+
* // serviceName: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // roles: [ // Roles
|
|
67
|
+
* // { // Role
|
|
68
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
69
|
+
* // roleArn: "STRING_VALUE", // required
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // delegations: [ // Delegations
|
|
73
|
+
* // { // Delegation
|
|
74
|
+
* // id: "STRING_VALUE",
|
|
75
|
+
* // assessmentName: "STRING_VALUE",
|
|
76
|
+
* // assessmentId: "STRING_VALUE",
|
|
77
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
78
|
+
* // roleArn: "STRING_VALUE",
|
|
79
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
80
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
81
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
82
|
+
* // controlSetId: "STRING_VALUE",
|
|
83
|
+
* // comment: "STRING_VALUE",
|
|
84
|
+
* // createdBy: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
88
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
89
|
+
* // },
|
|
90
|
+
* // framework: { // AssessmentFramework
|
|
91
|
+
* // id: "STRING_VALUE",
|
|
92
|
+
* // arn: "STRING_VALUE",
|
|
93
|
+
* // metadata: { // FrameworkMetadata
|
|
94
|
+
* // name: "STRING_VALUE",
|
|
95
|
+
* // description: "STRING_VALUE",
|
|
96
|
+
* // logo: "STRING_VALUE",
|
|
97
|
+
* // complianceType: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // controlSets: [ // AssessmentControlSets
|
|
100
|
+
* // { // AssessmentControlSet
|
|
101
|
+
* // id: "STRING_VALUE",
|
|
102
|
+
* // description: "STRING_VALUE",
|
|
103
|
+
* // status: "ACTIVE" || "UNDER_REVIEW" || "REVIEWED",
|
|
104
|
+
* // roles: [
|
|
105
|
+
* // {
|
|
106
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
107
|
+
* // roleArn: "STRING_VALUE", // required
|
|
108
|
+
* // },
|
|
109
|
+
* // ],
|
|
110
|
+
* // controls: [ // AssessmentControls
|
|
111
|
+
* // { // AssessmentControl
|
|
112
|
+
* // id: "STRING_VALUE",
|
|
113
|
+
* // name: "STRING_VALUE",
|
|
114
|
+
* // description: "STRING_VALUE",
|
|
115
|
+
* // status: "UNDER_REVIEW" || "REVIEWED" || "INACTIVE",
|
|
116
|
+
* // response: "MANUAL" || "AUTOMATE" || "DEFER" || "IGNORE",
|
|
117
|
+
* // comments: [ // ControlComments
|
|
118
|
+
* // { // ControlComment
|
|
119
|
+
* // authorName: "STRING_VALUE",
|
|
120
|
+
* // commentBody: "STRING_VALUE",
|
|
121
|
+
* // postedDate: new Date("TIMESTAMP"),
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
124
|
+
* // evidenceSources: [ // EvidenceSources
|
|
125
|
+
* // "STRING_VALUE",
|
|
126
|
+
* // ],
|
|
127
|
+
* // evidenceCount: Number("int"),
|
|
128
|
+
* // assessmentReportEvidenceCount: Number("int"),
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // delegations: [
|
|
132
|
+
* // {
|
|
133
|
+
* // id: "STRING_VALUE",
|
|
134
|
+
* // assessmentName: "STRING_VALUE",
|
|
135
|
+
* // assessmentId: "STRING_VALUE",
|
|
136
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
137
|
+
* // roleArn: "STRING_VALUE",
|
|
138
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
139
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
140
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
141
|
+
* // controlSetId: "STRING_VALUE",
|
|
142
|
+
* // comment: "STRING_VALUE",
|
|
143
|
+
* // createdBy: "STRING_VALUE",
|
|
144
|
+
* // },
|
|
145
|
+
* // ],
|
|
146
|
+
* // systemEvidenceCount: Number("int"),
|
|
147
|
+
* // manualEvidenceCount: Number("int"),
|
|
148
|
+
* // },
|
|
149
|
+
* // ],
|
|
150
|
+
* // },
|
|
151
|
+
* // tags: { // TagMap
|
|
152
|
+
* // "<keys>": "STRING_VALUE",
|
|
153
|
+
* // },
|
|
154
|
+
* // },
|
|
155
|
+
* // userRole: "<Role>",
|
|
156
|
+
* // };
|
|
157
|
+
*
|
|
34
158
|
* ```
|
|
35
159
|
*
|
|
36
160
|
* @param GetAssessmentCommandInput - {@link GetAssessmentCommandInput}
|
|
@@ -53,6 +177,8 @@ export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __Met
|
|
|
53
177
|
* @throws {@link ValidationException} (client fault)
|
|
54
178
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
179
|
*
|
|
180
|
+
* @throws {@link AuditManagerServiceException}
|
|
181
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
182
|
*
|
|
57
183
|
*/
|
|
58
184
|
export declare class GetAssessmentCommand extends $Command<GetAssessmentCommandInput, GetAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,67 @@ export interface GetAssessmentFrameworkCommandOutput extends GetAssessmentFramew
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAssessmentFrameworkCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAssessmentFrameworkResponse
|
|
35
|
+
* // framework: { // Framework
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // id: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // type: "Standard" || "Custom",
|
|
40
|
+
* // complianceType: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // logo: "STRING_VALUE",
|
|
43
|
+
* // controlSources: "STRING_VALUE",
|
|
44
|
+
* // controlSets: [ // ControlSets
|
|
45
|
+
* // { // ControlSet
|
|
46
|
+
* // id: "STRING_VALUE",
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // controls: [ // Controls
|
|
49
|
+
* // { // Control
|
|
50
|
+
* // arn: "STRING_VALUE",
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // type: "Standard" || "Custom",
|
|
53
|
+
* // name: "STRING_VALUE",
|
|
54
|
+
* // description: "STRING_VALUE",
|
|
55
|
+
* // testingInformation: "STRING_VALUE",
|
|
56
|
+
* // actionPlanTitle: "STRING_VALUE",
|
|
57
|
+
* // actionPlanInstructions: "STRING_VALUE",
|
|
58
|
+
* // controlSources: "STRING_VALUE",
|
|
59
|
+
* // controlMappingSources: [ // ControlMappingSources
|
|
60
|
+
* // { // ControlMappingSource
|
|
61
|
+
* // sourceId: "STRING_VALUE",
|
|
62
|
+
* // sourceName: "STRING_VALUE",
|
|
63
|
+
* // sourceDescription: "STRING_VALUE",
|
|
64
|
+
* // sourceSetUpOption: "System_Controls_Mapping" || "Procedural_Controls_Mapping",
|
|
65
|
+
* // sourceType: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL",
|
|
66
|
+
* // sourceKeyword: { // SourceKeyword
|
|
67
|
+
* // keywordInputType: "SELECT_FROM_LIST",
|
|
68
|
+
* // keywordValue: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // sourceFrequency: "DAILY" || "WEEKLY" || "MONTHLY",
|
|
71
|
+
* // troubleshootingText: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
75
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
76
|
+
* // createdBy: "STRING_VALUE",
|
|
77
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
78
|
+
* // tags: { // TagMap
|
|
79
|
+
* // "<keys>": "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
86
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
87
|
+
* // createdBy: "STRING_VALUE",
|
|
88
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
89
|
+
* // tags: {
|
|
90
|
+
* // "<keys>": "STRING_VALUE",
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // };
|
|
94
|
+
*
|
|
34
95
|
* ```
|
|
35
96
|
*
|
|
36
97
|
* @param GetAssessmentFrameworkCommandInput - {@link GetAssessmentFrameworkCommandInput}
|
|
@@ -53,6 +114,8 @@ export interface GetAssessmentFrameworkCommandOutput extends GetAssessmentFramew
|
|
|
53
114
|
* @throws {@link ValidationException} (client fault)
|
|
54
115
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
116
|
*
|
|
117
|
+
* @throws {@link AuditManagerServiceException}
|
|
118
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
119
|
*
|
|
57
120
|
*/
|
|
58
121
|
export declare class GetAssessmentFrameworkCommand extends $Command<GetAssessmentFrameworkCommandInput, GetAssessmentFrameworkCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface GetAssessmentReportUrlCommandOutput extends GetAssessmentReport
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetAssessmentReportUrlCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetAssessmentReportUrlResponse
|
|
36
|
+
* // preSignedUrl: { // URL
|
|
37
|
+
* // hyperlinkName: "STRING_VALUE",
|
|
38
|
+
* // link: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param GetAssessmentReportUrlCommandInput - {@link GetAssessmentReportUrlCommandInput}
|
|
@@ -54,6 +61,8 @@ export interface GetAssessmentReportUrlCommandOutput extends GetAssessmentReport
|
|
|
54
61
|
* @throws {@link ValidationException} (client fault)
|
|
55
62
|
* <p> The request has invalid or missing parameters. </p>
|
|
56
63
|
*
|
|
64
|
+
* @throws {@link AuditManagerServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
57
66
|
*
|
|
58
67
|
*/
|
|
59
68
|
export declare class GetAssessmentReportUrlCommand extends $Command<GetAssessmentReportUrlCommandInput, GetAssessmentReportUrlCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -35,6 +35,19 @@ export interface GetChangeLogsCommandOutput extends GetChangeLogsResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetChangeLogsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetChangeLogsResponse
|
|
39
|
+
* // changeLogs: [ // ChangeLogs
|
|
40
|
+
* // { // ChangeLog
|
|
41
|
+
* // objectType: "ASSESSMENT" || "CONTROL_SET" || "CONTROL" || "DELEGATION" || "ASSESSMENT_REPORT",
|
|
42
|
+
* // objectName: "STRING_VALUE",
|
|
43
|
+
* // action: "CREATE" || "UPDATE_METADATA" || "ACTIVE" || "INACTIVE" || "DELETE" || "UNDER_REVIEW" || "REVIEWED" || "IMPORT_EVIDENCE",
|
|
44
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // createdBy: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
38
51
|
* ```
|
|
39
52
|
*
|
|
40
53
|
* @param GetChangeLogsCommandInput - {@link GetChangeLogsCommandInput}
|
|
@@ -57,6 +70,8 @@ export interface GetChangeLogsCommandOutput extends GetChangeLogsResponse, __Met
|
|
|
57
70
|
* @throws {@link ValidationException} (client fault)
|
|
58
71
|
* <p> The request has invalid or missing parameters. </p>
|
|
59
72
|
*
|
|
73
|
+
* @throws {@link AuditManagerServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
60
75
|
*
|
|
61
76
|
*/
|
|
62
77
|
export declare class GetChangeLogsCommand extends $Command<GetChangeLogsCommandInput, GetChangeLogsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,42 @@ export interface GetControlCommandOutput extends GetControlResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetControlCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetControlResponse
|
|
35
|
+
* // control: { // Control
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // id: "STRING_VALUE",
|
|
38
|
+
* // type: "Standard" || "Custom",
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // description: "STRING_VALUE",
|
|
41
|
+
* // testingInformation: "STRING_VALUE",
|
|
42
|
+
* // actionPlanTitle: "STRING_VALUE",
|
|
43
|
+
* // actionPlanInstructions: "STRING_VALUE",
|
|
44
|
+
* // controlSources: "STRING_VALUE",
|
|
45
|
+
* // controlMappingSources: [ // ControlMappingSources
|
|
46
|
+
* // { // ControlMappingSource
|
|
47
|
+
* // sourceId: "STRING_VALUE",
|
|
48
|
+
* // sourceName: "STRING_VALUE",
|
|
49
|
+
* // sourceDescription: "STRING_VALUE",
|
|
50
|
+
* // sourceSetUpOption: "System_Controls_Mapping" || "Procedural_Controls_Mapping",
|
|
51
|
+
* // sourceType: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL",
|
|
52
|
+
* // sourceKeyword: { // SourceKeyword
|
|
53
|
+
* // keywordInputType: "SELECT_FROM_LIST",
|
|
54
|
+
* // keywordValue: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // sourceFrequency: "DAILY" || "WEEKLY" || "MONTHLY",
|
|
57
|
+
* // troubleshootingText: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
61
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
62
|
+
* // createdBy: "STRING_VALUE",
|
|
63
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
64
|
+
* // tags: { // TagMap
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
34
70
|
* ```
|
|
35
71
|
*
|
|
36
72
|
* @param GetControlCommandInput - {@link GetControlCommandInput}
|
|
@@ -53,6 +89,8 @@ export interface GetControlCommandOutput extends GetControlResponse, __MetadataB
|
|
|
53
89
|
* @throws {@link ValidationException} (client fault)
|
|
54
90
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
91
|
*
|
|
92
|
+
* @throws {@link AuditManagerServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
94
|
*
|
|
57
95
|
*/
|
|
58
96
|
export declare class GetControlCommand extends $Command<GetControlCommandInput, GetControlCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,21 @@ export interface GetDelegationsCommandOutput extends GetDelegationsResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetDelegationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetDelegationsResponse
|
|
36
|
+
* // delegations: [ // DelegationMetadataList
|
|
37
|
+
* // { // DelegationMetadata
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // assessmentName: "STRING_VALUE",
|
|
40
|
+
* // assessmentId: "STRING_VALUE",
|
|
41
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
42
|
+
* // roleArn: "STRING_VALUE",
|
|
43
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // controlSetName: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
35
50
|
* ```
|
|
36
51
|
*
|
|
37
52
|
* @param GetDelegationsCommandInput - {@link GetDelegationsCommandInput}
|
|
@@ -51,6 +66,8 @@ export interface GetDelegationsCommandOutput extends GetDelegationsResponse, __M
|
|
|
51
66
|
* @throws {@link ValidationException} (client fault)
|
|
52
67
|
* <p> The request has invalid or missing parameters. </p>
|
|
53
68
|
*
|
|
69
|
+
* @throws {@link AuditManagerServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
54
71
|
*
|
|
55
72
|
*/
|
|
56
73
|
export declare class GetDelegationsCommand extends $Command<GetDelegationsCommandInput, GetDelegationsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -35,6 +35,37 @@ export interface GetEvidenceByEvidenceFolderCommandOutput extends GetEvidenceByE
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetEvidenceByEvidenceFolderCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetEvidenceByEvidenceFolderResponse
|
|
39
|
+
* // evidence: [ // EvidenceList
|
|
40
|
+
* // { // Evidence
|
|
41
|
+
* // dataSource: "STRING_VALUE",
|
|
42
|
+
* // evidenceAwsAccountId: "STRING_VALUE",
|
|
43
|
+
* // time: new Date("TIMESTAMP"),
|
|
44
|
+
* // eventSource: "STRING_VALUE",
|
|
45
|
+
* // eventName: "STRING_VALUE",
|
|
46
|
+
* // evidenceByType: "STRING_VALUE",
|
|
47
|
+
* // resourcesIncluded: [ // Resources
|
|
48
|
+
* // { // Resource
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // value: "STRING_VALUE",
|
|
51
|
+
* // complianceCheck: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // attributes: { // EvidenceAttributes
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // iamId: "STRING_VALUE",
|
|
58
|
+
* // complianceCheck: "STRING_VALUE",
|
|
59
|
+
* // awsOrganization: "STRING_VALUE",
|
|
60
|
+
* // awsAccountId: "STRING_VALUE",
|
|
61
|
+
* // evidenceFolderId: "STRING_VALUE",
|
|
62
|
+
* // id: "STRING_VALUE",
|
|
63
|
+
* // assessmentReportSelection: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // nextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
38
69
|
* ```
|
|
39
70
|
*
|
|
40
71
|
* @param GetEvidenceByEvidenceFolderCommandInput - {@link GetEvidenceByEvidenceFolderCommandInput}
|
|
@@ -57,6 +88,8 @@ export interface GetEvidenceByEvidenceFolderCommandOutput extends GetEvidenceByE
|
|
|
57
88
|
* @throws {@link ValidationException} (client fault)
|
|
58
89
|
* <p> The request has invalid or missing parameters. </p>
|
|
59
90
|
*
|
|
91
|
+
* @throws {@link AuditManagerServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
60
93
|
*
|
|
61
94
|
*/
|
|
62
95
|
export declare class GetEvidenceByEvidenceFolderCommand extends $Command<GetEvidenceByEvidenceFolderCommandInput, GetEvidenceByEvidenceFolderCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,34 @@ export interface GetEvidenceCommandOutput extends GetEvidenceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetEvidenceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetEvidenceResponse
|
|
38
|
+
* // evidence: { // Evidence
|
|
39
|
+
* // dataSource: "STRING_VALUE",
|
|
40
|
+
* // evidenceAwsAccountId: "STRING_VALUE",
|
|
41
|
+
* // time: new Date("TIMESTAMP"),
|
|
42
|
+
* // eventSource: "STRING_VALUE",
|
|
43
|
+
* // eventName: "STRING_VALUE",
|
|
44
|
+
* // evidenceByType: "STRING_VALUE",
|
|
45
|
+
* // resourcesIncluded: [ // Resources
|
|
46
|
+
* // { // Resource
|
|
47
|
+
* // arn: "STRING_VALUE",
|
|
48
|
+
* // value: "STRING_VALUE",
|
|
49
|
+
* // complianceCheck: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // attributes: { // EvidenceAttributes
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // iamId: "STRING_VALUE",
|
|
56
|
+
* // complianceCheck: "STRING_VALUE",
|
|
57
|
+
* // awsOrganization: "STRING_VALUE",
|
|
58
|
+
* // awsAccountId: "STRING_VALUE",
|
|
59
|
+
* // evidenceFolderId: "STRING_VALUE",
|
|
60
|
+
* // id: "STRING_VALUE",
|
|
61
|
+
* // assessmentReportSelection: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
37
65
|
* ```
|
|
38
66
|
*
|
|
39
67
|
* @param GetEvidenceCommandInput - {@link GetEvidenceCommandInput}
|
|
@@ -56,6 +84,8 @@ export interface GetEvidenceCommandOutput extends GetEvidenceResponse, __Metadat
|
|
|
56
84
|
* @throws {@link ValidationException} (client fault)
|
|
57
85
|
* <p> The request has invalid or missing parameters. </p>
|
|
58
86
|
*
|
|
87
|
+
* @throws {@link AuditManagerServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
59
89
|
*
|
|
60
90
|
*/
|
|
61
91
|
export declare class GetEvidenceCommand extends $Command<GetEvidenceCommandInput, GetEvidenceCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,29 @@ export interface GetEvidenceFolderCommandOutput extends GetEvidenceFolderRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetEvidenceFolderCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetEvidenceFolderResponse
|
|
38
|
+
* // evidenceFolder: { // AssessmentEvidenceFolder
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // date: new Date("TIMESTAMP"),
|
|
41
|
+
* // assessmentId: "STRING_VALUE",
|
|
42
|
+
* // controlSetId: "STRING_VALUE",
|
|
43
|
+
* // controlId: "STRING_VALUE",
|
|
44
|
+
* // id: "STRING_VALUE",
|
|
45
|
+
* // dataSource: "STRING_VALUE",
|
|
46
|
+
* // author: "STRING_VALUE",
|
|
47
|
+
* // totalEvidence: Number("int"),
|
|
48
|
+
* // assessmentReportSelectionCount: Number("int"),
|
|
49
|
+
* // controlName: "STRING_VALUE",
|
|
50
|
+
* // evidenceResourcesIncludedCount: Number("int"),
|
|
51
|
+
* // evidenceByTypeConfigurationDataCount: Number("int"),
|
|
52
|
+
* // evidenceByTypeManualCount: Number("int"),
|
|
53
|
+
* // evidenceByTypeComplianceCheckCount: Number("int"),
|
|
54
|
+
* // evidenceByTypeComplianceCheckIssuesCount: Number("int"),
|
|
55
|
+
* // evidenceByTypeUserActivityCount: Number("int"),
|
|
56
|
+
* // evidenceAwsServiceSourceCount: Number("int"),
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
37
60
|
* ```
|
|
38
61
|
*
|
|
39
62
|
* @param GetEvidenceFolderCommandInput - {@link GetEvidenceFolderCommandInput}
|
|
@@ -56,6 +79,8 @@ export interface GetEvidenceFolderCommandOutput extends GetEvidenceFolderRespons
|
|
|
56
79
|
* @throws {@link ValidationException} (client fault)
|
|
57
80
|
* <p> The request has invalid or missing parameters. </p>
|
|
58
81
|
*
|
|
82
|
+
* @throws {@link AuditManagerServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
59
84
|
*
|
|
60
85
|
*/
|
|
61
86
|
export declare class GetEvidenceFolderCommand extends $Command<GetEvidenceFolderCommandInput, GetEvidenceFolderCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,32 @@ export interface GetEvidenceFoldersByAssessmentCommandOutput extends GetEvidence
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetEvidenceFoldersByAssessmentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetEvidenceFoldersByAssessmentResponse
|
|
38
|
+
* // evidenceFolders: [ // AssessmentEvidenceFolders
|
|
39
|
+
* // { // AssessmentEvidenceFolder
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // date: new Date("TIMESTAMP"),
|
|
42
|
+
* // assessmentId: "STRING_VALUE",
|
|
43
|
+
* // controlSetId: "STRING_VALUE",
|
|
44
|
+
* // controlId: "STRING_VALUE",
|
|
45
|
+
* // id: "STRING_VALUE",
|
|
46
|
+
* // dataSource: "STRING_VALUE",
|
|
47
|
+
* // author: "STRING_VALUE",
|
|
48
|
+
* // totalEvidence: Number("int"),
|
|
49
|
+
* // assessmentReportSelectionCount: Number("int"),
|
|
50
|
+
* // controlName: "STRING_VALUE",
|
|
51
|
+
* // evidenceResourcesIncludedCount: Number("int"),
|
|
52
|
+
* // evidenceByTypeConfigurationDataCount: Number("int"),
|
|
53
|
+
* // evidenceByTypeManualCount: Number("int"),
|
|
54
|
+
* // evidenceByTypeComplianceCheckCount: Number("int"),
|
|
55
|
+
* // evidenceByTypeComplianceCheckIssuesCount: Number("int"),
|
|
56
|
+
* // evidenceByTypeUserActivityCount: Number("int"),
|
|
57
|
+
* // evidenceAwsServiceSourceCount: Number("int"),
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // nextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
37
63
|
* ```
|
|
38
64
|
*
|
|
39
65
|
* @param GetEvidenceFoldersByAssessmentCommandInput - {@link GetEvidenceFoldersByAssessmentCommandInput}
|
|
@@ -56,6 +82,8 @@ export interface GetEvidenceFoldersByAssessmentCommandOutput extends GetEvidence
|
|
|
56
82
|
* @throws {@link ValidationException} (client fault)
|
|
57
83
|
* <p> The request has invalid or missing parameters. </p>
|
|
58
84
|
*
|
|
85
|
+
* @throws {@link AuditManagerServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
59
87
|
*
|
|
60
88
|
*/
|
|
61
89
|
export declare class GetEvidenceFoldersByAssessmentCommand extends $Command<GetEvidenceFoldersByAssessmentCommandInput, GetEvidenceFoldersByAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -36,6 +36,32 @@ export interface GetEvidenceFoldersByAssessmentControlCommandOutput extends GetE
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetEvidenceFoldersByAssessmentControlCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetEvidenceFoldersByAssessmentControlResponse
|
|
40
|
+
* // evidenceFolders: [ // AssessmentEvidenceFolders
|
|
41
|
+
* // { // AssessmentEvidenceFolder
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // date: new Date("TIMESTAMP"),
|
|
44
|
+
* // assessmentId: "STRING_VALUE",
|
|
45
|
+
* // controlSetId: "STRING_VALUE",
|
|
46
|
+
* // controlId: "STRING_VALUE",
|
|
47
|
+
* // id: "STRING_VALUE",
|
|
48
|
+
* // dataSource: "STRING_VALUE",
|
|
49
|
+
* // author: "STRING_VALUE",
|
|
50
|
+
* // totalEvidence: Number("int"),
|
|
51
|
+
* // assessmentReportSelectionCount: Number("int"),
|
|
52
|
+
* // controlName: "STRING_VALUE",
|
|
53
|
+
* // evidenceResourcesIncludedCount: Number("int"),
|
|
54
|
+
* // evidenceByTypeConfigurationDataCount: Number("int"),
|
|
55
|
+
* // evidenceByTypeManualCount: Number("int"),
|
|
56
|
+
* // evidenceByTypeComplianceCheckCount: Number("int"),
|
|
57
|
+
* // evidenceByTypeComplianceCheckIssuesCount: Number("int"),
|
|
58
|
+
* // evidenceByTypeUserActivityCount: Number("int"),
|
|
59
|
+
* // evidenceAwsServiceSourceCount: Number("int"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
39
65
|
* ```
|
|
40
66
|
*
|
|
41
67
|
* @param GetEvidenceFoldersByAssessmentControlCommandInput - {@link GetEvidenceFoldersByAssessmentControlCommandInput}
|
|
@@ -58,6 +84,8 @@ export interface GetEvidenceFoldersByAssessmentControlCommandOutput extends GetE
|
|
|
58
84
|
* @throws {@link ValidationException} (client fault)
|
|
59
85
|
* <p> The request has invalid or missing parameters. </p>
|
|
60
86
|
*
|
|
87
|
+
* @throws {@link AuditManagerServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
61
89
|
*
|
|
62
90
|
*/
|
|
63
91
|
export declare class GetEvidenceFoldersByAssessmentControlCommand extends $Command<GetEvidenceFoldersByAssessmentControlCommandInput, GetEvidenceFoldersByAssessmentControlCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface GetInsightsByAssessmentCommandOutput extends GetInsightsByAsses
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetInsightsByAssessmentCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetInsightsByAssessmentResponse
|
|
35
|
+
* // insights: { // InsightsByAssessment
|
|
36
|
+
* // noncompliantEvidenceCount: Number("int"),
|
|
37
|
+
* // compliantEvidenceCount: Number("int"),
|
|
38
|
+
* // inconclusiveEvidenceCount: Number("int"),
|
|
39
|
+
* // assessmentControlsCountByNoncompliantEvidence: Number("int"),
|
|
40
|
+
* // totalAssessmentControlsCount: Number("int"),
|
|
41
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetInsightsByAssessmentCommandInput - {@link GetInsightsByAssessmentCommandInput}
|
|
@@ -53,6 +64,8 @@ export interface GetInsightsByAssessmentCommandOutput extends GetInsightsByAsses
|
|
|
53
64
|
* @throws {@link ValidationException} (client fault)
|
|
54
65
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
66
|
*
|
|
67
|
+
* @throws {@link AuditManagerServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
69
|
*
|
|
57
70
|
*/
|
|
58
71
|
export declare class GetInsightsByAssessmentCommand extends $Command<GetInsightsByAssessmentCommandInput, GetInsightsByAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -29,6 +29,18 @@ export interface GetInsightsCommandOutput extends GetInsightsResponse, __Metadat
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new GetInsightsCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // GetInsightsResponse
|
|
33
|
+
* // insights: { // Insights
|
|
34
|
+
* // activeAssessmentsCount: Number("int"),
|
|
35
|
+
* // noncompliantEvidenceCount: Number("int"),
|
|
36
|
+
* // compliantEvidenceCount: Number("int"),
|
|
37
|
+
* // inconclusiveEvidenceCount: Number("int"),
|
|
38
|
+
* // assessmentControlsCountByNoncompliantEvidence: Number("int"),
|
|
39
|
+
* // totalAssessmentControlsCount: Number("int"),
|
|
40
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
32
44
|
* ```
|
|
33
45
|
*
|
|
34
46
|
* @param GetInsightsCommandInput - {@link GetInsightsCommandInput}
|
|
@@ -45,6 +57,8 @@ export interface GetInsightsCommandOutput extends GetInsightsResponse, __Metadat
|
|
|
45
57
|
* <p> An internal service error occurred during the processing of your request. Try again
|
|
46
58
|
* later. </p>
|
|
47
59
|
*
|
|
60
|
+
* @throws {@link AuditManagerServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
48
62
|
*
|
|
49
63
|
*/
|
|
50
64
|
export declare class GetInsightsCommand extends $Command<GetInsightsCommandInput, GetInsightsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -30,6 +30,11 @@ export interface GetOrganizationAdminAccountCommandOutput extends GetOrganizatio
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new GetOrganizationAdminAccountCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // GetOrganizationAdminAccountResponse
|
|
34
|
+
* // adminAccountId: "STRING_VALUE",
|
|
35
|
+
* // organizationId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
35
40
|
* @param GetOrganizationAdminAccountCommandInput - {@link GetOrganizationAdminAccountCommandInput}
|
|
@@ -52,6 +57,8 @@ export interface GetOrganizationAdminAccountCommandOutput extends GetOrganizatio
|
|
|
52
57
|
* @throws {@link ValidationException} (client fault)
|
|
53
58
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
59
|
*
|
|
60
|
+
* @throws {@link AuditManagerServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
55
62
|
*
|
|
56
63
|
*/
|
|
57
64
|
export declare class GetOrganizationAdminAccountCommand extends $Command<GetOrganizationAdminAccountCommandInput, GetOrganizationAdminAccountCommandOutput, AuditManagerClientResolvedConfig> {
|