@aws-sdk/client-auditmanager 3.687.0 → 3.691.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/models/models_0.d.ts +451 -451
- package/dist-types/ts3.4/models/models_0.d.ts +459 -451
- package/package.json +7 -7
|
@@ -25,14 +25,14 @@ export declare const ActionEnum: {
|
|
|
25
25
|
};
|
|
26
26
|
export type ActionEnum = (typeof ActionEnum)[keyof typeof ActionEnum];
|
|
27
27
|
export interface AWSAccount {
|
|
28
|
-
id?: string;
|
|
29
|
-
emailAddress?: string;
|
|
30
|
-
name?: string;
|
|
28
|
+
id?: string | undefined;
|
|
29
|
+
emailAddress?: string | undefined;
|
|
30
|
+
name?: string | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface ControlComment {
|
|
33
|
-
authorName?: string;
|
|
34
|
-
commentBody?: string;
|
|
35
|
-
postedDate?: Date;
|
|
33
|
+
authorName?: string | undefined;
|
|
34
|
+
commentBody?: string | undefined;
|
|
35
|
+
postedDate?: Date | undefined;
|
|
36
36
|
}
|
|
37
37
|
export declare const ControlResponse: {
|
|
38
38
|
readonly AUTOMATE: "AUTOMATE";
|
|
@@ -49,15 +49,15 @@ export declare const ControlStatus: {
|
|
|
49
49
|
};
|
|
50
50
|
export type ControlStatus = (typeof ControlStatus)[keyof typeof ControlStatus];
|
|
51
51
|
export interface AssessmentControl {
|
|
52
|
-
id?: string;
|
|
53
|
-
name?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
status?: ControlStatus;
|
|
56
|
-
response?: ControlResponse;
|
|
57
|
-
comments?: ControlComment[];
|
|
58
|
-
evidenceSources?: string[];
|
|
59
|
-
evidenceCount?: number;
|
|
60
|
-
assessmentReportEvidenceCount?: number;
|
|
52
|
+
id?: string | undefined;
|
|
53
|
+
name?: string | undefined;
|
|
54
|
+
description?: string | undefined;
|
|
55
|
+
status?: ControlStatus | undefined;
|
|
56
|
+
response?: ControlResponse | undefined;
|
|
57
|
+
comments?: ControlComment[] | undefined;
|
|
58
|
+
evidenceSources?: string[] | undefined;
|
|
59
|
+
evidenceCount?: number | undefined;
|
|
60
|
+
assessmentReportEvidenceCount?: number | undefined;
|
|
61
61
|
}
|
|
62
62
|
export declare const RoleType: {
|
|
63
63
|
readonly PROCESS_OWNER: "PROCESS_OWNER";
|
|
@@ -72,17 +72,17 @@ export declare const DelegationStatus: {
|
|
|
72
72
|
export type DelegationStatus =
|
|
73
73
|
(typeof DelegationStatus)[keyof typeof DelegationStatus];
|
|
74
74
|
export interface Delegation {
|
|
75
|
-
id?: string;
|
|
76
|
-
assessmentName?: string;
|
|
77
|
-
assessmentId?: string;
|
|
78
|
-
status?: DelegationStatus;
|
|
79
|
-
roleArn?: string;
|
|
80
|
-
roleType?: RoleType;
|
|
81
|
-
creationTime?: Date;
|
|
82
|
-
lastUpdated?: Date;
|
|
83
|
-
controlSetId?: string;
|
|
84
|
-
comment?: string;
|
|
85
|
-
createdBy?: string;
|
|
75
|
+
id?: string | undefined;
|
|
76
|
+
assessmentName?: string | undefined;
|
|
77
|
+
assessmentId?: string | undefined;
|
|
78
|
+
status?: DelegationStatus | undefined;
|
|
79
|
+
roleArn?: string | undefined;
|
|
80
|
+
roleType?: RoleType | undefined;
|
|
81
|
+
creationTime?: Date | undefined;
|
|
82
|
+
lastUpdated?: Date | undefined;
|
|
83
|
+
controlSetId?: string | undefined;
|
|
84
|
+
comment?: string | undefined;
|
|
85
|
+
createdBy?: string | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface Role {
|
|
88
88
|
roleType: RoleType | undefined;
|
|
@@ -96,26 +96,26 @@ export declare const ControlSetStatus: {
|
|
|
96
96
|
export type ControlSetStatus =
|
|
97
97
|
(typeof ControlSetStatus)[keyof typeof ControlSetStatus];
|
|
98
98
|
export interface AssessmentControlSet {
|
|
99
|
-
id?: string;
|
|
100
|
-
description?: string;
|
|
101
|
-
status?: ControlSetStatus;
|
|
102
|
-
roles?: Role[];
|
|
103
|
-
controls?: AssessmentControl[];
|
|
104
|
-
delegations?: Delegation[];
|
|
105
|
-
systemEvidenceCount?: number;
|
|
106
|
-
manualEvidenceCount?: number;
|
|
99
|
+
id?: string | undefined;
|
|
100
|
+
description?: string | undefined;
|
|
101
|
+
status?: ControlSetStatus | undefined;
|
|
102
|
+
roles?: Role[] | undefined;
|
|
103
|
+
controls?: AssessmentControl[] | undefined;
|
|
104
|
+
delegations?: Delegation[] | undefined;
|
|
105
|
+
systemEvidenceCount?: number | undefined;
|
|
106
|
+
manualEvidenceCount?: number | undefined;
|
|
107
107
|
}
|
|
108
108
|
export interface FrameworkMetadata {
|
|
109
|
-
name?: string;
|
|
110
|
-
description?: string;
|
|
111
|
-
logo?: string;
|
|
112
|
-
complianceType?: string;
|
|
109
|
+
name?: string | undefined;
|
|
110
|
+
description?: string | undefined;
|
|
111
|
+
logo?: string | undefined;
|
|
112
|
+
complianceType?: string | undefined;
|
|
113
113
|
}
|
|
114
114
|
export interface AssessmentFramework {
|
|
115
|
-
id?: string;
|
|
116
|
-
arn?: string;
|
|
117
|
-
metadata?: FrameworkMetadata;
|
|
118
|
-
controlSets?: AssessmentControlSet[];
|
|
115
|
+
id?: string | undefined;
|
|
116
|
+
arn?: string | undefined;
|
|
117
|
+
metadata?: FrameworkMetadata | undefined;
|
|
118
|
+
controlSets?: AssessmentControlSet[] | undefined;
|
|
119
119
|
}
|
|
120
120
|
export declare const AssessmentReportDestinationType: {
|
|
121
121
|
readonly S3: "S3";
|
|
@@ -123,15 +123,15 @@ export declare const AssessmentReportDestinationType: {
|
|
|
123
123
|
export type AssessmentReportDestinationType =
|
|
124
124
|
(typeof AssessmentReportDestinationType)[keyof typeof AssessmentReportDestinationType];
|
|
125
125
|
export interface AssessmentReportsDestination {
|
|
126
|
-
destinationType?: AssessmentReportDestinationType;
|
|
127
|
-
destination?: string;
|
|
126
|
+
destinationType?: AssessmentReportDestinationType | undefined;
|
|
127
|
+
destination?: string | undefined;
|
|
128
128
|
}
|
|
129
129
|
export interface AWSService {
|
|
130
|
-
serviceName?: string;
|
|
130
|
+
serviceName?: string | undefined;
|
|
131
131
|
}
|
|
132
132
|
export interface Scope {
|
|
133
|
-
awsAccounts?: AWSAccount[];
|
|
134
|
-
awsServices?: AWSService[];
|
|
133
|
+
awsAccounts?: AWSAccount[] | undefined;
|
|
134
|
+
awsServices?: AWSService[] | undefined;
|
|
135
135
|
}
|
|
136
136
|
export declare const AssessmentStatus: {
|
|
137
137
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -140,44 +140,44 @@ export declare const AssessmentStatus: {
|
|
|
140
140
|
export type AssessmentStatus =
|
|
141
141
|
(typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
142
142
|
export interface AssessmentMetadata {
|
|
143
|
-
name?: string;
|
|
144
|
-
id?: string;
|
|
145
|
-
description?: string;
|
|
146
|
-
complianceType?: string;
|
|
147
|
-
status?: AssessmentStatus;
|
|
148
|
-
assessmentReportsDestination?: AssessmentReportsDestination;
|
|
149
|
-
scope?: Scope;
|
|
150
|
-
roles?: Role[];
|
|
151
|
-
delegations?: Delegation[];
|
|
152
|
-
creationTime?: Date;
|
|
153
|
-
lastUpdated?: Date;
|
|
143
|
+
name?: string | undefined;
|
|
144
|
+
id?: string | undefined;
|
|
145
|
+
description?: string | undefined;
|
|
146
|
+
complianceType?: string | undefined;
|
|
147
|
+
status?: AssessmentStatus | undefined;
|
|
148
|
+
assessmentReportsDestination?: AssessmentReportsDestination | undefined;
|
|
149
|
+
scope?: Scope | undefined;
|
|
150
|
+
roles?: Role[] | undefined;
|
|
151
|
+
delegations?: Delegation[] | undefined;
|
|
152
|
+
creationTime?: Date | undefined;
|
|
153
|
+
lastUpdated?: Date | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface Assessment {
|
|
156
|
-
arn?: string;
|
|
157
|
-
awsAccount?: AWSAccount;
|
|
158
|
-
metadata?: AssessmentMetadata;
|
|
159
|
-
framework?: AssessmentFramework;
|
|
160
|
-
tags?: Record<string, string
|
|
156
|
+
arn?: string | undefined;
|
|
157
|
+
awsAccount?: AWSAccount | undefined;
|
|
158
|
+
metadata?: AssessmentMetadata | undefined;
|
|
159
|
+
framework?: AssessmentFramework | undefined;
|
|
160
|
+
tags?: Record<string, string> | undefined;
|
|
161
161
|
}
|
|
162
162
|
export interface AssessmentEvidenceFolder {
|
|
163
|
-
name?: string;
|
|
164
|
-
date?: Date;
|
|
165
|
-
assessmentId?: string;
|
|
166
|
-
controlSetId?: string;
|
|
167
|
-
controlId?: string;
|
|
168
|
-
id?: string;
|
|
169
|
-
dataSource?: string;
|
|
170
|
-
author?: string;
|
|
171
|
-
totalEvidence?: number;
|
|
172
|
-
assessmentReportSelectionCount?: number;
|
|
173
|
-
controlName?: string;
|
|
174
|
-
evidenceResourcesIncludedCount?: number;
|
|
175
|
-
evidenceByTypeConfigurationDataCount?: number;
|
|
176
|
-
evidenceByTypeManualCount?: number;
|
|
177
|
-
evidenceByTypeComplianceCheckCount?: number;
|
|
178
|
-
evidenceByTypeComplianceCheckIssuesCount?: number;
|
|
179
|
-
evidenceByTypeUserActivityCount?: number;
|
|
180
|
-
evidenceAwsServiceSourceCount?: number;
|
|
163
|
+
name?: string | undefined;
|
|
164
|
+
date?: Date | undefined;
|
|
165
|
+
assessmentId?: string | undefined;
|
|
166
|
+
controlSetId?: string | undefined;
|
|
167
|
+
controlId?: string | undefined;
|
|
168
|
+
id?: string | undefined;
|
|
169
|
+
dataSource?: string | undefined;
|
|
170
|
+
author?: string | undefined;
|
|
171
|
+
totalEvidence?: number | undefined;
|
|
172
|
+
assessmentReportSelectionCount?: number | undefined;
|
|
173
|
+
controlName?: string | undefined;
|
|
174
|
+
evidenceResourcesIncludedCount?: number | undefined;
|
|
175
|
+
evidenceByTypeConfigurationDataCount?: number | undefined;
|
|
176
|
+
evidenceByTypeManualCount?: number | undefined;
|
|
177
|
+
evidenceByTypeComplianceCheckCount?: number | undefined;
|
|
178
|
+
evidenceByTypeComplianceCheckIssuesCount?: number | undefined;
|
|
179
|
+
evidenceByTypeUserActivityCount?: number | undefined;
|
|
180
|
+
evidenceAwsServiceSourceCount?: number | undefined;
|
|
181
181
|
}
|
|
182
182
|
export declare const FrameworkType: {
|
|
183
183
|
readonly CUSTOM: "Custom";
|
|
@@ -185,17 +185,17 @@ export declare const FrameworkType: {
|
|
|
185
185
|
};
|
|
186
186
|
export type FrameworkType = (typeof FrameworkType)[keyof typeof FrameworkType];
|
|
187
187
|
export interface AssessmentFrameworkMetadata {
|
|
188
|
-
arn?: string;
|
|
189
|
-
id?: string;
|
|
190
|
-
type?: FrameworkType;
|
|
191
|
-
name?: string;
|
|
192
|
-
description?: string;
|
|
193
|
-
logo?: string;
|
|
194
|
-
complianceType?: string;
|
|
195
|
-
controlsCount?: number;
|
|
196
|
-
controlSetsCount?: number;
|
|
197
|
-
createdAt?: Date;
|
|
198
|
-
lastUpdatedAt?: Date;
|
|
188
|
+
arn?: string | undefined;
|
|
189
|
+
id?: string | undefined;
|
|
190
|
+
type?: FrameworkType | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
192
|
+
description?: string | undefined;
|
|
193
|
+
logo?: string | undefined;
|
|
194
|
+
complianceType?: string | undefined;
|
|
195
|
+
controlsCount?: number | undefined;
|
|
196
|
+
controlSetsCount?: number | undefined;
|
|
197
|
+
createdAt?: Date | undefined;
|
|
198
|
+
lastUpdatedAt?: Date | undefined;
|
|
199
199
|
}
|
|
200
200
|
export declare const ShareRequestStatus: {
|
|
201
201
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -210,31 +210,31 @@ export declare const ShareRequestStatus: {
|
|
|
210
210
|
export type ShareRequestStatus =
|
|
211
211
|
(typeof ShareRequestStatus)[keyof typeof ShareRequestStatus];
|
|
212
212
|
export interface AssessmentFrameworkShareRequest {
|
|
213
|
-
id?: string;
|
|
214
|
-
frameworkId?: string;
|
|
215
|
-
frameworkName?: string;
|
|
216
|
-
frameworkDescription?: string;
|
|
217
|
-
status?: ShareRequestStatus;
|
|
218
|
-
sourceAccount?: string;
|
|
219
|
-
destinationAccount?: string;
|
|
220
|
-
destinationRegion?: string;
|
|
221
|
-
expirationTime?: Date;
|
|
222
|
-
creationTime?: Date;
|
|
223
|
-
lastUpdated?: Date;
|
|
224
|
-
comment?: string;
|
|
225
|
-
standardControlsCount?: number;
|
|
226
|
-
customControlsCount?: number;
|
|
227
|
-
complianceType?: string;
|
|
213
|
+
id?: string | undefined;
|
|
214
|
+
frameworkId?: string | undefined;
|
|
215
|
+
frameworkName?: string | undefined;
|
|
216
|
+
frameworkDescription?: string | undefined;
|
|
217
|
+
status?: ShareRequestStatus | undefined;
|
|
218
|
+
sourceAccount?: string | undefined;
|
|
219
|
+
destinationAccount?: string | undefined;
|
|
220
|
+
destinationRegion?: string | undefined;
|
|
221
|
+
expirationTime?: Date | undefined;
|
|
222
|
+
creationTime?: Date | undefined;
|
|
223
|
+
lastUpdated?: Date | undefined;
|
|
224
|
+
comment?: string | undefined;
|
|
225
|
+
standardControlsCount?: number | undefined;
|
|
226
|
+
customControlsCount?: number | undefined;
|
|
227
|
+
complianceType?: string | undefined;
|
|
228
228
|
}
|
|
229
229
|
export interface AssessmentMetadataItem {
|
|
230
|
-
name?: string;
|
|
231
|
-
id?: string;
|
|
232
|
-
complianceType?: string;
|
|
233
|
-
status?: AssessmentStatus;
|
|
234
|
-
roles?: Role[];
|
|
235
|
-
delegations?: Delegation[];
|
|
236
|
-
creationTime?: Date;
|
|
237
|
-
lastUpdated?: Date;
|
|
230
|
+
name?: string | undefined;
|
|
231
|
+
id?: string | undefined;
|
|
232
|
+
complianceType?: string | undefined;
|
|
233
|
+
status?: AssessmentStatus | undefined;
|
|
234
|
+
roles?: Role[] | undefined;
|
|
235
|
+
delegations?: Delegation[] | undefined;
|
|
236
|
+
creationTime?: Date | undefined;
|
|
237
|
+
lastUpdated?: Date | undefined;
|
|
238
238
|
}
|
|
239
239
|
export declare const AssessmentReportStatus: {
|
|
240
240
|
readonly COMPLETE: "COMPLETE";
|
|
@@ -244,30 +244,30 @@ export declare const AssessmentReportStatus: {
|
|
|
244
244
|
export type AssessmentReportStatus =
|
|
245
245
|
(typeof AssessmentReportStatus)[keyof typeof AssessmentReportStatus];
|
|
246
246
|
export interface AssessmentReport {
|
|
247
|
-
id?: string;
|
|
248
|
-
name?: string;
|
|
249
|
-
description?: string;
|
|
250
|
-
awsAccountId?: string;
|
|
251
|
-
assessmentId?: string;
|
|
252
|
-
assessmentName?: string;
|
|
253
|
-
author?: string;
|
|
254
|
-
status?: AssessmentReportStatus;
|
|
255
|
-
creationTime?: Date;
|
|
247
|
+
id?: string | undefined;
|
|
248
|
+
name?: string | undefined;
|
|
249
|
+
description?: string | undefined;
|
|
250
|
+
awsAccountId?: string | undefined;
|
|
251
|
+
assessmentId?: string | undefined;
|
|
252
|
+
assessmentName?: string | undefined;
|
|
253
|
+
author?: string | undefined;
|
|
254
|
+
status?: AssessmentReportStatus | undefined;
|
|
255
|
+
creationTime?: Date | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface AssessmentReportEvidenceError {
|
|
258
|
-
evidenceId?: string;
|
|
259
|
-
errorCode?: string;
|
|
260
|
-
errorMessage?: string;
|
|
258
|
+
evidenceId?: string | undefined;
|
|
259
|
+
errorCode?: string | undefined;
|
|
260
|
+
errorMessage?: string | undefined;
|
|
261
261
|
}
|
|
262
262
|
export interface AssessmentReportMetadata {
|
|
263
|
-
id?: string;
|
|
264
|
-
name?: string;
|
|
265
|
-
description?: string;
|
|
266
|
-
assessmentId?: string;
|
|
267
|
-
assessmentName?: string;
|
|
268
|
-
author?: string;
|
|
269
|
-
status?: AssessmentReportStatus;
|
|
270
|
-
creationTime?: Date;
|
|
263
|
+
id?: string | undefined;
|
|
264
|
+
name?: string | undefined;
|
|
265
|
+
description?: string | undefined;
|
|
266
|
+
assessmentId?: string | undefined;
|
|
267
|
+
assessmentName?: string | undefined;
|
|
268
|
+
author?: string | undefined;
|
|
269
|
+
status?: AssessmentReportStatus | undefined;
|
|
270
|
+
creationTime?: Date | undefined;
|
|
271
271
|
}
|
|
272
272
|
export interface AssociateAssessmentReportEvidenceFolderRequest {
|
|
273
273
|
assessmentId: string | undefined;
|
|
@@ -305,8 +305,8 @@ export type ValidationExceptionReason =
|
|
|
305
305
|
export declare class ValidationException extends __BaseException {
|
|
306
306
|
readonly name: "ValidationException";
|
|
307
307
|
readonly $fault: "client";
|
|
308
|
-
reason?: ValidationExceptionReason;
|
|
309
|
-
fields?: ValidationExceptionField[];
|
|
308
|
+
reason?: ValidationExceptionReason | undefined;
|
|
309
|
+
fields?: ValidationExceptionField[] | undefined;
|
|
310
310
|
constructor(
|
|
311
311
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
312
312
|
);
|
|
@@ -317,39 +317,39 @@ export interface BatchAssociateAssessmentReportEvidenceRequest {
|
|
|
317
317
|
evidenceIds: string[] | undefined;
|
|
318
318
|
}
|
|
319
319
|
export interface BatchAssociateAssessmentReportEvidenceResponse {
|
|
320
|
-
evidenceIds?: string[];
|
|
321
|
-
errors?: AssessmentReportEvidenceError[];
|
|
320
|
+
evidenceIds?: string[] | undefined;
|
|
321
|
+
errors?: AssessmentReportEvidenceError[] | undefined;
|
|
322
322
|
}
|
|
323
323
|
export interface CreateDelegationRequest {
|
|
324
|
-
comment?: string;
|
|
325
|
-
controlSetId?: string;
|
|
326
|
-
roleArn?: string;
|
|
327
|
-
roleType?: RoleType;
|
|
324
|
+
comment?: string | undefined;
|
|
325
|
+
controlSetId?: string | undefined;
|
|
326
|
+
roleArn?: string | undefined;
|
|
327
|
+
roleType?: RoleType | undefined;
|
|
328
328
|
}
|
|
329
329
|
export interface BatchCreateDelegationByAssessmentRequest {
|
|
330
330
|
createDelegationRequests: CreateDelegationRequest[] | undefined;
|
|
331
331
|
assessmentId: string | undefined;
|
|
332
332
|
}
|
|
333
333
|
export interface BatchCreateDelegationByAssessmentError {
|
|
334
|
-
createDelegationRequest?: CreateDelegationRequest;
|
|
335
|
-
errorCode?: string;
|
|
336
|
-
errorMessage?: string;
|
|
334
|
+
createDelegationRequest?: CreateDelegationRequest | undefined;
|
|
335
|
+
errorCode?: string | undefined;
|
|
336
|
+
errorMessage?: string | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface BatchCreateDelegationByAssessmentResponse {
|
|
339
|
-
delegations?: Delegation[];
|
|
340
|
-
errors?: BatchCreateDelegationByAssessmentError[];
|
|
339
|
+
delegations?: Delegation[] | undefined;
|
|
340
|
+
errors?: BatchCreateDelegationByAssessmentError[] | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface BatchDeleteDelegationByAssessmentRequest {
|
|
343
343
|
delegationIds: string[] | undefined;
|
|
344
344
|
assessmentId: string | undefined;
|
|
345
345
|
}
|
|
346
346
|
export interface BatchDeleteDelegationByAssessmentError {
|
|
347
|
-
delegationId?: string;
|
|
348
|
-
errorCode?: string;
|
|
349
|
-
errorMessage?: string;
|
|
347
|
+
delegationId?: string | undefined;
|
|
348
|
+
errorCode?: string | undefined;
|
|
349
|
+
errorMessage?: string | undefined;
|
|
350
350
|
}
|
|
351
351
|
export interface BatchDeleteDelegationByAssessmentResponse {
|
|
352
|
-
errors?: BatchDeleteDelegationByAssessmentError[];
|
|
352
|
+
errors?: BatchDeleteDelegationByAssessmentError[] | undefined;
|
|
353
353
|
}
|
|
354
354
|
export interface BatchDisassociateAssessmentReportEvidenceRequest {
|
|
355
355
|
assessmentId: string | undefined;
|
|
@@ -357,13 +357,13 @@ export interface BatchDisassociateAssessmentReportEvidenceRequest {
|
|
|
357
357
|
evidenceIds: string[] | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface BatchDisassociateAssessmentReportEvidenceResponse {
|
|
360
|
-
evidenceIds?: string[];
|
|
361
|
-
errors?: AssessmentReportEvidenceError[];
|
|
360
|
+
evidenceIds?: string[] | undefined;
|
|
361
|
+
errors?: AssessmentReportEvidenceError[] | undefined;
|
|
362
362
|
}
|
|
363
363
|
export interface ManualEvidence {
|
|
364
|
-
s3ResourcePath?: string;
|
|
365
|
-
textResponse?: string;
|
|
366
|
-
evidenceFileName?: string;
|
|
364
|
+
s3ResourcePath?: string | undefined;
|
|
365
|
+
textResponse?: string | undefined;
|
|
366
|
+
evidenceFileName?: string | undefined;
|
|
367
367
|
}
|
|
368
368
|
export interface BatchImportEvidenceToAssessmentControlRequest {
|
|
369
369
|
assessmentId: string | undefined;
|
|
@@ -372,12 +372,12 @@ export interface BatchImportEvidenceToAssessmentControlRequest {
|
|
|
372
372
|
manualEvidence: ManualEvidence[] | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface BatchImportEvidenceToAssessmentControlError {
|
|
375
|
-
manualEvidence?: ManualEvidence;
|
|
376
|
-
errorCode?: string;
|
|
377
|
-
errorMessage?: string;
|
|
375
|
+
manualEvidence?: ManualEvidence | undefined;
|
|
376
|
+
errorCode?: string | undefined;
|
|
377
|
+
errorMessage?: string | undefined;
|
|
378
378
|
}
|
|
379
379
|
export interface BatchImportEvidenceToAssessmentControlResponse {
|
|
380
|
-
errors?: BatchImportEvidenceToAssessmentControlError[];
|
|
380
|
+
errors?: BatchImportEvidenceToAssessmentControlError[] | undefined;
|
|
381
381
|
}
|
|
382
382
|
export declare class ThrottlingException extends __BaseException {
|
|
383
383
|
readonly name: "ThrottlingException";
|
|
@@ -388,15 +388,15 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
388
388
|
}
|
|
389
389
|
export interface CreateAssessmentRequest {
|
|
390
390
|
name: string | undefined;
|
|
391
|
-
description?: string;
|
|
391
|
+
description?: string | undefined;
|
|
392
392
|
assessmentReportsDestination: AssessmentReportsDestination | undefined;
|
|
393
393
|
scope: Scope | undefined;
|
|
394
394
|
roles: Role[] | undefined;
|
|
395
395
|
frameworkId: string | undefined;
|
|
396
|
-
tags?: Record<string, string
|
|
396
|
+
tags?: Record<string, string> | undefined;
|
|
397
397
|
}
|
|
398
398
|
export interface CreateAssessmentResponse {
|
|
399
|
-
assessment?: Assessment;
|
|
399
|
+
assessment?: Assessment | undefined;
|
|
400
400
|
}
|
|
401
401
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
402
402
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -410,14 +410,14 @@ export interface CreateAssessmentFrameworkControl {
|
|
|
410
410
|
}
|
|
411
411
|
export interface CreateAssessmentFrameworkControlSet {
|
|
412
412
|
name: string | undefined;
|
|
413
|
-
controls?: CreateAssessmentFrameworkControl[];
|
|
413
|
+
controls?: CreateAssessmentFrameworkControl[] | undefined;
|
|
414
414
|
}
|
|
415
415
|
export interface CreateAssessmentFrameworkRequest {
|
|
416
416
|
name: string | undefined;
|
|
417
|
-
description?: string;
|
|
418
|
-
complianceType?: string;
|
|
417
|
+
description?: string | undefined;
|
|
418
|
+
complianceType?: string | undefined;
|
|
419
419
|
controlSets: CreateAssessmentFrameworkControlSet[] | undefined;
|
|
420
|
-
tags?: Record<string, string
|
|
420
|
+
tags?: Record<string, string> | undefined;
|
|
421
421
|
}
|
|
422
422
|
export declare const SourceFrequency: {
|
|
423
423
|
readonly DAILY: "DAILY";
|
|
@@ -434,8 +434,8 @@ export declare const KeywordInputType: {
|
|
|
434
434
|
export type KeywordInputType =
|
|
435
435
|
(typeof KeywordInputType)[keyof typeof KeywordInputType];
|
|
436
436
|
export interface SourceKeyword {
|
|
437
|
-
keywordInputType?: KeywordInputType;
|
|
438
|
-
keywordValue?: string;
|
|
437
|
+
keywordInputType?: KeywordInputType | undefined;
|
|
438
|
+
keywordValue?: string | undefined;
|
|
439
439
|
}
|
|
440
440
|
export declare const SourceSetUpOption: {
|
|
441
441
|
readonly PROCEDURAL_CONTROLS_MAPPING: "Procedural_Controls_Mapping";
|
|
@@ -454,14 +454,14 @@ export declare const SourceType: {
|
|
|
454
454
|
};
|
|
455
455
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
456
456
|
export interface ControlMappingSource {
|
|
457
|
-
sourceId?: string;
|
|
458
|
-
sourceName?: string;
|
|
459
|
-
sourceDescription?: string;
|
|
460
|
-
sourceSetUpOption?: SourceSetUpOption;
|
|
461
|
-
sourceType?: SourceType;
|
|
462
|
-
sourceKeyword?: SourceKeyword;
|
|
463
|
-
sourceFrequency?: SourceFrequency;
|
|
464
|
-
troubleshootingText?: string;
|
|
457
|
+
sourceId?: string | undefined;
|
|
458
|
+
sourceName?: string | undefined;
|
|
459
|
+
sourceDescription?: string | undefined;
|
|
460
|
+
sourceSetUpOption?: SourceSetUpOption | undefined;
|
|
461
|
+
sourceType?: SourceType | undefined;
|
|
462
|
+
sourceKeyword?: SourceKeyword | undefined;
|
|
463
|
+
sourceFrequency?: SourceFrequency | undefined;
|
|
464
|
+
troubleshootingText?: string | undefined;
|
|
465
465
|
}
|
|
466
466
|
export declare const ControlState: {
|
|
467
467
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -475,76 +475,76 @@ export declare const ControlType: {
|
|
|
475
475
|
};
|
|
476
476
|
export type ControlType = (typeof ControlType)[keyof typeof ControlType];
|
|
477
477
|
export interface Control {
|
|
478
|
-
arn?: string;
|
|
479
|
-
id?: string;
|
|
480
|
-
type?: ControlType;
|
|
481
|
-
name?: string;
|
|
482
|
-
description?: string;
|
|
483
|
-
testingInformation?: string;
|
|
484
|
-
actionPlanTitle?: string;
|
|
485
|
-
actionPlanInstructions?: string;
|
|
486
|
-
controlSources?: string;
|
|
487
|
-
controlMappingSources?: ControlMappingSource[];
|
|
488
|
-
createdAt?: Date;
|
|
489
|
-
lastUpdatedAt?: Date;
|
|
490
|
-
createdBy?: string;
|
|
491
|
-
lastUpdatedBy?: string;
|
|
492
|
-
tags?: Record<string, string
|
|
493
|
-
state?: ControlState;
|
|
478
|
+
arn?: string | undefined;
|
|
479
|
+
id?: string | undefined;
|
|
480
|
+
type?: ControlType | undefined;
|
|
481
|
+
name?: string | undefined;
|
|
482
|
+
description?: string | undefined;
|
|
483
|
+
testingInformation?: string | undefined;
|
|
484
|
+
actionPlanTitle?: string | undefined;
|
|
485
|
+
actionPlanInstructions?: string | undefined;
|
|
486
|
+
controlSources?: string | undefined;
|
|
487
|
+
controlMappingSources?: ControlMappingSource[] | undefined;
|
|
488
|
+
createdAt?: Date | undefined;
|
|
489
|
+
lastUpdatedAt?: Date | undefined;
|
|
490
|
+
createdBy?: string | undefined;
|
|
491
|
+
lastUpdatedBy?: string | undefined;
|
|
492
|
+
tags?: Record<string, string> | undefined;
|
|
493
|
+
state?: ControlState | undefined;
|
|
494
494
|
}
|
|
495
495
|
export interface ControlSet {
|
|
496
|
-
id?: string;
|
|
497
|
-
name?: string;
|
|
498
|
-
controls?: Control[];
|
|
496
|
+
id?: string | undefined;
|
|
497
|
+
name?: string | undefined;
|
|
498
|
+
controls?: Control[] | undefined;
|
|
499
499
|
}
|
|
500
500
|
export interface Framework {
|
|
501
|
-
arn?: string;
|
|
502
|
-
id?: string;
|
|
503
|
-
name?: string;
|
|
504
|
-
type?: FrameworkType;
|
|
505
|
-
complianceType?: string;
|
|
506
|
-
description?: string;
|
|
507
|
-
logo?: string;
|
|
508
|
-
controlSources?: string;
|
|
509
|
-
controlSets?: ControlSet[];
|
|
510
|
-
createdAt?: Date;
|
|
511
|
-
lastUpdatedAt?: Date;
|
|
512
|
-
createdBy?: string;
|
|
513
|
-
lastUpdatedBy?: string;
|
|
514
|
-
tags?: Record<string, string
|
|
501
|
+
arn?: string | undefined;
|
|
502
|
+
id?: string | undefined;
|
|
503
|
+
name?: string | undefined;
|
|
504
|
+
type?: FrameworkType | undefined;
|
|
505
|
+
complianceType?: string | undefined;
|
|
506
|
+
description?: string | undefined;
|
|
507
|
+
logo?: string | undefined;
|
|
508
|
+
controlSources?: string | undefined;
|
|
509
|
+
controlSets?: ControlSet[] | undefined;
|
|
510
|
+
createdAt?: Date | undefined;
|
|
511
|
+
lastUpdatedAt?: Date | undefined;
|
|
512
|
+
createdBy?: string | undefined;
|
|
513
|
+
lastUpdatedBy?: string | undefined;
|
|
514
|
+
tags?: Record<string, string> | undefined;
|
|
515
515
|
}
|
|
516
516
|
export interface CreateAssessmentFrameworkResponse {
|
|
517
|
-
framework?: Framework;
|
|
517
|
+
framework?: Framework | undefined;
|
|
518
518
|
}
|
|
519
519
|
export interface CreateAssessmentReportRequest {
|
|
520
520
|
name: string | undefined;
|
|
521
|
-
description?: string;
|
|
521
|
+
description?: string | undefined;
|
|
522
522
|
assessmentId: string | undefined;
|
|
523
|
-
queryStatement?: string;
|
|
523
|
+
queryStatement?: string | undefined;
|
|
524
524
|
}
|
|
525
525
|
export interface CreateAssessmentReportResponse {
|
|
526
|
-
assessmentReport?: AssessmentReport;
|
|
526
|
+
assessmentReport?: AssessmentReport | undefined;
|
|
527
527
|
}
|
|
528
528
|
export interface CreateControlMappingSource {
|
|
529
|
-
sourceName?: string;
|
|
530
|
-
sourceDescription?: string;
|
|
531
|
-
sourceSetUpOption?: SourceSetUpOption;
|
|
532
|
-
sourceType?: SourceType;
|
|
533
|
-
sourceKeyword?: SourceKeyword;
|
|
534
|
-
sourceFrequency?: SourceFrequency;
|
|
535
|
-
troubleshootingText?: string;
|
|
529
|
+
sourceName?: string | undefined;
|
|
530
|
+
sourceDescription?: string | undefined;
|
|
531
|
+
sourceSetUpOption?: SourceSetUpOption | undefined;
|
|
532
|
+
sourceType?: SourceType | undefined;
|
|
533
|
+
sourceKeyword?: SourceKeyword | undefined;
|
|
534
|
+
sourceFrequency?: SourceFrequency | undefined;
|
|
535
|
+
troubleshootingText?: string | undefined;
|
|
536
536
|
}
|
|
537
537
|
export interface CreateControlRequest {
|
|
538
538
|
name: string | undefined;
|
|
539
|
-
description?: string;
|
|
540
|
-
testingInformation?: string;
|
|
541
|
-
actionPlanTitle?: string;
|
|
542
|
-
actionPlanInstructions?: string;
|
|
539
|
+
description?: string | undefined;
|
|
540
|
+
testingInformation?: string | undefined;
|
|
541
|
+
actionPlanTitle?: string | undefined;
|
|
542
|
+
actionPlanInstructions?: string | undefined;
|
|
543
543
|
controlMappingSources: CreateControlMappingSource[] | undefined;
|
|
544
|
-
tags?: Record<string, string
|
|
544
|
+
tags?: Record<string, string> | undefined;
|
|
545
545
|
}
|
|
546
546
|
export interface CreateControlResponse {
|
|
547
|
-
control?: Control;
|
|
547
|
+
control?: Control | undefined;
|
|
548
548
|
}
|
|
549
549
|
export interface DeleteAssessmentRequest {
|
|
550
550
|
assessmentId: string | undefined;
|
|
@@ -576,10 +576,10 @@ export interface DeleteControlRequest {
|
|
|
576
576
|
export interface DeleteControlResponse {}
|
|
577
577
|
export interface DeregisterAccountRequest {}
|
|
578
578
|
export interface DeregisterAccountResponse {
|
|
579
|
-
status?: AccountStatus;
|
|
579
|
+
status?: AccountStatus | undefined;
|
|
580
580
|
}
|
|
581
581
|
export interface DeregisterOrganizationAdminAccountRequest {
|
|
582
|
-
adminAccountId?: string;
|
|
582
|
+
adminAccountId?: string | undefined;
|
|
583
583
|
}
|
|
584
584
|
export interface DeregisterOrganizationAdminAccountResponse {}
|
|
585
585
|
export interface DisassociateAssessmentReportEvidenceFolderRequest {
|
|
@@ -589,38 +589,38 @@ export interface DisassociateAssessmentReportEvidenceFolderRequest {
|
|
|
589
589
|
export interface DisassociateAssessmentReportEvidenceFolderResponse {}
|
|
590
590
|
export interface GetAccountStatusRequest {}
|
|
591
591
|
export interface GetAccountStatusResponse {
|
|
592
|
-
status?: AccountStatus;
|
|
592
|
+
status?: AccountStatus | undefined;
|
|
593
593
|
}
|
|
594
594
|
export interface GetAssessmentRequest {
|
|
595
595
|
assessmentId: string | undefined;
|
|
596
596
|
}
|
|
597
597
|
export interface GetAssessmentResponse {
|
|
598
|
-
assessment?: Assessment;
|
|
599
|
-
userRole?: Role;
|
|
598
|
+
assessment?: Assessment | undefined;
|
|
599
|
+
userRole?: Role | undefined;
|
|
600
600
|
}
|
|
601
601
|
export interface GetAssessmentFrameworkRequest {
|
|
602
602
|
frameworkId: string | undefined;
|
|
603
603
|
}
|
|
604
604
|
export interface GetAssessmentFrameworkResponse {
|
|
605
|
-
framework?: Framework;
|
|
605
|
+
framework?: Framework | undefined;
|
|
606
606
|
}
|
|
607
607
|
export interface GetAssessmentReportUrlRequest {
|
|
608
608
|
assessmentReportId: string | undefined;
|
|
609
609
|
assessmentId: string | undefined;
|
|
610
610
|
}
|
|
611
611
|
export interface URL {
|
|
612
|
-
hyperlinkName?: string;
|
|
613
|
-
link?: string;
|
|
612
|
+
hyperlinkName?: string | undefined;
|
|
613
|
+
link?: string | undefined;
|
|
614
614
|
}
|
|
615
615
|
export interface GetAssessmentReportUrlResponse {
|
|
616
|
-
preSignedUrl?: URL;
|
|
616
|
+
preSignedUrl?: URL | undefined;
|
|
617
617
|
}
|
|
618
618
|
export interface GetChangeLogsRequest {
|
|
619
619
|
assessmentId: string | undefined;
|
|
620
|
-
controlSetId?: string;
|
|
621
|
-
controlId?: string;
|
|
622
|
-
nextToken?: string;
|
|
623
|
-
maxResults?: number;
|
|
620
|
+
controlSetId?: string | undefined;
|
|
621
|
+
controlId?: string | undefined;
|
|
622
|
+
nextToken?: string | undefined;
|
|
623
|
+
maxResults?: number | undefined;
|
|
624
624
|
}
|
|
625
625
|
export declare const ObjectTypeEnum: {
|
|
626
626
|
readonly ASSESSMENT: "ASSESSMENT";
|
|
@@ -632,38 +632,38 @@ export declare const ObjectTypeEnum: {
|
|
|
632
632
|
export type ObjectTypeEnum =
|
|
633
633
|
(typeof ObjectTypeEnum)[keyof typeof ObjectTypeEnum];
|
|
634
634
|
export interface ChangeLog {
|
|
635
|
-
objectType?: ObjectTypeEnum;
|
|
636
|
-
objectName?: string;
|
|
637
|
-
action?: ActionEnum;
|
|
638
|
-
createdAt?: Date;
|
|
639
|
-
createdBy?: string;
|
|
635
|
+
objectType?: ObjectTypeEnum | undefined;
|
|
636
|
+
objectName?: string | undefined;
|
|
637
|
+
action?: ActionEnum | undefined;
|
|
638
|
+
createdAt?: Date | undefined;
|
|
639
|
+
createdBy?: string | undefined;
|
|
640
640
|
}
|
|
641
641
|
export interface GetChangeLogsResponse {
|
|
642
|
-
changeLogs?: ChangeLog[];
|
|
643
|
-
nextToken?: string;
|
|
642
|
+
changeLogs?: ChangeLog[] | undefined;
|
|
643
|
+
nextToken?: string | undefined;
|
|
644
644
|
}
|
|
645
645
|
export interface GetControlRequest {
|
|
646
646
|
controlId: string | undefined;
|
|
647
647
|
}
|
|
648
648
|
export interface GetControlResponse {
|
|
649
|
-
control?: Control;
|
|
649
|
+
control?: Control | undefined;
|
|
650
650
|
}
|
|
651
651
|
export interface GetDelegationsRequest {
|
|
652
|
-
nextToken?: string;
|
|
653
|
-
maxResults?: number;
|
|
652
|
+
nextToken?: string | undefined;
|
|
653
|
+
maxResults?: number | undefined;
|
|
654
654
|
}
|
|
655
655
|
export interface DelegationMetadata {
|
|
656
|
-
id?: string;
|
|
657
|
-
assessmentName?: string;
|
|
658
|
-
assessmentId?: string;
|
|
659
|
-
status?: DelegationStatus;
|
|
660
|
-
roleArn?: string;
|
|
661
|
-
creationTime?: Date;
|
|
662
|
-
controlSetName?: string;
|
|
656
|
+
id?: string | undefined;
|
|
657
|
+
assessmentName?: string | undefined;
|
|
658
|
+
assessmentId?: string | undefined;
|
|
659
|
+
status?: DelegationStatus | undefined;
|
|
660
|
+
roleArn?: string | undefined;
|
|
661
|
+
creationTime?: Date | undefined;
|
|
662
|
+
controlSetName?: string | undefined;
|
|
663
663
|
}
|
|
664
664
|
export interface GetDelegationsResponse {
|
|
665
|
-
delegations?: DelegationMetadata[];
|
|
666
|
-
nextToken?: string;
|
|
665
|
+
delegations?: DelegationMetadata[] | undefined;
|
|
666
|
+
nextToken?: string | undefined;
|
|
667
667
|
}
|
|
668
668
|
export interface GetEvidenceRequest {
|
|
669
669
|
assessmentId: string | undefined;
|
|
@@ -672,47 +672,47 @@ export interface GetEvidenceRequest {
|
|
|
672
672
|
evidenceId: string | undefined;
|
|
673
673
|
}
|
|
674
674
|
export interface Resource {
|
|
675
|
-
arn?: string;
|
|
676
|
-
value?: string;
|
|
677
|
-
complianceCheck?: string;
|
|
675
|
+
arn?: string | undefined;
|
|
676
|
+
value?: string | undefined;
|
|
677
|
+
complianceCheck?: string | undefined;
|
|
678
678
|
}
|
|
679
679
|
export interface Evidence {
|
|
680
|
-
dataSource?: string;
|
|
681
|
-
evidenceAwsAccountId?: string;
|
|
682
|
-
time?: Date;
|
|
683
|
-
eventSource?: string;
|
|
684
|
-
eventName?: string;
|
|
685
|
-
evidenceByType?: string;
|
|
686
|
-
resourcesIncluded?: Resource[];
|
|
687
|
-
attributes?: Record<string, string
|
|
688
|
-
iamId?: string;
|
|
689
|
-
complianceCheck?: string;
|
|
690
|
-
awsOrganization?: string;
|
|
691
|
-
awsAccountId?: string;
|
|
692
|
-
evidenceFolderId?: string;
|
|
693
|
-
id?: string;
|
|
694
|
-
assessmentReportSelection?: string;
|
|
680
|
+
dataSource?: string | undefined;
|
|
681
|
+
evidenceAwsAccountId?: string | undefined;
|
|
682
|
+
time?: Date | undefined;
|
|
683
|
+
eventSource?: string | undefined;
|
|
684
|
+
eventName?: string | undefined;
|
|
685
|
+
evidenceByType?: string | undefined;
|
|
686
|
+
resourcesIncluded?: Resource[] | undefined;
|
|
687
|
+
attributes?: Record<string, string> | undefined;
|
|
688
|
+
iamId?: string | undefined;
|
|
689
|
+
complianceCheck?: string | undefined;
|
|
690
|
+
awsOrganization?: string | undefined;
|
|
691
|
+
awsAccountId?: string | undefined;
|
|
692
|
+
evidenceFolderId?: string | undefined;
|
|
693
|
+
id?: string | undefined;
|
|
694
|
+
assessmentReportSelection?: string | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface GetEvidenceResponse {
|
|
697
|
-
evidence?: Evidence;
|
|
697
|
+
evidence?: Evidence | undefined;
|
|
698
698
|
}
|
|
699
699
|
export interface GetEvidenceByEvidenceFolderRequest {
|
|
700
700
|
assessmentId: string | undefined;
|
|
701
701
|
controlSetId: string | undefined;
|
|
702
702
|
evidenceFolderId: string | undefined;
|
|
703
|
-
nextToken?: string;
|
|
704
|
-
maxResults?: number;
|
|
703
|
+
nextToken?: string | undefined;
|
|
704
|
+
maxResults?: number | undefined;
|
|
705
705
|
}
|
|
706
706
|
export interface GetEvidenceByEvidenceFolderResponse {
|
|
707
|
-
evidence?: Evidence[];
|
|
708
|
-
nextToken?: string;
|
|
707
|
+
evidence?: Evidence[] | undefined;
|
|
708
|
+
nextToken?: string | undefined;
|
|
709
709
|
}
|
|
710
710
|
export interface GetEvidenceFileUploadUrlRequest {
|
|
711
711
|
fileName: string | undefined;
|
|
712
712
|
}
|
|
713
713
|
export interface GetEvidenceFileUploadUrlResponse {
|
|
714
|
-
evidenceFileName?: string;
|
|
715
|
-
uploadUrl?: string;
|
|
714
|
+
evidenceFileName?: string | undefined;
|
|
715
|
+
uploadUrl?: string | undefined;
|
|
716
716
|
}
|
|
717
717
|
export interface GetEvidenceFolderRequest {
|
|
718
718
|
assessmentId: string | undefined;
|
|
@@ -720,69 +720,69 @@ export interface GetEvidenceFolderRequest {
|
|
|
720
720
|
evidenceFolderId: string | undefined;
|
|
721
721
|
}
|
|
722
722
|
export interface GetEvidenceFolderResponse {
|
|
723
|
-
evidenceFolder?: AssessmentEvidenceFolder;
|
|
723
|
+
evidenceFolder?: AssessmentEvidenceFolder | undefined;
|
|
724
724
|
}
|
|
725
725
|
export interface GetEvidenceFoldersByAssessmentRequest {
|
|
726
726
|
assessmentId: string | undefined;
|
|
727
|
-
nextToken?: string;
|
|
728
|
-
maxResults?: number;
|
|
727
|
+
nextToken?: string | undefined;
|
|
728
|
+
maxResults?: number | undefined;
|
|
729
729
|
}
|
|
730
730
|
export interface GetEvidenceFoldersByAssessmentResponse {
|
|
731
|
-
evidenceFolders?: AssessmentEvidenceFolder[];
|
|
732
|
-
nextToken?: string;
|
|
731
|
+
evidenceFolders?: AssessmentEvidenceFolder[] | undefined;
|
|
732
|
+
nextToken?: string | undefined;
|
|
733
733
|
}
|
|
734
734
|
export interface GetEvidenceFoldersByAssessmentControlRequest {
|
|
735
735
|
assessmentId: string | undefined;
|
|
736
736
|
controlSetId: string | undefined;
|
|
737
737
|
controlId: string | undefined;
|
|
738
|
-
nextToken?: string;
|
|
739
|
-
maxResults?: number;
|
|
738
|
+
nextToken?: string | undefined;
|
|
739
|
+
maxResults?: number | undefined;
|
|
740
740
|
}
|
|
741
741
|
export interface GetEvidenceFoldersByAssessmentControlResponse {
|
|
742
|
-
evidenceFolders?: AssessmentEvidenceFolder[];
|
|
743
|
-
nextToken?: string;
|
|
742
|
+
evidenceFolders?: AssessmentEvidenceFolder[] | undefined;
|
|
743
|
+
nextToken?: string | undefined;
|
|
744
744
|
}
|
|
745
745
|
export interface GetInsightsRequest {}
|
|
746
746
|
export interface Insights {
|
|
747
|
-
activeAssessmentsCount?: number;
|
|
748
|
-
noncompliantEvidenceCount?: number;
|
|
749
|
-
compliantEvidenceCount?: number;
|
|
750
|
-
inconclusiveEvidenceCount?: number;
|
|
751
|
-
assessmentControlsCountByNoncompliantEvidence?: number;
|
|
752
|
-
totalAssessmentControlsCount?: number;
|
|
753
|
-
lastUpdated?: Date;
|
|
747
|
+
activeAssessmentsCount?: number | undefined;
|
|
748
|
+
noncompliantEvidenceCount?: number | undefined;
|
|
749
|
+
compliantEvidenceCount?: number | undefined;
|
|
750
|
+
inconclusiveEvidenceCount?: number | undefined;
|
|
751
|
+
assessmentControlsCountByNoncompliantEvidence?: number | undefined;
|
|
752
|
+
totalAssessmentControlsCount?: number | undefined;
|
|
753
|
+
lastUpdated?: Date | undefined;
|
|
754
754
|
}
|
|
755
755
|
export interface GetInsightsResponse {
|
|
756
|
-
insights?: Insights;
|
|
756
|
+
insights?: Insights | undefined;
|
|
757
757
|
}
|
|
758
758
|
export interface GetInsightsByAssessmentRequest {
|
|
759
759
|
assessmentId: string | undefined;
|
|
760
760
|
}
|
|
761
761
|
export interface InsightsByAssessment {
|
|
762
|
-
noncompliantEvidenceCount?: number;
|
|
763
|
-
compliantEvidenceCount?: number;
|
|
764
|
-
inconclusiveEvidenceCount?: number;
|
|
765
|
-
assessmentControlsCountByNoncompliantEvidence?: number;
|
|
766
|
-
totalAssessmentControlsCount?: number;
|
|
767
|
-
lastUpdated?: Date;
|
|
762
|
+
noncompliantEvidenceCount?: number | undefined;
|
|
763
|
+
compliantEvidenceCount?: number | undefined;
|
|
764
|
+
inconclusiveEvidenceCount?: number | undefined;
|
|
765
|
+
assessmentControlsCountByNoncompliantEvidence?: number | undefined;
|
|
766
|
+
totalAssessmentControlsCount?: number | undefined;
|
|
767
|
+
lastUpdated?: Date | undefined;
|
|
768
768
|
}
|
|
769
769
|
export interface GetInsightsByAssessmentResponse {
|
|
770
|
-
insights?: InsightsByAssessment;
|
|
770
|
+
insights?: InsightsByAssessment | undefined;
|
|
771
771
|
}
|
|
772
772
|
export interface GetOrganizationAdminAccountRequest {}
|
|
773
773
|
export interface GetOrganizationAdminAccountResponse {
|
|
774
|
-
adminAccountId?: string;
|
|
775
|
-
organizationId?: string;
|
|
774
|
+
adminAccountId?: string | undefined;
|
|
775
|
+
organizationId?: string | undefined;
|
|
776
776
|
}
|
|
777
777
|
export interface GetServicesInScopeRequest {}
|
|
778
778
|
export interface ServiceMetadata {
|
|
779
|
-
name?: string;
|
|
780
|
-
displayName?: string;
|
|
781
|
-
description?: string;
|
|
782
|
-
category?: string;
|
|
779
|
+
name?: string | undefined;
|
|
780
|
+
displayName?: string | undefined;
|
|
781
|
+
description?: string | undefined;
|
|
782
|
+
category?: string | undefined;
|
|
783
783
|
}
|
|
784
784
|
export interface GetServicesInScopeResponse {
|
|
785
|
-
serviceMetadata?: ServiceMetadata[];
|
|
785
|
+
serviceMetadata?: ServiceMetadata[] | undefined;
|
|
786
786
|
}
|
|
787
787
|
export declare const SettingAttribute: {
|
|
788
788
|
readonly ALL: "ALL";
|
|
@@ -805,8 +805,8 @@ export declare const ExportDestinationType: {
|
|
|
805
805
|
export type ExportDestinationType =
|
|
806
806
|
(typeof ExportDestinationType)[keyof typeof ExportDestinationType];
|
|
807
807
|
export interface DefaultExportDestination {
|
|
808
|
-
destinationType?: ExportDestinationType;
|
|
809
|
-
destination?: string;
|
|
808
|
+
destinationType?: ExportDestinationType | undefined;
|
|
809
|
+
destination?: string | undefined;
|
|
810
810
|
}
|
|
811
811
|
export declare const DeleteResources: {
|
|
812
812
|
readonly ALL: "ALL";
|
|
@@ -815,7 +815,7 @@ export declare const DeleteResources: {
|
|
|
815
815
|
export type DeleteResources =
|
|
816
816
|
(typeof DeleteResources)[keyof typeof DeleteResources];
|
|
817
817
|
export interface DeregistrationPolicy {
|
|
818
|
-
deleteResources?: DeleteResources;
|
|
818
|
+
deleteResources?: DeleteResources | undefined;
|
|
819
819
|
}
|
|
820
820
|
export declare const EvidenceFinderBackfillStatus: {
|
|
821
821
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -833,138 +833,144 @@ export declare const EvidenceFinderEnablementStatus: {
|
|
|
833
833
|
export type EvidenceFinderEnablementStatus =
|
|
834
834
|
(typeof EvidenceFinderEnablementStatus)[keyof typeof EvidenceFinderEnablementStatus];
|
|
835
835
|
export interface EvidenceFinderEnablement {
|
|
836
|
-
eventDataStoreArn?: string;
|
|
837
|
-
enablementStatus?: EvidenceFinderEnablementStatus;
|
|
838
|
-
backfillStatus?: EvidenceFinderBackfillStatus;
|
|
839
|
-
error?: string;
|
|
836
|
+
eventDataStoreArn?: string | undefined;
|
|
837
|
+
enablementStatus?: EvidenceFinderEnablementStatus | undefined;
|
|
838
|
+
backfillStatus?: EvidenceFinderBackfillStatus | undefined;
|
|
839
|
+
error?: string | undefined;
|
|
840
840
|
}
|
|
841
841
|
export interface Settings {
|
|
842
|
-
isAwsOrgEnabled?: boolean;
|
|
843
|
-
snsTopic?: string;
|
|
844
|
-
defaultAssessmentReportsDestination?:
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
842
|
+
isAwsOrgEnabled?: boolean | undefined;
|
|
843
|
+
snsTopic?: string | undefined;
|
|
844
|
+
defaultAssessmentReportsDestination?:
|
|
845
|
+
| AssessmentReportsDestination
|
|
846
|
+
| undefined;
|
|
847
|
+
defaultProcessOwners?: Role[] | undefined;
|
|
848
|
+
kmsKey?: string | undefined;
|
|
849
|
+
evidenceFinderEnablement?: EvidenceFinderEnablement | undefined;
|
|
850
|
+
deregistrationPolicy?: DeregistrationPolicy | undefined;
|
|
851
|
+
defaultExportDestination?: DefaultExportDestination | undefined;
|
|
850
852
|
}
|
|
851
853
|
export interface GetSettingsResponse {
|
|
852
|
-
settings?: Settings;
|
|
854
|
+
settings?: Settings | undefined;
|
|
853
855
|
}
|
|
854
856
|
export interface ListAssessmentControlInsightsByControlDomainRequest {
|
|
855
857
|
controlDomainId: string | undefined;
|
|
856
858
|
assessmentId: string | undefined;
|
|
857
|
-
nextToken?: string;
|
|
858
|
-
maxResults?: number;
|
|
859
|
+
nextToken?: string | undefined;
|
|
860
|
+
maxResults?: number | undefined;
|
|
859
861
|
}
|
|
860
862
|
export interface EvidenceInsights {
|
|
861
|
-
noncompliantEvidenceCount?: number;
|
|
862
|
-
compliantEvidenceCount?: number;
|
|
863
|
-
inconclusiveEvidenceCount?: number;
|
|
863
|
+
noncompliantEvidenceCount?: number | undefined;
|
|
864
|
+
compliantEvidenceCount?: number | undefined;
|
|
865
|
+
inconclusiveEvidenceCount?: number | undefined;
|
|
864
866
|
}
|
|
865
867
|
export interface ControlInsightsMetadataByAssessmentItem {
|
|
866
|
-
name?: string;
|
|
867
|
-
id?: string;
|
|
868
|
-
evidenceInsights?: EvidenceInsights;
|
|
869
|
-
controlSetName?: string;
|
|
870
|
-
lastUpdated?: Date;
|
|
868
|
+
name?: string | undefined;
|
|
869
|
+
id?: string | undefined;
|
|
870
|
+
evidenceInsights?: EvidenceInsights | undefined;
|
|
871
|
+
controlSetName?: string | undefined;
|
|
872
|
+
lastUpdated?: Date | undefined;
|
|
871
873
|
}
|
|
872
874
|
export interface ListAssessmentControlInsightsByControlDomainResponse {
|
|
873
|
-
controlInsightsByAssessment?:
|
|
874
|
-
|
|
875
|
+
controlInsightsByAssessment?:
|
|
876
|
+
| ControlInsightsMetadataByAssessmentItem[]
|
|
877
|
+
| undefined;
|
|
878
|
+
nextToken?: string | undefined;
|
|
875
879
|
}
|
|
876
880
|
export interface ListAssessmentFrameworksRequest {
|
|
877
881
|
frameworkType: FrameworkType | undefined;
|
|
878
|
-
nextToken?: string;
|
|
879
|
-
maxResults?: number;
|
|
882
|
+
nextToken?: string | undefined;
|
|
883
|
+
maxResults?: number | undefined;
|
|
880
884
|
}
|
|
881
885
|
export interface ListAssessmentFrameworksResponse {
|
|
882
|
-
frameworkMetadataList?: AssessmentFrameworkMetadata[];
|
|
883
|
-
nextToken?: string;
|
|
886
|
+
frameworkMetadataList?: AssessmentFrameworkMetadata[] | undefined;
|
|
887
|
+
nextToken?: string | undefined;
|
|
884
888
|
}
|
|
885
889
|
export interface ListAssessmentFrameworkShareRequestsRequest {
|
|
886
890
|
requestType: ShareRequestType | undefined;
|
|
887
|
-
nextToken?: string;
|
|
888
|
-
maxResults?: number;
|
|
891
|
+
nextToken?: string | undefined;
|
|
892
|
+
maxResults?: number | undefined;
|
|
889
893
|
}
|
|
890
894
|
export interface ListAssessmentFrameworkShareRequestsResponse {
|
|
891
|
-
assessmentFrameworkShareRequests?:
|
|
892
|
-
|
|
895
|
+
assessmentFrameworkShareRequests?:
|
|
896
|
+
| AssessmentFrameworkShareRequest[]
|
|
897
|
+
| undefined;
|
|
898
|
+
nextToken?: string | undefined;
|
|
893
899
|
}
|
|
894
900
|
export interface ListAssessmentReportsRequest {
|
|
895
|
-
nextToken?: string;
|
|
896
|
-
maxResults?: number;
|
|
901
|
+
nextToken?: string | undefined;
|
|
902
|
+
maxResults?: number | undefined;
|
|
897
903
|
}
|
|
898
904
|
export interface ListAssessmentReportsResponse {
|
|
899
|
-
assessmentReports?: AssessmentReportMetadata[];
|
|
900
|
-
nextToken?: string;
|
|
905
|
+
assessmentReports?: AssessmentReportMetadata[] | undefined;
|
|
906
|
+
nextToken?: string | undefined;
|
|
901
907
|
}
|
|
902
908
|
export interface ListAssessmentsRequest {
|
|
903
|
-
status?: AssessmentStatus;
|
|
904
|
-
nextToken?: string;
|
|
905
|
-
maxResults?: number;
|
|
909
|
+
status?: AssessmentStatus | undefined;
|
|
910
|
+
nextToken?: string | undefined;
|
|
911
|
+
maxResults?: number | undefined;
|
|
906
912
|
}
|
|
907
913
|
export interface ListAssessmentsResponse {
|
|
908
|
-
assessmentMetadata?: AssessmentMetadataItem[];
|
|
909
|
-
nextToken?: string;
|
|
914
|
+
assessmentMetadata?: AssessmentMetadataItem[] | undefined;
|
|
915
|
+
nextToken?: string | undefined;
|
|
910
916
|
}
|
|
911
917
|
export interface ListControlDomainInsightsRequest {
|
|
912
|
-
nextToken?: string;
|
|
913
|
-
maxResults?: number;
|
|
918
|
+
nextToken?: string | undefined;
|
|
919
|
+
maxResults?: number | undefined;
|
|
914
920
|
}
|
|
915
921
|
export interface ControlDomainInsights {
|
|
916
|
-
name?: string;
|
|
917
|
-
id?: string;
|
|
918
|
-
controlsCountByNoncompliantEvidence?: number;
|
|
919
|
-
totalControlsCount?: number;
|
|
920
|
-
evidenceInsights?: EvidenceInsights;
|
|
921
|
-
lastUpdated?: Date;
|
|
922
|
+
name?: string | undefined;
|
|
923
|
+
id?: string | undefined;
|
|
924
|
+
controlsCountByNoncompliantEvidence?: number | undefined;
|
|
925
|
+
totalControlsCount?: number | undefined;
|
|
926
|
+
evidenceInsights?: EvidenceInsights | undefined;
|
|
927
|
+
lastUpdated?: Date | undefined;
|
|
922
928
|
}
|
|
923
929
|
export interface ListControlDomainInsightsResponse {
|
|
924
|
-
controlDomainInsights?: ControlDomainInsights[];
|
|
925
|
-
nextToken?: string;
|
|
930
|
+
controlDomainInsights?: ControlDomainInsights[] | undefined;
|
|
931
|
+
nextToken?: string | undefined;
|
|
926
932
|
}
|
|
927
933
|
export interface ListControlDomainInsightsByAssessmentRequest {
|
|
928
934
|
assessmentId: string | undefined;
|
|
929
|
-
nextToken?: string;
|
|
930
|
-
maxResults?: number;
|
|
935
|
+
nextToken?: string | undefined;
|
|
936
|
+
maxResults?: number | undefined;
|
|
931
937
|
}
|
|
932
938
|
export interface ListControlDomainInsightsByAssessmentResponse {
|
|
933
|
-
controlDomainInsights?: ControlDomainInsights[];
|
|
934
|
-
nextToken?: string;
|
|
939
|
+
controlDomainInsights?: ControlDomainInsights[] | undefined;
|
|
940
|
+
nextToken?: string | undefined;
|
|
935
941
|
}
|
|
936
942
|
export interface ListControlInsightsByControlDomainRequest {
|
|
937
943
|
controlDomainId: string | undefined;
|
|
938
|
-
nextToken?: string;
|
|
939
|
-
maxResults?: number;
|
|
944
|
+
nextToken?: string | undefined;
|
|
945
|
+
maxResults?: number | undefined;
|
|
940
946
|
}
|
|
941
947
|
export interface ControlInsightsMetadataItem {
|
|
942
|
-
name?: string;
|
|
943
|
-
id?: string;
|
|
944
|
-
evidenceInsights?: EvidenceInsights;
|
|
945
|
-
lastUpdated?: Date;
|
|
948
|
+
name?: string | undefined;
|
|
949
|
+
id?: string | undefined;
|
|
950
|
+
evidenceInsights?: EvidenceInsights | undefined;
|
|
951
|
+
lastUpdated?: Date | undefined;
|
|
946
952
|
}
|
|
947
953
|
export interface ListControlInsightsByControlDomainResponse {
|
|
948
|
-
controlInsightsMetadata?: ControlInsightsMetadataItem[];
|
|
949
|
-
nextToken?: string;
|
|
954
|
+
controlInsightsMetadata?: ControlInsightsMetadataItem[] | undefined;
|
|
955
|
+
nextToken?: string | undefined;
|
|
950
956
|
}
|
|
951
957
|
export interface ListControlsRequest {
|
|
952
958
|
controlType: ControlType | undefined;
|
|
953
|
-
nextToken?: string;
|
|
954
|
-
maxResults?: number;
|
|
955
|
-
controlCatalogId?: string;
|
|
959
|
+
nextToken?: string | undefined;
|
|
960
|
+
maxResults?: number | undefined;
|
|
961
|
+
controlCatalogId?: string | undefined;
|
|
956
962
|
}
|
|
957
963
|
export interface ControlMetadata {
|
|
958
|
-
arn?: string;
|
|
959
|
-
id?: string;
|
|
960
|
-
name?: string;
|
|
961
|
-
controlSources?: string;
|
|
962
|
-
createdAt?: Date;
|
|
963
|
-
lastUpdatedAt?: Date;
|
|
964
|
+
arn?: string | undefined;
|
|
965
|
+
id?: string | undefined;
|
|
966
|
+
name?: string | undefined;
|
|
967
|
+
controlSources?: string | undefined;
|
|
968
|
+
createdAt?: Date | undefined;
|
|
969
|
+
lastUpdatedAt?: Date | undefined;
|
|
964
970
|
}
|
|
965
971
|
export interface ListControlsResponse {
|
|
966
|
-
controlMetadataList?: ControlMetadata[];
|
|
967
|
-
nextToken?: string;
|
|
972
|
+
controlMetadataList?: ControlMetadata[] | undefined;
|
|
973
|
+
nextToken?: string | undefined;
|
|
968
974
|
}
|
|
969
975
|
export declare const DataSourceType: {
|
|
970
976
|
readonly AWS_API_CALL: "AWS_API_Call";
|
|
@@ -977,59 +983,59 @@ export type DataSourceType =
|
|
|
977
983
|
(typeof DataSourceType)[keyof typeof DataSourceType];
|
|
978
984
|
export interface ListKeywordsForDataSourceRequest {
|
|
979
985
|
source: DataSourceType | undefined;
|
|
980
|
-
nextToken?: string;
|
|
981
|
-
maxResults?: number;
|
|
986
|
+
nextToken?: string | undefined;
|
|
987
|
+
maxResults?: number | undefined;
|
|
982
988
|
}
|
|
983
989
|
export interface ListKeywordsForDataSourceResponse {
|
|
984
|
-
keywords?: string[];
|
|
985
|
-
nextToken?: string;
|
|
990
|
+
keywords?: string[] | undefined;
|
|
991
|
+
nextToken?: string | undefined;
|
|
986
992
|
}
|
|
987
993
|
export interface ListNotificationsRequest {
|
|
988
|
-
nextToken?: string;
|
|
989
|
-
maxResults?: number;
|
|
994
|
+
nextToken?: string | undefined;
|
|
995
|
+
maxResults?: number | undefined;
|
|
990
996
|
}
|
|
991
997
|
export interface Notification {
|
|
992
|
-
id?: string;
|
|
993
|
-
assessmentId?: string;
|
|
994
|
-
assessmentName?: string;
|
|
995
|
-
controlSetId?: string;
|
|
996
|
-
controlSetName?: string;
|
|
997
|
-
description?: string;
|
|
998
|
-
eventTime?: Date;
|
|
999
|
-
source?: string;
|
|
998
|
+
id?: string | undefined;
|
|
999
|
+
assessmentId?: string | undefined;
|
|
1000
|
+
assessmentName?: string | undefined;
|
|
1001
|
+
controlSetId?: string | undefined;
|
|
1002
|
+
controlSetName?: string | undefined;
|
|
1003
|
+
description?: string | undefined;
|
|
1004
|
+
eventTime?: Date | undefined;
|
|
1005
|
+
source?: string | undefined;
|
|
1000
1006
|
}
|
|
1001
1007
|
export interface ListNotificationsResponse {
|
|
1002
|
-
notifications?: Notification[];
|
|
1003
|
-
nextToken?: string;
|
|
1008
|
+
notifications?: Notification[] | undefined;
|
|
1009
|
+
nextToken?: string | undefined;
|
|
1004
1010
|
}
|
|
1005
1011
|
export interface ListTagsForResourceRequest {
|
|
1006
1012
|
resourceArn: string | undefined;
|
|
1007
1013
|
}
|
|
1008
1014
|
export interface ListTagsForResourceResponse {
|
|
1009
|
-
tags?: Record<string, string
|
|
1015
|
+
tags?: Record<string, string> | undefined;
|
|
1010
1016
|
}
|
|
1011
1017
|
export interface RegisterAccountRequest {
|
|
1012
|
-
kmsKey?: string;
|
|
1013
|
-
delegatedAdminAccount?: string;
|
|
1018
|
+
kmsKey?: string | undefined;
|
|
1019
|
+
delegatedAdminAccount?: string | undefined;
|
|
1014
1020
|
}
|
|
1015
1021
|
export interface RegisterAccountResponse {
|
|
1016
|
-
status?: AccountStatus;
|
|
1022
|
+
status?: AccountStatus | undefined;
|
|
1017
1023
|
}
|
|
1018
1024
|
export interface RegisterOrganizationAdminAccountRequest {
|
|
1019
1025
|
adminAccountId: string | undefined;
|
|
1020
1026
|
}
|
|
1021
1027
|
export interface RegisterOrganizationAdminAccountResponse {
|
|
1022
|
-
adminAccountId?: string;
|
|
1023
|
-
organizationId?: string;
|
|
1028
|
+
adminAccountId?: string | undefined;
|
|
1029
|
+
organizationId?: string | undefined;
|
|
1024
1030
|
}
|
|
1025
1031
|
export interface StartAssessmentFrameworkShareRequest {
|
|
1026
1032
|
frameworkId: string | undefined;
|
|
1027
1033
|
destinationAccount: string | undefined;
|
|
1028
1034
|
destinationRegion: string | undefined;
|
|
1029
|
-
comment?: string;
|
|
1035
|
+
comment?: string | undefined;
|
|
1030
1036
|
}
|
|
1031
1037
|
export interface StartAssessmentFrameworkShareResponse {
|
|
1032
|
-
assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest;
|
|
1038
|
+
assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest | undefined;
|
|
1033
1039
|
}
|
|
1034
1040
|
export interface TagResourceRequest {
|
|
1035
1041
|
resourceArn: string | undefined;
|
|
@@ -1043,24 +1049,24 @@ export interface UntagResourceRequest {
|
|
|
1043
1049
|
export interface UntagResourceResponse {}
|
|
1044
1050
|
export interface UpdateAssessmentRequest {
|
|
1045
1051
|
assessmentId: string | undefined;
|
|
1046
|
-
assessmentName?: string;
|
|
1047
|
-
assessmentDescription?: string;
|
|
1052
|
+
assessmentName?: string | undefined;
|
|
1053
|
+
assessmentDescription?: string | undefined;
|
|
1048
1054
|
scope: Scope | undefined;
|
|
1049
|
-
assessmentReportsDestination?: AssessmentReportsDestination;
|
|
1050
|
-
roles?: Role[];
|
|
1055
|
+
assessmentReportsDestination?: AssessmentReportsDestination | undefined;
|
|
1056
|
+
roles?: Role[] | undefined;
|
|
1051
1057
|
}
|
|
1052
1058
|
export interface UpdateAssessmentResponse {
|
|
1053
|
-
assessment?: Assessment;
|
|
1059
|
+
assessment?: Assessment | undefined;
|
|
1054
1060
|
}
|
|
1055
1061
|
export interface UpdateAssessmentControlRequest {
|
|
1056
1062
|
assessmentId: string | undefined;
|
|
1057
1063
|
controlSetId: string | undefined;
|
|
1058
1064
|
controlId: string | undefined;
|
|
1059
|
-
controlStatus?: ControlStatus;
|
|
1060
|
-
commentBody?: string;
|
|
1065
|
+
controlStatus?: ControlStatus | undefined;
|
|
1066
|
+
commentBody?: string | undefined;
|
|
1061
1067
|
}
|
|
1062
1068
|
export interface UpdateAssessmentControlResponse {
|
|
1063
|
-
control?: AssessmentControl;
|
|
1069
|
+
control?: AssessmentControl | undefined;
|
|
1064
1070
|
}
|
|
1065
1071
|
export interface UpdateAssessmentControlSetStatusRequest {
|
|
1066
1072
|
assessmentId: string | undefined;
|
|
@@ -1069,22 +1075,22 @@ export interface UpdateAssessmentControlSetStatusRequest {
|
|
|
1069
1075
|
comment: string | undefined;
|
|
1070
1076
|
}
|
|
1071
1077
|
export interface UpdateAssessmentControlSetStatusResponse {
|
|
1072
|
-
controlSet?: AssessmentControlSet;
|
|
1078
|
+
controlSet?: AssessmentControlSet | undefined;
|
|
1073
1079
|
}
|
|
1074
1080
|
export interface UpdateAssessmentFrameworkControlSet {
|
|
1075
|
-
id?: string;
|
|
1081
|
+
id?: string | undefined;
|
|
1076
1082
|
name: string | undefined;
|
|
1077
1083
|
controls: CreateAssessmentFrameworkControl[] | undefined;
|
|
1078
1084
|
}
|
|
1079
1085
|
export interface UpdateAssessmentFrameworkRequest {
|
|
1080
1086
|
frameworkId: string | undefined;
|
|
1081
1087
|
name: string | undefined;
|
|
1082
|
-
description?: string;
|
|
1083
|
-
complianceType?: string;
|
|
1088
|
+
description?: string | undefined;
|
|
1089
|
+
complianceType?: string | undefined;
|
|
1084
1090
|
controlSets: UpdateAssessmentFrameworkControlSet[] | undefined;
|
|
1085
1091
|
}
|
|
1086
1092
|
export interface UpdateAssessmentFrameworkResponse {
|
|
1087
|
-
framework?: Framework;
|
|
1093
|
+
framework?: Framework | undefined;
|
|
1088
1094
|
}
|
|
1089
1095
|
export declare const ShareRequestAction: {
|
|
1090
1096
|
readonly ACCEPT: "ACCEPT";
|
|
@@ -1099,48 +1105,50 @@ export interface UpdateAssessmentFrameworkShareRequest {
|
|
|
1099
1105
|
action: ShareRequestAction | undefined;
|
|
1100
1106
|
}
|
|
1101
1107
|
export interface UpdateAssessmentFrameworkShareResponse {
|
|
1102
|
-
assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest;
|
|
1108
|
+
assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest | undefined;
|
|
1103
1109
|
}
|
|
1104
1110
|
export interface UpdateAssessmentStatusRequest {
|
|
1105
1111
|
assessmentId: string | undefined;
|
|
1106
1112
|
status: AssessmentStatus | undefined;
|
|
1107
1113
|
}
|
|
1108
1114
|
export interface UpdateAssessmentStatusResponse {
|
|
1109
|
-
assessment?: Assessment;
|
|
1115
|
+
assessment?: Assessment | undefined;
|
|
1110
1116
|
}
|
|
1111
1117
|
export interface UpdateControlRequest {
|
|
1112
1118
|
controlId: string | undefined;
|
|
1113
1119
|
name: string | undefined;
|
|
1114
|
-
description?: string;
|
|
1115
|
-
testingInformation?: string;
|
|
1116
|
-
actionPlanTitle?: string;
|
|
1117
|
-
actionPlanInstructions?: string;
|
|
1120
|
+
description?: string | undefined;
|
|
1121
|
+
testingInformation?: string | undefined;
|
|
1122
|
+
actionPlanTitle?: string | undefined;
|
|
1123
|
+
actionPlanInstructions?: string | undefined;
|
|
1118
1124
|
controlMappingSources: ControlMappingSource[] | undefined;
|
|
1119
1125
|
}
|
|
1120
1126
|
export interface UpdateControlResponse {
|
|
1121
|
-
control?: Control;
|
|
1127
|
+
control?: Control | undefined;
|
|
1122
1128
|
}
|
|
1123
1129
|
export interface UpdateSettingsRequest {
|
|
1124
|
-
snsTopic?: string;
|
|
1125
|
-
defaultAssessmentReportsDestination?:
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1130
|
+
snsTopic?: string | undefined;
|
|
1131
|
+
defaultAssessmentReportsDestination?:
|
|
1132
|
+
| AssessmentReportsDestination
|
|
1133
|
+
| undefined;
|
|
1134
|
+
defaultProcessOwners?: Role[] | undefined;
|
|
1135
|
+
kmsKey?: string | undefined;
|
|
1136
|
+
evidenceFinderEnabled?: boolean | undefined;
|
|
1137
|
+
deregistrationPolicy?: DeregistrationPolicy | undefined;
|
|
1138
|
+
defaultExportDestination?: DefaultExportDestination | undefined;
|
|
1131
1139
|
}
|
|
1132
1140
|
export interface UpdateSettingsResponse {
|
|
1133
|
-
settings?: Settings;
|
|
1141
|
+
settings?: Settings | undefined;
|
|
1134
1142
|
}
|
|
1135
1143
|
export interface ValidateAssessmentReportIntegrityRequest {
|
|
1136
1144
|
s3RelativePath: string | undefined;
|
|
1137
1145
|
}
|
|
1138
1146
|
export interface ValidateAssessmentReportIntegrityResponse {
|
|
1139
|
-
signatureValid?: boolean;
|
|
1140
|
-
signatureAlgorithm?: string;
|
|
1141
|
-
signatureDateTime?: string;
|
|
1142
|
-
signatureKeyId?: string;
|
|
1143
|
-
validationErrors?: string[];
|
|
1147
|
+
signatureValid?: boolean | undefined;
|
|
1148
|
+
signatureAlgorithm?: string | undefined;
|
|
1149
|
+
signatureDateTime?: string | undefined;
|
|
1150
|
+
signatureKeyId?: string | undefined;
|
|
1151
|
+
validationErrors?: string[] | undefined;
|
|
1144
1152
|
}
|
|
1145
1153
|
export declare const AWSAccountFilterSensitiveLog: (obj: AWSAccount) => any;
|
|
1146
1154
|
export declare const ControlCommentFilterSensitiveLog: (
|