@aws-sdk/client-auditmanager 3.398.0 → 3.403.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-cjs/commands/BatchCreateDelegationByAssessmentCommand.js +3 -2
- package/dist-cjs/commands/BatchDeleteDelegationByAssessmentCommand.js +2 -1
- package/dist-cjs/commands/BatchImportEvidenceToAssessmentControlCommand.js +3 -2
- package/dist-cjs/commands/CreateAssessmentCommand.js +3 -2
- package/dist-cjs/commands/CreateAssessmentFrameworkCommand.js +3 -2
- package/dist-cjs/commands/CreateAssessmentReportCommand.js +3 -2
- package/dist-cjs/commands/CreateControlCommand.js +3 -2
- package/dist-cjs/commands/GetAssessmentCommand.js +2 -1
- package/dist-cjs/commands/GetAssessmentFrameworkCommand.js +2 -1
- package/dist-cjs/commands/GetControlCommand.js +2 -1
- package/dist-cjs/commands/GetDelegationsCommand.js +2 -1
- package/dist-cjs/commands/GetEvidenceFileUploadUrlCommand.js +3 -2
- package/dist-cjs/commands/GetSettingsCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentFrameworkShareRequestsCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentFrameworksCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentReportsCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentsCommand.js +2 -1
- package/dist-cjs/commands/ListNotificationsCommand.js +2 -1
- package/dist-cjs/commands/StartAssessmentFrameworkShareCommand.js +2 -1
- package/dist-cjs/commands/UpdateAssessmentCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentControlCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentControlSetStatusCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentFrameworkCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentFrameworkShareCommand.js +2 -1
- package/dist-cjs/commands/UpdateAssessmentStatusCommand.js +2 -1
- package/dist-cjs/commands/UpdateControlCommand.js +3 -2
- package/dist-cjs/commands/UpdateSettingsCommand.js +3 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +413 -1
- package/dist-es/commands/BatchCreateDelegationByAssessmentCommand.js +3 -2
- package/dist-es/commands/BatchDeleteDelegationByAssessmentCommand.js +2 -1
- package/dist-es/commands/BatchImportEvidenceToAssessmentControlCommand.js +3 -2
- package/dist-es/commands/CreateAssessmentCommand.js +3 -2
- package/dist-es/commands/CreateAssessmentFrameworkCommand.js +3 -2
- package/dist-es/commands/CreateAssessmentReportCommand.js +3 -2
- package/dist-es/commands/CreateControlCommand.js +3 -2
- package/dist-es/commands/GetAssessmentCommand.js +2 -1
- package/dist-es/commands/GetAssessmentFrameworkCommand.js +2 -1
- package/dist-es/commands/GetControlCommand.js +2 -1
- package/dist-es/commands/GetDelegationsCommand.js +2 -1
- package/dist-es/commands/GetEvidenceFileUploadUrlCommand.js +3 -2
- package/dist-es/commands/GetSettingsCommand.js +2 -1
- package/dist-es/commands/ListAssessmentFrameworkShareRequestsCommand.js +2 -1
- package/dist-es/commands/ListAssessmentFrameworksCommand.js +2 -1
- package/dist-es/commands/ListAssessmentReportsCommand.js +2 -1
- package/dist-es/commands/ListAssessmentsCommand.js +2 -1
- package/dist-es/commands/ListNotificationsCommand.js +2 -1
- package/dist-es/commands/StartAssessmentFrameworkShareCommand.js +2 -1
- package/dist-es/commands/UpdateAssessmentCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentControlCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentControlSetStatusCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentFrameworkCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentFrameworkShareCommand.js +2 -1
- package/dist-es/commands/UpdateAssessmentStatusCommand.js +2 -1
- package/dist-es/commands/UpdateControlCommand.js +3 -2
- package/dist-es/commands/UpdateSettingsCommand.js +3 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +343 -0
- package/dist-types/models/models_0.d.ts +272 -0
- package/dist-types/ts3.4/models/models_0.d.ts +186 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
1
2
|
import { AuditManagerServiceException as __BaseException } from "./AuditManagerServiceException";
|
|
2
3
|
export class AccessDeniedException extends __BaseException {
|
|
3
4
|
constructor(opts) {
|
|
@@ -216,3 +217,345 @@ export const ShareRequestAction = {
|
|
|
216
217
|
DECLINE: "DECLINE",
|
|
217
218
|
REVOKE: "REVOKE",
|
|
218
219
|
};
|
|
220
|
+
export const AWSAccountFilterSensitiveLog = (obj) => ({
|
|
221
|
+
...obj,
|
|
222
|
+
...(obj.emailAddress && { emailAddress: SENSITIVE_STRING }),
|
|
223
|
+
});
|
|
224
|
+
export const ControlCommentFilterSensitiveLog = (obj) => ({
|
|
225
|
+
...obj,
|
|
226
|
+
...(obj.authorName && { authorName: SENSITIVE_STRING }),
|
|
227
|
+
...(obj.commentBody && { commentBody: SENSITIVE_STRING }),
|
|
228
|
+
});
|
|
229
|
+
export const AssessmentControlFilterSensitiveLog = (obj) => ({
|
|
230
|
+
...obj,
|
|
231
|
+
...(obj.comments && { comments: obj.comments.map((item) => ControlCommentFilterSensitiveLog(item)) }),
|
|
232
|
+
});
|
|
233
|
+
export const DelegationFilterSensitiveLog = (obj) => ({
|
|
234
|
+
...obj,
|
|
235
|
+
...(obj.assessmentName && { assessmentName: SENSITIVE_STRING }),
|
|
236
|
+
...(obj.comment && { comment: SENSITIVE_STRING }),
|
|
237
|
+
...(obj.createdBy && { createdBy: SENSITIVE_STRING }),
|
|
238
|
+
});
|
|
239
|
+
export const AssessmentControlSetFilterSensitiveLog = (obj) => ({
|
|
240
|
+
...obj,
|
|
241
|
+
...(obj.roles && { roles: SENSITIVE_STRING }),
|
|
242
|
+
...(obj.delegations && { delegations: SENSITIVE_STRING }),
|
|
243
|
+
});
|
|
244
|
+
export const FrameworkMetadataFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
247
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
248
|
+
});
|
|
249
|
+
export const AssessmentFrameworkFilterSensitiveLog = (obj) => ({
|
|
250
|
+
...obj,
|
|
251
|
+
...(obj.metadata && { metadata: FrameworkMetadataFilterSensitiveLog(obj.metadata) }),
|
|
252
|
+
...(obj.controlSets && { controlSets: obj.controlSets.map((item) => AssessmentControlSetFilterSensitiveLog(item)) }),
|
|
253
|
+
});
|
|
254
|
+
export const AssessmentReportsDestinationFilterSensitiveLog = (obj) => ({
|
|
255
|
+
...obj,
|
|
256
|
+
});
|
|
257
|
+
export const ScopeFilterSensitiveLog = (obj) => ({
|
|
258
|
+
...obj,
|
|
259
|
+
...(obj.awsAccounts && { awsAccounts: SENSITIVE_STRING }),
|
|
260
|
+
});
|
|
261
|
+
export const AssessmentMetadataFilterSensitiveLog = (obj) => ({
|
|
262
|
+
...obj,
|
|
263
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
264
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
265
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
266
|
+
...(obj.assessmentReportsDestination && { assessmentReportsDestination: SENSITIVE_STRING }),
|
|
267
|
+
...(obj.scope && { scope: SENSITIVE_STRING }),
|
|
268
|
+
...(obj.roles && { roles: SENSITIVE_STRING }),
|
|
269
|
+
...(obj.delegations && { delegations: SENSITIVE_STRING }),
|
|
270
|
+
});
|
|
271
|
+
export const AssessmentFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
...(obj.awsAccount && { awsAccount: AWSAccountFilterSensitiveLog(obj.awsAccount) }),
|
|
274
|
+
...(obj.metadata && { metadata: AssessmentMetadataFilterSensitiveLog(obj.metadata) }),
|
|
275
|
+
...(obj.framework && { framework: SENSITIVE_STRING }),
|
|
276
|
+
});
|
|
277
|
+
export const AssessmentFrameworkMetadataFilterSensitiveLog = (obj) => ({
|
|
278
|
+
...obj,
|
|
279
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
280
|
+
});
|
|
281
|
+
export const AssessmentFrameworkShareRequestFilterSensitiveLog = (obj) => ({
|
|
282
|
+
...obj,
|
|
283
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
284
|
+
});
|
|
285
|
+
export const AssessmentMetadataItemFilterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
288
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
289
|
+
...(obj.roles && { roles: SENSITIVE_STRING }),
|
|
290
|
+
...(obj.delegations && { delegations: SENSITIVE_STRING }),
|
|
291
|
+
});
|
|
292
|
+
export const AssessmentReportFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
295
|
+
...(obj.assessmentName && { assessmentName: SENSITIVE_STRING }),
|
|
296
|
+
...(obj.author && { author: SENSITIVE_STRING }),
|
|
297
|
+
});
|
|
298
|
+
export const AssessmentReportMetadataFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
301
|
+
...(obj.assessmentName && { assessmentName: SENSITIVE_STRING }),
|
|
302
|
+
...(obj.author && { author: SENSITIVE_STRING }),
|
|
303
|
+
});
|
|
304
|
+
export const CreateDelegationRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
...(obj.comment && { comment: SENSITIVE_STRING }),
|
|
307
|
+
});
|
|
308
|
+
export const BatchCreateDelegationByAssessmentRequestFilterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
...(obj.createDelegationRequests && { createDelegationRequests: SENSITIVE_STRING }),
|
|
311
|
+
});
|
|
312
|
+
export const BatchCreateDelegationByAssessmentErrorFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
...(obj.createDelegationRequest && {
|
|
315
|
+
createDelegationRequest: CreateDelegationRequestFilterSensitiveLog(obj.createDelegationRequest),
|
|
316
|
+
}),
|
|
317
|
+
});
|
|
318
|
+
export const BatchCreateDelegationByAssessmentResponseFilterSensitiveLog = (obj) => ({
|
|
319
|
+
...obj,
|
|
320
|
+
...(obj.delegations && { delegations: SENSITIVE_STRING }),
|
|
321
|
+
...(obj.errors && { errors: SENSITIVE_STRING }),
|
|
322
|
+
});
|
|
323
|
+
export const BatchDeleteDelegationByAssessmentResponseFilterSensitiveLog = (obj) => ({
|
|
324
|
+
...obj,
|
|
325
|
+
...(obj.errors && { errors: SENSITIVE_STRING }),
|
|
326
|
+
});
|
|
327
|
+
export const ManualEvidenceFilterSensitiveLog = (obj) => ({
|
|
328
|
+
...obj,
|
|
329
|
+
...(obj.textResponse && { textResponse: SENSITIVE_STRING }),
|
|
330
|
+
...(obj.evidenceFileName && { evidenceFileName: SENSITIVE_STRING }),
|
|
331
|
+
});
|
|
332
|
+
export const BatchImportEvidenceToAssessmentControlRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
...(obj.manualEvidence && {
|
|
335
|
+
manualEvidence: obj.manualEvidence.map((item) => ManualEvidenceFilterSensitiveLog(item)),
|
|
336
|
+
}),
|
|
337
|
+
});
|
|
338
|
+
export const BatchImportEvidenceToAssessmentControlErrorFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
...(obj.manualEvidence && { manualEvidence: ManualEvidenceFilterSensitiveLog(obj.manualEvidence) }),
|
|
341
|
+
});
|
|
342
|
+
export const BatchImportEvidenceToAssessmentControlResponseFilterSensitiveLog = (obj) => ({
|
|
343
|
+
...obj,
|
|
344
|
+
...(obj.errors && {
|
|
345
|
+
errors: obj.errors.map((item) => BatchImportEvidenceToAssessmentControlErrorFilterSensitiveLog(item)),
|
|
346
|
+
}),
|
|
347
|
+
});
|
|
348
|
+
export const CreateAssessmentRequestFilterSensitiveLog = (obj) => ({
|
|
349
|
+
...obj,
|
|
350
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
351
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
352
|
+
...(obj.assessmentReportsDestination && { assessmentReportsDestination: SENSITIVE_STRING }),
|
|
353
|
+
...(obj.scope && { scope: SENSITIVE_STRING }),
|
|
354
|
+
...(obj.roles && { roles: SENSITIVE_STRING }),
|
|
355
|
+
});
|
|
356
|
+
export const CreateAssessmentResponseFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
...(obj.assessment && { assessment: AssessmentFilterSensitiveLog(obj.assessment) }),
|
|
359
|
+
});
|
|
360
|
+
export const CreateAssessmentFrameworkRequestFilterSensitiveLog = (obj) => ({
|
|
361
|
+
...obj,
|
|
362
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
363
|
+
});
|
|
364
|
+
export const ControlMappingSourceFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
...(obj.troubleshootingText && { troubleshootingText: SENSITIVE_STRING }),
|
|
367
|
+
});
|
|
368
|
+
export const ControlFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
...(obj.testingInformation && { testingInformation: SENSITIVE_STRING }),
|
|
371
|
+
...(obj.actionPlanTitle && { actionPlanTitle: SENSITIVE_STRING }),
|
|
372
|
+
...(obj.actionPlanInstructions && { actionPlanInstructions: SENSITIVE_STRING }),
|
|
373
|
+
...(obj.controlMappingSources && {
|
|
374
|
+
controlMappingSources: obj.controlMappingSources.map((item) => ControlMappingSourceFilterSensitiveLog(item)),
|
|
375
|
+
}),
|
|
376
|
+
...(obj.createdBy && { createdBy: SENSITIVE_STRING }),
|
|
377
|
+
...(obj.lastUpdatedBy && { lastUpdatedBy: SENSITIVE_STRING }),
|
|
378
|
+
});
|
|
379
|
+
export const ControlSetFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
...(obj.controls && { controls: obj.controls.map((item) => ControlFilterSensitiveLog(item)) }),
|
|
382
|
+
});
|
|
383
|
+
export const FrameworkFilterSensitiveLog = (obj) => ({
|
|
384
|
+
...obj,
|
|
385
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
386
|
+
...(obj.controlSets && { controlSets: SENSITIVE_STRING }),
|
|
387
|
+
...(obj.createdBy && { createdBy: SENSITIVE_STRING }),
|
|
388
|
+
...(obj.lastUpdatedBy && { lastUpdatedBy: SENSITIVE_STRING }),
|
|
389
|
+
});
|
|
390
|
+
export const CreateAssessmentFrameworkResponseFilterSensitiveLog = (obj) => ({
|
|
391
|
+
...obj,
|
|
392
|
+
...(obj.framework && { framework: FrameworkFilterSensitiveLog(obj.framework) }),
|
|
393
|
+
});
|
|
394
|
+
export const CreateAssessmentReportRequestFilterSensitiveLog = (obj) => ({
|
|
395
|
+
...obj,
|
|
396
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
397
|
+
});
|
|
398
|
+
export const CreateAssessmentReportResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
+
...obj,
|
|
400
|
+
...(obj.assessmentReport && { assessmentReport: AssessmentReportFilterSensitiveLog(obj.assessmentReport) }),
|
|
401
|
+
});
|
|
402
|
+
export const CreateControlMappingSourceFilterSensitiveLog = (obj) => ({
|
|
403
|
+
...obj,
|
|
404
|
+
...(obj.troubleshootingText && { troubleshootingText: SENSITIVE_STRING }),
|
|
405
|
+
});
|
|
406
|
+
export const CreateControlRequestFilterSensitiveLog = (obj) => ({
|
|
407
|
+
...obj,
|
|
408
|
+
...(obj.testingInformation && { testingInformation: SENSITIVE_STRING }),
|
|
409
|
+
...(obj.actionPlanTitle && { actionPlanTitle: SENSITIVE_STRING }),
|
|
410
|
+
...(obj.actionPlanInstructions && { actionPlanInstructions: SENSITIVE_STRING }),
|
|
411
|
+
...(obj.controlMappingSources && {
|
|
412
|
+
controlMappingSources: obj.controlMappingSources.map((item) => CreateControlMappingSourceFilterSensitiveLog(item)),
|
|
413
|
+
}),
|
|
414
|
+
});
|
|
415
|
+
export const CreateControlResponseFilterSensitiveLog = (obj) => ({
|
|
416
|
+
...obj,
|
|
417
|
+
...(obj.control && { control: ControlFilterSensitiveLog(obj.control) }),
|
|
418
|
+
});
|
|
419
|
+
export const GetAssessmentResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
+
...obj,
|
|
421
|
+
...(obj.assessment && { assessment: AssessmentFilterSensitiveLog(obj.assessment) }),
|
|
422
|
+
});
|
|
423
|
+
export const GetAssessmentFrameworkResponseFilterSensitiveLog = (obj) => ({
|
|
424
|
+
...obj,
|
|
425
|
+
...(obj.framework && { framework: FrameworkFilterSensitiveLog(obj.framework) }),
|
|
426
|
+
});
|
|
427
|
+
export const GetControlResponseFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
...(obj.control && { control: ControlFilterSensitiveLog(obj.control) }),
|
|
430
|
+
});
|
|
431
|
+
export const DelegationMetadataFilterSensitiveLog = (obj) => ({
|
|
432
|
+
...obj,
|
|
433
|
+
...(obj.assessmentName && { assessmentName: SENSITIVE_STRING }),
|
|
434
|
+
});
|
|
435
|
+
export const GetDelegationsResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
+
...obj,
|
|
437
|
+
...(obj.delegations && { delegations: obj.delegations.map((item) => DelegationMetadataFilterSensitiveLog(item)) }),
|
|
438
|
+
});
|
|
439
|
+
export const GetEvidenceFileUploadUrlRequestFilterSensitiveLog = (obj) => ({
|
|
440
|
+
...obj,
|
|
441
|
+
...(obj.fileName && { fileName: SENSITIVE_STRING }),
|
|
442
|
+
});
|
|
443
|
+
export const GetEvidenceFileUploadUrlResponseFilterSensitiveLog = (obj) => ({
|
|
444
|
+
...obj,
|
|
445
|
+
});
|
|
446
|
+
export const SettingsFilterSensitiveLog = (obj) => ({
|
|
447
|
+
...obj,
|
|
448
|
+
...(obj.snsTopic && { snsTopic: SENSITIVE_STRING }),
|
|
449
|
+
...(obj.defaultAssessmentReportsDestination && { defaultAssessmentReportsDestination: SENSITIVE_STRING }),
|
|
450
|
+
...(obj.defaultProcessOwners && { defaultProcessOwners: SENSITIVE_STRING }),
|
|
451
|
+
});
|
|
452
|
+
export const GetSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
453
|
+
...obj,
|
|
454
|
+
...(obj.settings && { settings: SettingsFilterSensitiveLog(obj.settings) }),
|
|
455
|
+
});
|
|
456
|
+
export const ListAssessmentFrameworksResponseFilterSensitiveLog = (obj) => ({
|
|
457
|
+
...obj,
|
|
458
|
+
...(obj.frameworkMetadataList && {
|
|
459
|
+
frameworkMetadataList: obj.frameworkMetadataList.map((item) => AssessmentFrameworkMetadataFilterSensitiveLog(item)),
|
|
460
|
+
}),
|
|
461
|
+
});
|
|
462
|
+
export const ListAssessmentFrameworkShareRequestsResponseFilterSensitiveLog = (obj) => ({
|
|
463
|
+
...obj,
|
|
464
|
+
...(obj.assessmentFrameworkShareRequests && {
|
|
465
|
+
assessmentFrameworkShareRequests: obj.assessmentFrameworkShareRequests.map((item) => AssessmentFrameworkShareRequestFilterSensitiveLog(item)),
|
|
466
|
+
}),
|
|
467
|
+
});
|
|
468
|
+
export const ListAssessmentReportsResponseFilterSensitiveLog = (obj) => ({
|
|
469
|
+
...obj,
|
|
470
|
+
...(obj.assessmentReports && {
|
|
471
|
+
assessmentReports: obj.assessmentReports.map((item) => AssessmentReportMetadataFilterSensitiveLog(item)),
|
|
472
|
+
}),
|
|
473
|
+
});
|
|
474
|
+
export const ListAssessmentsResponseFilterSensitiveLog = (obj) => ({
|
|
475
|
+
...obj,
|
|
476
|
+
...(obj.assessmentMetadata && {
|
|
477
|
+
assessmentMetadata: obj.assessmentMetadata.map((item) => AssessmentMetadataItemFilterSensitiveLog(item)),
|
|
478
|
+
}),
|
|
479
|
+
});
|
|
480
|
+
export const NotificationFilterSensitiveLog = (obj) => ({
|
|
481
|
+
...obj,
|
|
482
|
+
...(obj.assessmentName && { assessmentName: SENSITIVE_STRING }),
|
|
483
|
+
});
|
|
484
|
+
export const ListNotificationsResponseFilterSensitiveLog = (obj) => ({
|
|
485
|
+
...obj,
|
|
486
|
+
...(obj.notifications && { notifications: obj.notifications.map((item) => NotificationFilterSensitiveLog(item)) }),
|
|
487
|
+
});
|
|
488
|
+
export const StartAssessmentFrameworkShareResponseFilterSensitiveLog = (obj) => ({
|
|
489
|
+
...obj,
|
|
490
|
+
...(obj.assessmentFrameworkShareRequest && {
|
|
491
|
+
assessmentFrameworkShareRequest: AssessmentFrameworkShareRequestFilterSensitiveLog(obj.assessmentFrameworkShareRequest),
|
|
492
|
+
}),
|
|
493
|
+
});
|
|
494
|
+
export const UpdateAssessmentRequestFilterSensitiveLog = (obj) => ({
|
|
495
|
+
...obj,
|
|
496
|
+
...(obj.assessmentName && { assessmentName: SENSITIVE_STRING }),
|
|
497
|
+
...(obj.assessmentDescription && { assessmentDescription: SENSITIVE_STRING }),
|
|
498
|
+
...(obj.scope && { scope: SENSITIVE_STRING }),
|
|
499
|
+
...(obj.assessmentReportsDestination && { assessmentReportsDestination: SENSITIVE_STRING }),
|
|
500
|
+
...(obj.roles && { roles: SENSITIVE_STRING }),
|
|
501
|
+
});
|
|
502
|
+
export const UpdateAssessmentResponseFilterSensitiveLog = (obj) => ({
|
|
503
|
+
...obj,
|
|
504
|
+
...(obj.assessment && { assessment: AssessmentFilterSensitiveLog(obj.assessment) }),
|
|
505
|
+
});
|
|
506
|
+
export const UpdateAssessmentControlRequestFilterSensitiveLog = (obj) => ({
|
|
507
|
+
...obj,
|
|
508
|
+
...(obj.commentBody && { commentBody: SENSITIVE_STRING }),
|
|
509
|
+
});
|
|
510
|
+
export const UpdateAssessmentControlResponseFilterSensitiveLog = (obj) => ({
|
|
511
|
+
...obj,
|
|
512
|
+
...(obj.control && { control: AssessmentControlFilterSensitiveLog(obj.control) }),
|
|
513
|
+
});
|
|
514
|
+
export const UpdateAssessmentControlSetStatusRequestFilterSensitiveLog = (obj) => ({
|
|
515
|
+
...obj,
|
|
516
|
+
...(obj.comment && { comment: SENSITIVE_STRING }),
|
|
517
|
+
});
|
|
518
|
+
export const UpdateAssessmentControlSetStatusResponseFilterSensitiveLog = (obj) => ({
|
|
519
|
+
...obj,
|
|
520
|
+
...(obj.controlSet && { controlSet: AssessmentControlSetFilterSensitiveLog(obj.controlSet) }),
|
|
521
|
+
});
|
|
522
|
+
export const UpdateAssessmentFrameworkRequestFilterSensitiveLog = (obj) => ({
|
|
523
|
+
...obj,
|
|
524
|
+
...(obj.complianceType && { complianceType: SENSITIVE_STRING }),
|
|
525
|
+
});
|
|
526
|
+
export const UpdateAssessmentFrameworkResponseFilterSensitiveLog = (obj) => ({
|
|
527
|
+
...obj,
|
|
528
|
+
...(obj.framework && { framework: FrameworkFilterSensitiveLog(obj.framework) }),
|
|
529
|
+
});
|
|
530
|
+
export const UpdateAssessmentFrameworkShareResponseFilterSensitiveLog = (obj) => ({
|
|
531
|
+
...obj,
|
|
532
|
+
...(obj.assessmentFrameworkShareRequest && {
|
|
533
|
+
assessmentFrameworkShareRequest: AssessmentFrameworkShareRequestFilterSensitiveLog(obj.assessmentFrameworkShareRequest),
|
|
534
|
+
}),
|
|
535
|
+
});
|
|
536
|
+
export const UpdateAssessmentStatusResponseFilterSensitiveLog = (obj) => ({
|
|
537
|
+
...obj,
|
|
538
|
+
...(obj.assessment && { assessment: AssessmentFilterSensitiveLog(obj.assessment) }),
|
|
539
|
+
});
|
|
540
|
+
export const UpdateControlRequestFilterSensitiveLog = (obj) => ({
|
|
541
|
+
...obj,
|
|
542
|
+
...(obj.testingInformation && { testingInformation: SENSITIVE_STRING }),
|
|
543
|
+
...(obj.actionPlanTitle && { actionPlanTitle: SENSITIVE_STRING }),
|
|
544
|
+
...(obj.actionPlanInstructions && { actionPlanInstructions: SENSITIVE_STRING }),
|
|
545
|
+
...(obj.controlMappingSources && {
|
|
546
|
+
controlMappingSources: obj.controlMappingSources.map((item) => ControlMappingSourceFilterSensitiveLog(item)),
|
|
547
|
+
}),
|
|
548
|
+
});
|
|
549
|
+
export const UpdateControlResponseFilterSensitiveLog = (obj) => ({
|
|
550
|
+
...obj,
|
|
551
|
+
...(obj.control && { control: ControlFilterSensitiveLog(obj.control) }),
|
|
552
|
+
});
|
|
553
|
+
export const UpdateSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
554
|
+
...obj,
|
|
555
|
+
...(obj.defaultAssessmentReportsDestination && { defaultAssessmentReportsDestination: SENSITIVE_STRING }),
|
|
556
|
+
...(obj.defaultProcessOwners && { defaultProcessOwners: SENSITIVE_STRING }),
|
|
557
|
+
});
|
|
558
|
+
export const UpdateSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
559
|
+
...obj,
|
|
560
|
+
...(obj.settings && { settings: SettingsFilterSensitiveLog(obj.settings) }),
|
|
561
|
+
});
|
|
@@ -4764,3 +4764,275 @@ export interface ValidateAssessmentReportIntegrityResponse {
|
|
|
4764
4764
|
*/
|
|
4765
4765
|
validationErrors?: string[];
|
|
4766
4766
|
}
|
|
4767
|
+
/**
|
|
4768
|
+
* @internal
|
|
4769
|
+
*/
|
|
4770
|
+
export declare const AWSAccountFilterSensitiveLog: (obj: AWSAccount) => any;
|
|
4771
|
+
/**
|
|
4772
|
+
* @internal
|
|
4773
|
+
*/
|
|
4774
|
+
export declare const ControlCommentFilterSensitiveLog: (obj: ControlComment) => any;
|
|
4775
|
+
/**
|
|
4776
|
+
* @internal
|
|
4777
|
+
*/
|
|
4778
|
+
export declare const AssessmentControlFilterSensitiveLog: (obj: AssessmentControl) => any;
|
|
4779
|
+
/**
|
|
4780
|
+
* @internal
|
|
4781
|
+
*/
|
|
4782
|
+
export declare const DelegationFilterSensitiveLog: (obj: Delegation) => any;
|
|
4783
|
+
/**
|
|
4784
|
+
* @internal
|
|
4785
|
+
*/
|
|
4786
|
+
export declare const AssessmentControlSetFilterSensitiveLog: (obj: AssessmentControlSet) => any;
|
|
4787
|
+
/**
|
|
4788
|
+
* @internal
|
|
4789
|
+
*/
|
|
4790
|
+
export declare const FrameworkMetadataFilterSensitiveLog: (obj: FrameworkMetadata) => any;
|
|
4791
|
+
/**
|
|
4792
|
+
* @internal
|
|
4793
|
+
*/
|
|
4794
|
+
export declare const AssessmentFrameworkFilterSensitiveLog: (obj: AssessmentFramework) => any;
|
|
4795
|
+
/**
|
|
4796
|
+
* @internal
|
|
4797
|
+
*/
|
|
4798
|
+
export declare const AssessmentReportsDestinationFilterSensitiveLog: (obj: AssessmentReportsDestination) => any;
|
|
4799
|
+
/**
|
|
4800
|
+
* @internal
|
|
4801
|
+
*/
|
|
4802
|
+
export declare const ScopeFilterSensitiveLog: (obj: Scope) => any;
|
|
4803
|
+
/**
|
|
4804
|
+
* @internal
|
|
4805
|
+
*/
|
|
4806
|
+
export declare const AssessmentMetadataFilterSensitiveLog: (obj: AssessmentMetadata) => any;
|
|
4807
|
+
/**
|
|
4808
|
+
* @internal
|
|
4809
|
+
*/
|
|
4810
|
+
export declare const AssessmentFilterSensitiveLog: (obj: Assessment) => any;
|
|
4811
|
+
/**
|
|
4812
|
+
* @internal
|
|
4813
|
+
*/
|
|
4814
|
+
export declare const AssessmentFrameworkMetadataFilterSensitiveLog: (obj: AssessmentFrameworkMetadata) => any;
|
|
4815
|
+
/**
|
|
4816
|
+
* @internal
|
|
4817
|
+
*/
|
|
4818
|
+
export declare const AssessmentFrameworkShareRequestFilterSensitiveLog: (obj: AssessmentFrameworkShareRequest) => any;
|
|
4819
|
+
/**
|
|
4820
|
+
* @internal
|
|
4821
|
+
*/
|
|
4822
|
+
export declare const AssessmentMetadataItemFilterSensitiveLog: (obj: AssessmentMetadataItem) => any;
|
|
4823
|
+
/**
|
|
4824
|
+
* @internal
|
|
4825
|
+
*/
|
|
4826
|
+
export declare const AssessmentReportFilterSensitiveLog: (obj: AssessmentReport) => any;
|
|
4827
|
+
/**
|
|
4828
|
+
* @internal
|
|
4829
|
+
*/
|
|
4830
|
+
export declare const AssessmentReportMetadataFilterSensitiveLog: (obj: AssessmentReportMetadata) => any;
|
|
4831
|
+
/**
|
|
4832
|
+
* @internal
|
|
4833
|
+
*/
|
|
4834
|
+
export declare const CreateDelegationRequestFilterSensitiveLog: (obj: CreateDelegationRequest) => any;
|
|
4835
|
+
/**
|
|
4836
|
+
* @internal
|
|
4837
|
+
*/
|
|
4838
|
+
export declare const BatchCreateDelegationByAssessmentRequestFilterSensitiveLog: (obj: BatchCreateDelegationByAssessmentRequest) => any;
|
|
4839
|
+
/**
|
|
4840
|
+
* @internal
|
|
4841
|
+
*/
|
|
4842
|
+
export declare const BatchCreateDelegationByAssessmentErrorFilterSensitiveLog: (obj: BatchCreateDelegationByAssessmentError) => any;
|
|
4843
|
+
/**
|
|
4844
|
+
* @internal
|
|
4845
|
+
*/
|
|
4846
|
+
export declare const BatchCreateDelegationByAssessmentResponseFilterSensitiveLog: (obj: BatchCreateDelegationByAssessmentResponse) => any;
|
|
4847
|
+
/**
|
|
4848
|
+
* @internal
|
|
4849
|
+
*/
|
|
4850
|
+
export declare const BatchDeleteDelegationByAssessmentResponseFilterSensitiveLog: (obj: BatchDeleteDelegationByAssessmentResponse) => any;
|
|
4851
|
+
/**
|
|
4852
|
+
* @internal
|
|
4853
|
+
*/
|
|
4854
|
+
export declare const ManualEvidenceFilterSensitiveLog: (obj: ManualEvidence) => any;
|
|
4855
|
+
/**
|
|
4856
|
+
* @internal
|
|
4857
|
+
*/
|
|
4858
|
+
export declare const BatchImportEvidenceToAssessmentControlRequestFilterSensitiveLog: (obj: BatchImportEvidenceToAssessmentControlRequest) => any;
|
|
4859
|
+
/**
|
|
4860
|
+
* @internal
|
|
4861
|
+
*/
|
|
4862
|
+
export declare const BatchImportEvidenceToAssessmentControlErrorFilterSensitiveLog: (obj: BatchImportEvidenceToAssessmentControlError) => any;
|
|
4863
|
+
/**
|
|
4864
|
+
* @internal
|
|
4865
|
+
*/
|
|
4866
|
+
export declare const BatchImportEvidenceToAssessmentControlResponseFilterSensitiveLog: (obj: BatchImportEvidenceToAssessmentControlResponse) => any;
|
|
4867
|
+
/**
|
|
4868
|
+
* @internal
|
|
4869
|
+
*/
|
|
4870
|
+
export declare const CreateAssessmentRequestFilterSensitiveLog: (obj: CreateAssessmentRequest) => any;
|
|
4871
|
+
/**
|
|
4872
|
+
* @internal
|
|
4873
|
+
*/
|
|
4874
|
+
export declare const CreateAssessmentResponseFilterSensitiveLog: (obj: CreateAssessmentResponse) => any;
|
|
4875
|
+
/**
|
|
4876
|
+
* @internal
|
|
4877
|
+
*/
|
|
4878
|
+
export declare const CreateAssessmentFrameworkRequestFilterSensitiveLog: (obj: CreateAssessmentFrameworkRequest) => any;
|
|
4879
|
+
/**
|
|
4880
|
+
* @internal
|
|
4881
|
+
*/
|
|
4882
|
+
export declare const ControlMappingSourceFilterSensitiveLog: (obj: ControlMappingSource) => any;
|
|
4883
|
+
/**
|
|
4884
|
+
* @internal
|
|
4885
|
+
*/
|
|
4886
|
+
export declare const ControlFilterSensitiveLog: (obj: Control) => any;
|
|
4887
|
+
/**
|
|
4888
|
+
* @internal
|
|
4889
|
+
*/
|
|
4890
|
+
export declare const ControlSetFilterSensitiveLog: (obj: ControlSet) => any;
|
|
4891
|
+
/**
|
|
4892
|
+
* @internal
|
|
4893
|
+
*/
|
|
4894
|
+
export declare const FrameworkFilterSensitiveLog: (obj: Framework) => any;
|
|
4895
|
+
/**
|
|
4896
|
+
* @internal
|
|
4897
|
+
*/
|
|
4898
|
+
export declare const CreateAssessmentFrameworkResponseFilterSensitiveLog: (obj: CreateAssessmentFrameworkResponse) => any;
|
|
4899
|
+
/**
|
|
4900
|
+
* @internal
|
|
4901
|
+
*/
|
|
4902
|
+
export declare const CreateAssessmentReportRequestFilterSensitiveLog: (obj: CreateAssessmentReportRequest) => any;
|
|
4903
|
+
/**
|
|
4904
|
+
* @internal
|
|
4905
|
+
*/
|
|
4906
|
+
export declare const CreateAssessmentReportResponseFilterSensitiveLog: (obj: CreateAssessmentReportResponse) => any;
|
|
4907
|
+
/**
|
|
4908
|
+
* @internal
|
|
4909
|
+
*/
|
|
4910
|
+
export declare const CreateControlMappingSourceFilterSensitiveLog: (obj: CreateControlMappingSource) => any;
|
|
4911
|
+
/**
|
|
4912
|
+
* @internal
|
|
4913
|
+
*/
|
|
4914
|
+
export declare const CreateControlRequestFilterSensitiveLog: (obj: CreateControlRequest) => any;
|
|
4915
|
+
/**
|
|
4916
|
+
* @internal
|
|
4917
|
+
*/
|
|
4918
|
+
export declare const CreateControlResponseFilterSensitiveLog: (obj: CreateControlResponse) => any;
|
|
4919
|
+
/**
|
|
4920
|
+
* @internal
|
|
4921
|
+
*/
|
|
4922
|
+
export declare const GetAssessmentResponseFilterSensitiveLog: (obj: GetAssessmentResponse) => any;
|
|
4923
|
+
/**
|
|
4924
|
+
* @internal
|
|
4925
|
+
*/
|
|
4926
|
+
export declare const GetAssessmentFrameworkResponseFilterSensitiveLog: (obj: GetAssessmentFrameworkResponse) => any;
|
|
4927
|
+
/**
|
|
4928
|
+
* @internal
|
|
4929
|
+
*/
|
|
4930
|
+
export declare const GetControlResponseFilterSensitiveLog: (obj: GetControlResponse) => any;
|
|
4931
|
+
/**
|
|
4932
|
+
* @internal
|
|
4933
|
+
*/
|
|
4934
|
+
export declare const DelegationMetadataFilterSensitiveLog: (obj: DelegationMetadata) => any;
|
|
4935
|
+
/**
|
|
4936
|
+
* @internal
|
|
4937
|
+
*/
|
|
4938
|
+
export declare const GetDelegationsResponseFilterSensitiveLog: (obj: GetDelegationsResponse) => any;
|
|
4939
|
+
/**
|
|
4940
|
+
* @internal
|
|
4941
|
+
*/
|
|
4942
|
+
export declare const GetEvidenceFileUploadUrlRequestFilterSensitiveLog: (obj: GetEvidenceFileUploadUrlRequest) => any;
|
|
4943
|
+
/**
|
|
4944
|
+
* @internal
|
|
4945
|
+
*/
|
|
4946
|
+
export declare const GetEvidenceFileUploadUrlResponseFilterSensitiveLog: (obj: GetEvidenceFileUploadUrlResponse) => any;
|
|
4947
|
+
/**
|
|
4948
|
+
* @internal
|
|
4949
|
+
*/
|
|
4950
|
+
export declare const SettingsFilterSensitiveLog: (obj: Settings) => any;
|
|
4951
|
+
/**
|
|
4952
|
+
* @internal
|
|
4953
|
+
*/
|
|
4954
|
+
export declare const GetSettingsResponseFilterSensitiveLog: (obj: GetSettingsResponse) => any;
|
|
4955
|
+
/**
|
|
4956
|
+
* @internal
|
|
4957
|
+
*/
|
|
4958
|
+
export declare const ListAssessmentFrameworksResponseFilterSensitiveLog: (obj: ListAssessmentFrameworksResponse) => any;
|
|
4959
|
+
/**
|
|
4960
|
+
* @internal
|
|
4961
|
+
*/
|
|
4962
|
+
export declare const ListAssessmentFrameworkShareRequestsResponseFilterSensitiveLog: (obj: ListAssessmentFrameworkShareRequestsResponse) => any;
|
|
4963
|
+
/**
|
|
4964
|
+
* @internal
|
|
4965
|
+
*/
|
|
4966
|
+
export declare const ListAssessmentReportsResponseFilterSensitiveLog: (obj: ListAssessmentReportsResponse) => any;
|
|
4967
|
+
/**
|
|
4968
|
+
* @internal
|
|
4969
|
+
*/
|
|
4970
|
+
export declare const ListAssessmentsResponseFilterSensitiveLog: (obj: ListAssessmentsResponse) => any;
|
|
4971
|
+
/**
|
|
4972
|
+
* @internal
|
|
4973
|
+
*/
|
|
4974
|
+
export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
|
|
4975
|
+
/**
|
|
4976
|
+
* @internal
|
|
4977
|
+
*/
|
|
4978
|
+
export declare const ListNotificationsResponseFilterSensitiveLog: (obj: ListNotificationsResponse) => any;
|
|
4979
|
+
/**
|
|
4980
|
+
* @internal
|
|
4981
|
+
*/
|
|
4982
|
+
export declare const StartAssessmentFrameworkShareResponseFilterSensitiveLog: (obj: StartAssessmentFrameworkShareResponse) => any;
|
|
4983
|
+
/**
|
|
4984
|
+
* @internal
|
|
4985
|
+
*/
|
|
4986
|
+
export declare const UpdateAssessmentRequestFilterSensitiveLog: (obj: UpdateAssessmentRequest) => any;
|
|
4987
|
+
/**
|
|
4988
|
+
* @internal
|
|
4989
|
+
*/
|
|
4990
|
+
export declare const UpdateAssessmentResponseFilterSensitiveLog: (obj: UpdateAssessmentResponse) => any;
|
|
4991
|
+
/**
|
|
4992
|
+
* @internal
|
|
4993
|
+
*/
|
|
4994
|
+
export declare const UpdateAssessmentControlRequestFilterSensitiveLog: (obj: UpdateAssessmentControlRequest) => any;
|
|
4995
|
+
/**
|
|
4996
|
+
* @internal
|
|
4997
|
+
*/
|
|
4998
|
+
export declare const UpdateAssessmentControlResponseFilterSensitiveLog: (obj: UpdateAssessmentControlResponse) => any;
|
|
4999
|
+
/**
|
|
5000
|
+
* @internal
|
|
5001
|
+
*/
|
|
5002
|
+
export declare const UpdateAssessmentControlSetStatusRequestFilterSensitiveLog: (obj: UpdateAssessmentControlSetStatusRequest) => any;
|
|
5003
|
+
/**
|
|
5004
|
+
* @internal
|
|
5005
|
+
*/
|
|
5006
|
+
export declare const UpdateAssessmentControlSetStatusResponseFilterSensitiveLog: (obj: UpdateAssessmentControlSetStatusResponse) => any;
|
|
5007
|
+
/**
|
|
5008
|
+
* @internal
|
|
5009
|
+
*/
|
|
5010
|
+
export declare const UpdateAssessmentFrameworkRequestFilterSensitiveLog: (obj: UpdateAssessmentFrameworkRequest) => any;
|
|
5011
|
+
/**
|
|
5012
|
+
* @internal
|
|
5013
|
+
*/
|
|
5014
|
+
export declare const UpdateAssessmentFrameworkResponseFilterSensitiveLog: (obj: UpdateAssessmentFrameworkResponse) => any;
|
|
5015
|
+
/**
|
|
5016
|
+
* @internal
|
|
5017
|
+
*/
|
|
5018
|
+
export declare const UpdateAssessmentFrameworkShareResponseFilterSensitiveLog: (obj: UpdateAssessmentFrameworkShareResponse) => any;
|
|
5019
|
+
/**
|
|
5020
|
+
* @internal
|
|
5021
|
+
*/
|
|
5022
|
+
export declare const UpdateAssessmentStatusResponseFilterSensitiveLog: (obj: UpdateAssessmentStatusResponse) => any;
|
|
5023
|
+
/**
|
|
5024
|
+
* @internal
|
|
5025
|
+
*/
|
|
5026
|
+
export declare const UpdateControlRequestFilterSensitiveLog: (obj: UpdateControlRequest) => any;
|
|
5027
|
+
/**
|
|
5028
|
+
* @internal
|
|
5029
|
+
*/
|
|
5030
|
+
export declare const UpdateControlResponseFilterSensitiveLog: (obj: UpdateControlResponse) => any;
|
|
5031
|
+
/**
|
|
5032
|
+
* @internal
|
|
5033
|
+
*/
|
|
5034
|
+
export declare const UpdateSettingsRequestFilterSensitiveLog: (obj: UpdateSettingsRequest) => any;
|
|
5035
|
+
/**
|
|
5036
|
+
* @internal
|
|
5037
|
+
*/
|
|
5038
|
+
export declare const UpdateSettingsResponseFilterSensitiveLog: (obj: UpdateSettingsResponse) => any;
|