@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
|
@@ -57,6 +57,129 @@ export interface UpdateAssessmentCommandOutput extends UpdateAssessmentResponse,
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new UpdateAssessmentCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // UpdateAssessmentResponse
|
|
61
|
+
* // assessment: { // Assessment
|
|
62
|
+
* // arn: "STRING_VALUE",
|
|
63
|
+
* // awsAccount: { // AWSAccount
|
|
64
|
+
* // id: "STRING_VALUE",
|
|
65
|
+
* // emailAddress: "STRING_VALUE",
|
|
66
|
+
* // name: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // metadata: { // AssessmentMetadata
|
|
69
|
+
* // name: "STRING_VALUE",
|
|
70
|
+
* // id: "STRING_VALUE",
|
|
71
|
+
* // description: "STRING_VALUE",
|
|
72
|
+
* // complianceType: "STRING_VALUE",
|
|
73
|
+
* // status: "ACTIVE" || "INACTIVE",
|
|
74
|
+
* // assessmentReportsDestination: { // AssessmentReportsDestination
|
|
75
|
+
* // destinationType: "S3",
|
|
76
|
+
* // destination: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // scope: { // Scope
|
|
79
|
+
* // awsAccounts: [ // AWSAccounts
|
|
80
|
+
* // {
|
|
81
|
+
* // id: "STRING_VALUE",
|
|
82
|
+
* // emailAddress: "STRING_VALUE",
|
|
83
|
+
* // name: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // awsServices: [ // AWSServices
|
|
87
|
+
* // { // AWSService
|
|
88
|
+
* // serviceName: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // ],
|
|
91
|
+
* // },
|
|
92
|
+
* // roles: [ // Roles
|
|
93
|
+
* // { // Role
|
|
94
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
95
|
+
* // roleArn: "STRING_VALUE", // required
|
|
96
|
+
* // },
|
|
97
|
+
* // ],
|
|
98
|
+
* // delegations: [ // Delegations
|
|
99
|
+
* // { // Delegation
|
|
100
|
+
* // id: "STRING_VALUE",
|
|
101
|
+
* // assessmentName: "STRING_VALUE",
|
|
102
|
+
* // assessmentId: "STRING_VALUE",
|
|
103
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
104
|
+
* // roleArn: "STRING_VALUE",
|
|
105
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
106
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
107
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
108
|
+
* // controlSetId: "STRING_VALUE",
|
|
109
|
+
* // comment: "STRING_VALUE",
|
|
110
|
+
* // createdBy: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // ],
|
|
113
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
114
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
115
|
+
* // },
|
|
116
|
+
* // framework: { // AssessmentFramework
|
|
117
|
+
* // id: "STRING_VALUE",
|
|
118
|
+
* // arn: "STRING_VALUE",
|
|
119
|
+
* // metadata: { // FrameworkMetadata
|
|
120
|
+
* // name: "STRING_VALUE",
|
|
121
|
+
* // description: "STRING_VALUE",
|
|
122
|
+
* // logo: "STRING_VALUE",
|
|
123
|
+
* // complianceType: "STRING_VALUE",
|
|
124
|
+
* // },
|
|
125
|
+
* // controlSets: [ // AssessmentControlSets
|
|
126
|
+
* // { // AssessmentControlSet
|
|
127
|
+
* // id: "STRING_VALUE",
|
|
128
|
+
* // description: "STRING_VALUE",
|
|
129
|
+
* // status: "ACTIVE" || "UNDER_REVIEW" || "REVIEWED",
|
|
130
|
+
* // roles: [
|
|
131
|
+
* // {
|
|
132
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
133
|
+
* // roleArn: "STRING_VALUE", // required
|
|
134
|
+
* // },
|
|
135
|
+
* // ],
|
|
136
|
+
* // controls: [ // AssessmentControls
|
|
137
|
+
* // { // AssessmentControl
|
|
138
|
+
* // id: "STRING_VALUE",
|
|
139
|
+
* // name: "STRING_VALUE",
|
|
140
|
+
* // description: "STRING_VALUE",
|
|
141
|
+
* // status: "UNDER_REVIEW" || "REVIEWED" || "INACTIVE",
|
|
142
|
+
* // response: "MANUAL" || "AUTOMATE" || "DEFER" || "IGNORE",
|
|
143
|
+
* // comments: [ // ControlComments
|
|
144
|
+
* // { // ControlComment
|
|
145
|
+
* // authorName: "STRING_VALUE",
|
|
146
|
+
* // commentBody: "STRING_VALUE",
|
|
147
|
+
* // postedDate: new Date("TIMESTAMP"),
|
|
148
|
+
* // },
|
|
149
|
+
* // ],
|
|
150
|
+
* // evidenceSources: [ // EvidenceSources
|
|
151
|
+
* // "STRING_VALUE",
|
|
152
|
+
* // ],
|
|
153
|
+
* // evidenceCount: Number("int"),
|
|
154
|
+
* // assessmentReportEvidenceCount: Number("int"),
|
|
155
|
+
* // },
|
|
156
|
+
* // ],
|
|
157
|
+
* // delegations: [
|
|
158
|
+
* // {
|
|
159
|
+
* // id: "STRING_VALUE",
|
|
160
|
+
* // assessmentName: "STRING_VALUE",
|
|
161
|
+
* // assessmentId: "STRING_VALUE",
|
|
162
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
163
|
+
* // roleArn: "STRING_VALUE",
|
|
164
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
165
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
166
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
167
|
+
* // controlSetId: "STRING_VALUE",
|
|
168
|
+
* // comment: "STRING_VALUE",
|
|
169
|
+
* // createdBy: "STRING_VALUE",
|
|
170
|
+
* // },
|
|
171
|
+
* // ],
|
|
172
|
+
* // systemEvidenceCount: Number("int"),
|
|
173
|
+
* // manualEvidenceCount: Number("int"),
|
|
174
|
+
* // },
|
|
175
|
+
* // ],
|
|
176
|
+
* // },
|
|
177
|
+
* // tags: { // TagMap
|
|
178
|
+
* // "<keys>": "STRING_VALUE",
|
|
179
|
+
* // },
|
|
180
|
+
* // },
|
|
181
|
+
* // };
|
|
182
|
+
*
|
|
60
183
|
* ```
|
|
61
184
|
*
|
|
62
185
|
* @param UpdateAssessmentCommandInput - {@link UpdateAssessmentCommandInput}
|
|
@@ -79,6 +202,8 @@ export interface UpdateAssessmentCommandOutput extends UpdateAssessmentResponse,
|
|
|
79
202
|
* @throws {@link ValidationException} (client fault)
|
|
80
203
|
* <p> The request has invalid or missing parameters. </p>
|
|
81
204
|
*
|
|
205
|
+
* @throws {@link AuditManagerServiceException}
|
|
206
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
82
207
|
*
|
|
83
208
|
*/
|
|
84
209
|
export declare class UpdateAssessmentCommand extends $Command<UpdateAssessmentCommandInput, UpdateAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -35,6 +35,28 @@ export interface UpdateAssessmentControlCommandOutput extends UpdateAssessmentCo
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateAssessmentControlCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateAssessmentControlResponse
|
|
39
|
+
* // control: { // AssessmentControl
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // description: "STRING_VALUE",
|
|
43
|
+
* // status: "UNDER_REVIEW" || "REVIEWED" || "INACTIVE",
|
|
44
|
+
* // response: "MANUAL" || "AUTOMATE" || "DEFER" || "IGNORE",
|
|
45
|
+
* // comments: [ // ControlComments
|
|
46
|
+
* // { // ControlComment
|
|
47
|
+
* // authorName: "STRING_VALUE",
|
|
48
|
+
* // commentBody: "STRING_VALUE",
|
|
49
|
+
* // postedDate: new Date("TIMESTAMP"),
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // evidenceSources: [ // EvidenceSources
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // evidenceCount: Number("int"),
|
|
56
|
+
* // assessmentReportEvidenceCount: Number("int"),
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
38
60
|
* ```
|
|
39
61
|
*
|
|
40
62
|
* @param UpdateAssessmentControlCommandInput - {@link UpdateAssessmentControlCommandInput}
|
|
@@ -57,6 +79,8 @@ export interface UpdateAssessmentControlCommandOutput extends UpdateAssessmentCo
|
|
|
57
79
|
* @throws {@link ValidationException} (client fault)
|
|
58
80
|
* <p> The request has invalid or missing parameters. </p>
|
|
59
81
|
*
|
|
82
|
+
* @throws {@link AuditManagerServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
60
84
|
*
|
|
61
85
|
*/
|
|
62
86
|
export declare class UpdateAssessmentControlCommand extends $Command<UpdateAssessmentControlCommandInput, UpdateAssessmentControlCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,58 @@ export interface UpdateAssessmentControlSetStatusCommandOutput extends UpdateAss
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateAssessmentControlSetStatusCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateAssessmentControlSetStatusResponse
|
|
38
|
+
* // controlSet: { // AssessmentControlSet
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // description: "STRING_VALUE",
|
|
41
|
+
* // status: "ACTIVE" || "UNDER_REVIEW" || "REVIEWED",
|
|
42
|
+
* // roles: [ // Roles
|
|
43
|
+
* // { // Role
|
|
44
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
45
|
+
* // roleArn: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // controls: [ // AssessmentControls
|
|
49
|
+
* // { // AssessmentControl
|
|
50
|
+
* // id: "STRING_VALUE",
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // description: "STRING_VALUE",
|
|
53
|
+
* // status: "UNDER_REVIEW" || "REVIEWED" || "INACTIVE",
|
|
54
|
+
* // response: "MANUAL" || "AUTOMATE" || "DEFER" || "IGNORE",
|
|
55
|
+
* // comments: [ // ControlComments
|
|
56
|
+
* // { // ControlComment
|
|
57
|
+
* // authorName: "STRING_VALUE",
|
|
58
|
+
* // commentBody: "STRING_VALUE",
|
|
59
|
+
* // postedDate: new Date("TIMESTAMP"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // evidenceSources: [ // EvidenceSources
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // evidenceCount: Number("int"),
|
|
66
|
+
* // assessmentReportEvidenceCount: Number("int"),
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // delegations: [ // Delegations
|
|
70
|
+
* // { // Delegation
|
|
71
|
+
* // id: "STRING_VALUE",
|
|
72
|
+
* // assessmentName: "STRING_VALUE",
|
|
73
|
+
* // assessmentId: "STRING_VALUE",
|
|
74
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
75
|
+
* // roleArn: "STRING_VALUE",
|
|
76
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
77
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
78
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
79
|
+
* // controlSetId: "STRING_VALUE",
|
|
80
|
+
* // comment: "STRING_VALUE",
|
|
81
|
+
* // createdBy: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // systemEvidenceCount: Number("int"),
|
|
85
|
+
* // manualEvidenceCount: Number("int"),
|
|
86
|
+
* // },
|
|
87
|
+
* // };
|
|
88
|
+
*
|
|
37
89
|
* ```
|
|
38
90
|
*
|
|
39
91
|
* @param UpdateAssessmentControlSetStatusCommandInput - {@link UpdateAssessmentControlSetStatusCommandInput}
|
|
@@ -56,6 +108,8 @@ export interface UpdateAssessmentControlSetStatusCommandOutput extends UpdateAss
|
|
|
56
108
|
* @throws {@link ValidationException} (client fault)
|
|
57
109
|
* <p> The request has invalid or missing parameters. </p>
|
|
58
110
|
*
|
|
111
|
+
* @throws {@link AuditManagerServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
59
113
|
*
|
|
60
114
|
*/
|
|
61
115
|
export declare class UpdateAssessmentControlSetStatusCommand extends $Command<UpdateAssessmentControlSetStatusCommandInput, UpdateAssessmentControlSetStatusCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -45,6 +45,67 @@ export interface UpdateAssessmentFrameworkCommandOutput extends UpdateAssessment
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new UpdateAssessmentFrameworkCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // UpdateAssessmentFrameworkResponse
|
|
49
|
+
* // framework: { // Framework
|
|
50
|
+
* // arn: "STRING_VALUE",
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // name: "STRING_VALUE",
|
|
53
|
+
* // type: "Standard" || "Custom",
|
|
54
|
+
* // complianceType: "STRING_VALUE",
|
|
55
|
+
* // description: "STRING_VALUE",
|
|
56
|
+
* // logo: "STRING_VALUE",
|
|
57
|
+
* // controlSources: "STRING_VALUE",
|
|
58
|
+
* // controlSets: [ // ControlSets
|
|
59
|
+
* // { // ControlSet
|
|
60
|
+
* // id: "STRING_VALUE",
|
|
61
|
+
* // name: "STRING_VALUE",
|
|
62
|
+
* // controls: [ // Controls
|
|
63
|
+
* // { // Control
|
|
64
|
+
* // arn: "STRING_VALUE",
|
|
65
|
+
* // id: "STRING_VALUE",
|
|
66
|
+
* // type: "Standard" || "Custom",
|
|
67
|
+
* // name: "STRING_VALUE",
|
|
68
|
+
* // description: "STRING_VALUE",
|
|
69
|
+
* // testingInformation: "STRING_VALUE",
|
|
70
|
+
* // actionPlanTitle: "STRING_VALUE",
|
|
71
|
+
* // actionPlanInstructions: "STRING_VALUE",
|
|
72
|
+
* // controlSources: "STRING_VALUE",
|
|
73
|
+
* // controlMappingSources: [ // ControlMappingSources
|
|
74
|
+
* // { // ControlMappingSource
|
|
75
|
+
* // sourceId: "STRING_VALUE",
|
|
76
|
+
* // sourceName: "STRING_VALUE",
|
|
77
|
+
* // sourceDescription: "STRING_VALUE",
|
|
78
|
+
* // sourceSetUpOption: "System_Controls_Mapping" || "Procedural_Controls_Mapping",
|
|
79
|
+
* // sourceType: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL",
|
|
80
|
+
* // sourceKeyword: { // SourceKeyword
|
|
81
|
+
* // keywordInputType: "SELECT_FROM_LIST",
|
|
82
|
+
* // keywordValue: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // sourceFrequency: "DAILY" || "WEEKLY" || "MONTHLY",
|
|
85
|
+
* // troubleshootingText: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
89
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
90
|
+
* // createdBy: "STRING_VALUE",
|
|
91
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
92
|
+
* // tags: { // TagMap
|
|
93
|
+
* // "<keys>": "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
100
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
101
|
+
* // createdBy: "STRING_VALUE",
|
|
102
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
103
|
+
* // tags: {
|
|
104
|
+
* // "<keys>": "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // },
|
|
107
|
+
* // };
|
|
108
|
+
*
|
|
48
109
|
* ```
|
|
49
110
|
*
|
|
50
111
|
* @param UpdateAssessmentFrameworkCommandInput - {@link UpdateAssessmentFrameworkCommandInput}
|
|
@@ -67,6 +128,8 @@ export interface UpdateAssessmentFrameworkCommandOutput extends UpdateAssessment
|
|
|
67
128
|
* @throws {@link ValidationException} (client fault)
|
|
68
129
|
* <p> The request has invalid or missing parameters. </p>
|
|
69
130
|
*
|
|
131
|
+
* @throws {@link AuditManagerServiceException}
|
|
132
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
70
133
|
*
|
|
71
134
|
*/
|
|
72
135
|
export declare class UpdateAssessmentFrameworkCommand extends $Command<UpdateAssessmentFrameworkCommandInput, UpdateAssessmentFrameworkCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -33,6 +33,26 @@ export interface UpdateAssessmentFrameworkShareCommandOutput extends UpdateAsses
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateAssessmentFrameworkShareCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateAssessmentFrameworkShareResponse
|
|
37
|
+
* // assessmentFrameworkShareRequest: { // AssessmentFrameworkShareRequest
|
|
38
|
+
* // id: "STRING_VALUE",
|
|
39
|
+
* // frameworkId: "STRING_VALUE",
|
|
40
|
+
* // frameworkName: "STRING_VALUE",
|
|
41
|
+
* // frameworkDescription: "STRING_VALUE",
|
|
42
|
+
* // status: "ACTIVE" || "REPLICATING" || "SHARED" || "EXPIRING" || "FAILED" || "EXPIRED" || "DECLINED" || "REVOKED",
|
|
43
|
+
* // sourceAccount: "STRING_VALUE",
|
|
44
|
+
* // destinationAccount: "STRING_VALUE",
|
|
45
|
+
* // destinationRegion: "STRING_VALUE",
|
|
46
|
+
* // expirationTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
49
|
+
* // comment: "STRING_VALUE",
|
|
50
|
+
* // standardControlsCount: Number("int"),
|
|
51
|
+
* // customControlsCount: Number("int"),
|
|
52
|
+
* // complianceType: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
36
56
|
* ```
|
|
37
57
|
*
|
|
38
58
|
* @param UpdateAssessmentFrameworkShareCommandInput - {@link UpdateAssessmentFrameworkShareCommandInput}
|
|
@@ -61,6 +81,8 @@ export interface UpdateAssessmentFrameworkShareCommandOutput extends UpdateAsses
|
|
|
61
81
|
* @throws {@link ValidationException} (client fault)
|
|
62
82
|
* <p> The request has invalid or missing parameters. </p>
|
|
63
83
|
*
|
|
84
|
+
* @throws {@link AuditManagerServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
64
86
|
*
|
|
65
87
|
*/
|
|
66
88
|
export declare class UpdateAssessmentFrameworkShareCommand extends $Command<UpdateAssessmentFrameworkShareCommandInput, UpdateAssessmentFrameworkShareCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,129 @@ export interface UpdateAssessmentStatusCommandOutput extends UpdateAssessmentSta
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateAssessmentStatusCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateAssessmentStatusResponse
|
|
36
|
+
* // assessment: { // Assessment
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // awsAccount: { // AWSAccount
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // emailAddress: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // metadata: { // AssessmentMetadata
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // id: "STRING_VALUE",
|
|
46
|
+
* // description: "STRING_VALUE",
|
|
47
|
+
* // complianceType: "STRING_VALUE",
|
|
48
|
+
* // status: "ACTIVE" || "INACTIVE",
|
|
49
|
+
* // assessmentReportsDestination: { // AssessmentReportsDestination
|
|
50
|
+
* // destinationType: "S3",
|
|
51
|
+
* // destination: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // scope: { // Scope
|
|
54
|
+
* // awsAccounts: [ // AWSAccounts
|
|
55
|
+
* // {
|
|
56
|
+
* // id: "STRING_VALUE",
|
|
57
|
+
* // emailAddress: "STRING_VALUE",
|
|
58
|
+
* // name: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // awsServices: [ // AWSServices
|
|
62
|
+
* // { // AWSService
|
|
63
|
+
* // serviceName: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // },
|
|
67
|
+
* // roles: [ // Roles
|
|
68
|
+
* // { // Role
|
|
69
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
70
|
+
* // roleArn: "STRING_VALUE", // required
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // delegations: [ // Delegations
|
|
74
|
+
* // { // Delegation
|
|
75
|
+
* // id: "STRING_VALUE",
|
|
76
|
+
* // assessmentName: "STRING_VALUE",
|
|
77
|
+
* // assessmentId: "STRING_VALUE",
|
|
78
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
79
|
+
* // roleArn: "STRING_VALUE",
|
|
80
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
81
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
82
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
83
|
+
* // controlSetId: "STRING_VALUE",
|
|
84
|
+
* // comment: "STRING_VALUE",
|
|
85
|
+
* // createdBy: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
89
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
90
|
+
* // },
|
|
91
|
+
* // framework: { // AssessmentFramework
|
|
92
|
+
* // id: "STRING_VALUE",
|
|
93
|
+
* // arn: "STRING_VALUE",
|
|
94
|
+
* // metadata: { // FrameworkMetadata
|
|
95
|
+
* // name: "STRING_VALUE",
|
|
96
|
+
* // description: "STRING_VALUE",
|
|
97
|
+
* // logo: "STRING_VALUE",
|
|
98
|
+
* // complianceType: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // controlSets: [ // AssessmentControlSets
|
|
101
|
+
* // { // AssessmentControlSet
|
|
102
|
+
* // id: "STRING_VALUE",
|
|
103
|
+
* // description: "STRING_VALUE",
|
|
104
|
+
* // status: "ACTIVE" || "UNDER_REVIEW" || "REVIEWED",
|
|
105
|
+
* // roles: [
|
|
106
|
+
* // {
|
|
107
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
108
|
+
* // roleArn: "STRING_VALUE", // required
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // controls: [ // AssessmentControls
|
|
112
|
+
* // { // AssessmentControl
|
|
113
|
+
* // id: "STRING_VALUE",
|
|
114
|
+
* // name: "STRING_VALUE",
|
|
115
|
+
* // description: "STRING_VALUE",
|
|
116
|
+
* // status: "UNDER_REVIEW" || "REVIEWED" || "INACTIVE",
|
|
117
|
+
* // response: "MANUAL" || "AUTOMATE" || "DEFER" || "IGNORE",
|
|
118
|
+
* // comments: [ // ControlComments
|
|
119
|
+
* // { // ControlComment
|
|
120
|
+
* // authorName: "STRING_VALUE",
|
|
121
|
+
* // commentBody: "STRING_VALUE",
|
|
122
|
+
* // postedDate: new Date("TIMESTAMP"),
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // evidenceSources: [ // EvidenceSources
|
|
126
|
+
* // "STRING_VALUE",
|
|
127
|
+
* // ],
|
|
128
|
+
* // evidenceCount: Number("int"),
|
|
129
|
+
* // assessmentReportEvidenceCount: Number("int"),
|
|
130
|
+
* // },
|
|
131
|
+
* // ],
|
|
132
|
+
* // delegations: [
|
|
133
|
+
* // {
|
|
134
|
+
* // id: "STRING_VALUE",
|
|
135
|
+
* // assessmentName: "STRING_VALUE",
|
|
136
|
+
* // assessmentId: "STRING_VALUE",
|
|
137
|
+
* // status: "IN_PROGRESS" || "UNDER_REVIEW" || "COMPLETE",
|
|
138
|
+
* // roleArn: "STRING_VALUE",
|
|
139
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER",
|
|
140
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
141
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
142
|
+
* // controlSetId: "STRING_VALUE",
|
|
143
|
+
* // comment: "STRING_VALUE",
|
|
144
|
+
* // createdBy: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // ],
|
|
147
|
+
* // systemEvidenceCount: Number("int"),
|
|
148
|
+
* // manualEvidenceCount: Number("int"),
|
|
149
|
+
* // },
|
|
150
|
+
* // ],
|
|
151
|
+
* // },
|
|
152
|
+
* // tags: { // TagMap
|
|
153
|
+
* // "<keys>": "STRING_VALUE",
|
|
154
|
+
* // },
|
|
155
|
+
* // },
|
|
156
|
+
* // };
|
|
157
|
+
*
|
|
35
158
|
* ```
|
|
36
159
|
*
|
|
37
160
|
* @param UpdateAssessmentStatusCommandInput - {@link UpdateAssessmentStatusCommandInput}
|
|
@@ -60,6 +183,8 @@ export interface UpdateAssessmentStatusCommandOutput extends UpdateAssessmentSta
|
|
|
60
183
|
* @throws {@link ValidationException} (client fault)
|
|
61
184
|
* <p> The request has invalid or missing parameters. </p>
|
|
62
185
|
*
|
|
186
|
+
* @throws {@link AuditManagerServiceException}
|
|
187
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
63
188
|
*
|
|
64
189
|
*/
|
|
65
190
|
export declare class UpdateAssessmentStatusCommand extends $Command<UpdateAssessmentStatusCommandInput, UpdateAssessmentStatusCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -51,6 +51,42 @@ export interface UpdateControlCommandOutput extends UpdateControlResponse, __Met
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new UpdateControlCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // UpdateControlResponse
|
|
55
|
+
* // control: { // Control
|
|
56
|
+
* // arn: "STRING_VALUE",
|
|
57
|
+
* // id: "STRING_VALUE",
|
|
58
|
+
* // type: "Standard" || "Custom",
|
|
59
|
+
* // name: "STRING_VALUE",
|
|
60
|
+
* // description: "STRING_VALUE",
|
|
61
|
+
* // testingInformation: "STRING_VALUE",
|
|
62
|
+
* // actionPlanTitle: "STRING_VALUE",
|
|
63
|
+
* // actionPlanInstructions: "STRING_VALUE",
|
|
64
|
+
* // controlSources: "STRING_VALUE",
|
|
65
|
+
* // controlMappingSources: [ // ControlMappingSources
|
|
66
|
+
* // { // ControlMappingSource
|
|
67
|
+
* // sourceId: "STRING_VALUE",
|
|
68
|
+
* // sourceName: "STRING_VALUE",
|
|
69
|
+
* // sourceDescription: "STRING_VALUE",
|
|
70
|
+
* // sourceSetUpOption: "System_Controls_Mapping" || "Procedural_Controls_Mapping",
|
|
71
|
+
* // sourceType: "AWS_Cloudtrail" || "AWS_Config" || "AWS_Security_Hub" || "AWS_API_Call" || "MANUAL",
|
|
72
|
+
* // sourceKeyword: { // SourceKeyword
|
|
73
|
+
* // keywordInputType: "SELECT_FROM_LIST",
|
|
74
|
+
* // keywordValue: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // sourceFrequency: "DAILY" || "WEEKLY" || "MONTHLY",
|
|
77
|
+
* // troubleshootingText: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
81
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
82
|
+
* // createdBy: "STRING_VALUE",
|
|
83
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
84
|
+
* // tags: { // TagMap
|
|
85
|
+
* // "<keys>": "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // };
|
|
89
|
+
*
|
|
54
90
|
* ```
|
|
55
91
|
*
|
|
56
92
|
* @param UpdateControlCommandInput - {@link UpdateControlCommandInput}
|
|
@@ -73,6 +109,8 @@ export interface UpdateControlCommandOutput extends UpdateControlResponse, __Met
|
|
|
73
109
|
* @throws {@link ValidationException} (client fault)
|
|
74
110
|
* <p> The request has invalid or missing parameters. </p>
|
|
75
111
|
*
|
|
112
|
+
* @throws {@link AuditManagerServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
76
114
|
*
|
|
77
115
|
*/
|
|
78
116
|
export declare class UpdateControlCommand extends $Command<UpdateControlCommandInput, UpdateControlCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -46,6 +46,33 @@ export interface UpdateSettingsCommandOutput extends UpdateSettingsResponse, __M
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new UpdateSettingsCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // UpdateSettingsResponse
|
|
50
|
+
* // settings: { // Settings
|
|
51
|
+
* // isAwsOrgEnabled: true || false,
|
|
52
|
+
* // snsTopic: "STRING_VALUE",
|
|
53
|
+
* // defaultAssessmentReportsDestination: { // AssessmentReportsDestination
|
|
54
|
+
* // destinationType: "S3",
|
|
55
|
+
* // destination: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // defaultProcessOwners: [ // Roles
|
|
58
|
+
* // { // Role
|
|
59
|
+
* // roleType: "PROCESS_OWNER" || "RESOURCE_OWNER", // required
|
|
60
|
+
* // roleArn: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // kmsKey: "STRING_VALUE",
|
|
64
|
+
* // evidenceFinderEnablement: { // EvidenceFinderEnablement
|
|
65
|
+
* // eventDataStoreArn: "STRING_VALUE",
|
|
66
|
+
* // enablementStatus: "ENABLED" || "DISABLED" || "ENABLE_IN_PROGRESS" || "DISABLE_IN_PROGRESS",
|
|
67
|
+
* // backfillStatus: "NOT_STARTED" || "IN_PROGRESS" || "COMPLETED",
|
|
68
|
+
* // error: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // deregistrationPolicy: { // DeregistrationPolicy
|
|
71
|
+
* // deleteResources: "ALL" || "DEFAULT",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
49
76
|
* ```
|
|
50
77
|
*
|
|
51
78
|
* @param UpdateSettingsCommandInput - {@link UpdateSettingsCommandInput}
|
|
@@ -65,6 +92,8 @@ export interface UpdateSettingsCommandOutput extends UpdateSettingsResponse, __M
|
|
|
65
92
|
* @throws {@link ValidationException} (client fault)
|
|
66
93
|
* <p> The request has invalid or missing parameters. </p>
|
|
67
94
|
*
|
|
95
|
+
* @throws {@link AuditManagerServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
68
97
|
*
|
|
69
98
|
*/
|
|
70
99
|
export declare class UpdateSettingsCommand extends $Command<UpdateSettingsCommandInput, UpdateSettingsCommandOutput, AuditManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface ValidateAssessmentReportIntegrityCommandOutput extends Validate
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ValidateAssessmentReportIntegrityCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ValidateAssessmentReportIntegrityResponse
|
|
35
|
+
* // signatureValid: true || false,
|
|
36
|
+
* // signatureAlgorithm: "STRING_VALUE",
|
|
37
|
+
* // signatureDateTime: "STRING_VALUE",
|
|
38
|
+
* // signatureKeyId: "STRING_VALUE",
|
|
39
|
+
* // validationErrors: [ // ValidationErrors
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param ValidateAssessmentReportIntegrityCommandInput - {@link ValidateAssessmentReportIntegrityCommandInput}
|
|
@@ -53,6 +63,8 @@ export interface ValidateAssessmentReportIntegrityCommandOutput extends Validate
|
|
|
53
63
|
* @throws {@link ValidationException} (client fault)
|
|
54
64
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
65
|
*
|
|
66
|
+
* @throws {@link AuditManagerServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from AuditManager service.</p>
|
|
56
68
|
*
|
|
57
69
|
*/
|
|
58
70
|
export declare class ValidateAssessmentReportIntegrityCommand extends $Command<ValidateAssessmentReportIntegrityCommandInput, ValidateAssessmentReportIntegrityCommandOutput, AuditManagerClientResolvedConfig> {
|