@aws-sdk/client-auditmanager 3.300.0 → 3.303.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/models/models_0.js +135 -160
- package/dist-es/models/models_0.js +135 -160
- package/dist-types/commands/AssociateAssessmentReportEvidenceFolderCommand.d.ts +1 -1
- package/dist-types/commands/BatchAssociateAssessmentReportEvidenceCommand.d.ts +2 -2
- package/dist-types/commands/BatchCreateDelegationByAssessmentCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteDelegationByAssessmentCommand.d.ts +2 -2
- package/dist-types/commands/BatchDisassociateAssessmentReportEvidenceCommand.d.ts +2 -2
- package/dist-types/commands/BatchImportEvidenceToAssessmentControlCommand.d.ts +3 -3
- package/dist-types/commands/CreateAssessmentCommand.d.ts +10 -10
- package/dist-types/commands/CreateAssessmentFrameworkCommand.d.ts +6 -6
- package/dist-types/commands/CreateAssessmentReportCommand.d.ts +1 -1
- package/dist-types/commands/CreateControlCommand.d.ts +5 -5
- package/dist-types/commands/DeleteAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssessmentFrameworkCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssessmentFrameworkShareCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssessmentReportCommand.d.ts +1 -1
- package/dist-types/commands/DeleteControlCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAssessmentReportEvidenceFolderCommand.d.ts +1 -1
- package/dist-types/commands/GetAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/GetAssessmentFrameworkCommand.d.ts +1 -1
- package/dist-types/commands/GetAssessmentReportUrlCommand.d.ts +1 -1
- package/dist-types/commands/GetChangeLogsCommand.d.ts +1 -1
- package/dist-types/commands/GetControlCommand.d.ts +1 -1
- package/dist-types/commands/GetDelegationsCommand.d.ts +1 -1
- package/dist-types/commands/GetEvidenceByEvidenceFolderCommand.d.ts +1 -1
- package/dist-types/commands/GetEvidenceCommand.d.ts +1 -1
- package/dist-types/commands/GetEvidenceFolderCommand.d.ts +1 -1
- package/dist-types/commands/GetEvidenceFoldersByAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/GetEvidenceFoldersByAssessmentControlCommand.d.ts +1 -1
- package/dist-types/commands/GetInsightsByAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/GetSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +1 -1
- package/dist-types/commands/ListAssessmentFrameworkShareRequestsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssessmentFrameworksCommand.d.ts +1 -1
- package/dist-types/commands/ListAssessmentReportsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssessmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +1 -1
- package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +1 -1
- package/dist-types/commands/ListControlsCommand.d.ts +1 -1
- package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RegisterAccountCommand.d.ts +1 -1
- package/dist-types/commands/RegisterOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAssessmentCommand.d.ts +9 -9
- package/dist-types/commands/UpdateAssessmentControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssessmentControlSetStatusCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssessmentFrameworkCommand.d.ts +5 -5
- package/dist-types/commands/UpdateAssessmentFrameworkShareCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssessmentStatusCommand.d.ts +1 -1
- package/dist-types/commands/UpdateControlCommand.d.ts +4 -4
- package/dist-types/commands/UpdateSettingsCommand.d.ts +5 -5
- package/dist-types/commands/ValidateAssessmentReportIntegrityCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +260 -135
- package/dist-types/ts3.4/models/models_0.d.ts +178 -135
- package/package.json +34 -34
|
@@ -7,21 +7,23 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare
|
|
11
|
-
ACTIVE
|
|
12
|
-
INACTIVE
|
|
13
|
-
PENDING_ACTIVATION
|
|
14
|
-
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
10
|
+
export declare const AccountStatus: {
|
|
11
|
+
readonly ACTIVE: "ACTIVE";
|
|
12
|
+
readonly INACTIVE: "INACTIVE";
|
|
13
|
+
readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
|
|
14
|
+
};
|
|
15
|
+
export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];
|
|
16
|
+
export declare const ActionEnum: {
|
|
17
|
+
readonly ACTIVE: "ACTIVE";
|
|
18
|
+
readonly CREATE: "CREATE";
|
|
19
|
+
readonly DELETE: "DELETE";
|
|
20
|
+
readonly IMPORT_EVIDENCE: "IMPORT_EVIDENCE";
|
|
21
|
+
readonly INACTIVE: "INACTIVE";
|
|
22
|
+
readonly REVIEWED: "REVIEWED";
|
|
23
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
24
|
+
readonly UPDATE_METADATA: "UPDATE_METADATA";
|
|
25
|
+
};
|
|
26
|
+
export type ActionEnum = (typeof ActionEnum)[keyof typeof ActionEnum];
|
|
25
27
|
export interface AWSAccount {
|
|
26
28
|
id?: string;
|
|
27
29
|
emailAddress?: string;
|
|
@@ -32,17 +34,20 @@ export interface ControlComment {
|
|
|
32
34
|
commentBody?: string;
|
|
33
35
|
postedDate?: Date;
|
|
34
36
|
}
|
|
35
|
-
export declare
|
|
36
|
-
AUTOMATE
|
|
37
|
-
DEFER
|
|
38
|
-
IGNORE
|
|
39
|
-
MANUAL
|
|
40
|
-
}
|
|
41
|
-
export
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
37
|
+
export declare const ControlResponse: {
|
|
38
|
+
readonly AUTOMATE: "AUTOMATE";
|
|
39
|
+
readonly DEFER: "DEFER";
|
|
40
|
+
readonly IGNORE: "IGNORE";
|
|
41
|
+
readonly MANUAL: "MANUAL";
|
|
42
|
+
};
|
|
43
|
+
export type ControlResponse =
|
|
44
|
+
(typeof ControlResponse)[keyof typeof ControlResponse];
|
|
45
|
+
export declare const ControlStatus: {
|
|
46
|
+
readonly INACTIVE: "INACTIVE";
|
|
47
|
+
readonly REVIEWED: "REVIEWED";
|
|
48
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
49
|
+
};
|
|
50
|
+
export type ControlStatus = (typeof ControlStatus)[keyof typeof ControlStatus];
|
|
46
51
|
export interface AssessmentControl {
|
|
47
52
|
id?: string;
|
|
48
53
|
name?: string;
|
|
@@ -54,15 +59,18 @@ export interface AssessmentControl {
|
|
|
54
59
|
evidenceCount?: number;
|
|
55
60
|
assessmentReportEvidenceCount?: number;
|
|
56
61
|
}
|
|
57
|
-
export declare
|
|
58
|
-
PROCESS_OWNER
|
|
59
|
-
RESOURCE_OWNER
|
|
60
|
-
}
|
|
61
|
-
export
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
export declare const RoleType: {
|
|
63
|
+
readonly PROCESS_OWNER: "PROCESS_OWNER";
|
|
64
|
+
readonly RESOURCE_OWNER: "RESOURCE_OWNER";
|
|
65
|
+
};
|
|
66
|
+
export type RoleType = (typeof RoleType)[keyof typeof RoleType];
|
|
67
|
+
export declare const DelegationStatus: {
|
|
68
|
+
readonly COMPLETE: "COMPLETE";
|
|
69
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
70
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
71
|
+
};
|
|
72
|
+
export type DelegationStatus =
|
|
73
|
+
(typeof DelegationStatus)[keyof typeof DelegationStatus];
|
|
66
74
|
export interface Delegation {
|
|
67
75
|
id?: string;
|
|
68
76
|
assessmentName?: string;
|
|
@@ -80,11 +88,13 @@ export interface Role {
|
|
|
80
88
|
roleType: RoleType | string | undefined;
|
|
81
89
|
roleArn: string | undefined;
|
|
82
90
|
}
|
|
83
|
-
export declare
|
|
84
|
-
ACTIVE
|
|
85
|
-
REVIEWED
|
|
86
|
-
UNDER_REVIEW
|
|
87
|
-
}
|
|
91
|
+
export declare const ControlSetStatus: {
|
|
92
|
+
readonly ACTIVE: "ACTIVE";
|
|
93
|
+
readonly REVIEWED: "REVIEWED";
|
|
94
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
95
|
+
};
|
|
96
|
+
export type ControlSetStatus =
|
|
97
|
+
(typeof ControlSetStatus)[keyof typeof ControlSetStatus];
|
|
88
98
|
export interface AssessmentControlSet {
|
|
89
99
|
id?: string;
|
|
90
100
|
description?: string;
|
|
@@ -107,9 +117,11 @@ export interface AssessmentFramework {
|
|
|
107
117
|
metadata?: FrameworkMetadata;
|
|
108
118
|
controlSets?: AssessmentControlSet[];
|
|
109
119
|
}
|
|
110
|
-
export declare
|
|
111
|
-
S3
|
|
112
|
-
}
|
|
120
|
+
export declare const AssessmentReportDestinationType: {
|
|
121
|
+
readonly S3: "S3";
|
|
122
|
+
};
|
|
123
|
+
export type AssessmentReportDestinationType =
|
|
124
|
+
(typeof AssessmentReportDestinationType)[keyof typeof AssessmentReportDestinationType];
|
|
113
125
|
export interface AssessmentReportsDestination {
|
|
114
126
|
destinationType?: AssessmentReportDestinationType | string;
|
|
115
127
|
destination?: string;
|
|
@@ -121,10 +133,12 @@ export interface Scope {
|
|
|
121
133
|
awsAccounts?: AWSAccount[];
|
|
122
134
|
awsServices?: AWSService[];
|
|
123
135
|
}
|
|
124
|
-
export declare
|
|
125
|
-
ACTIVE
|
|
126
|
-
INACTIVE
|
|
127
|
-
}
|
|
136
|
+
export declare const AssessmentStatus: {
|
|
137
|
+
readonly ACTIVE: "ACTIVE";
|
|
138
|
+
readonly INACTIVE: "INACTIVE";
|
|
139
|
+
};
|
|
140
|
+
export type AssessmentStatus =
|
|
141
|
+
(typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
128
142
|
export interface AssessmentMetadata {
|
|
129
143
|
name?: string;
|
|
130
144
|
id?: string;
|
|
@@ -165,10 +179,11 @@ export interface AssessmentEvidenceFolder {
|
|
|
165
179
|
evidenceByTypeUserActivityCount?: number;
|
|
166
180
|
evidenceAwsServiceSourceCount?: number;
|
|
167
181
|
}
|
|
168
|
-
export declare
|
|
169
|
-
CUSTOM
|
|
170
|
-
STANDARD
|
|
171
|
-
}
|
|
182
|
+
export declare const FrameworkType: {
|
|
183
|
+
readonly CUSTOM: "Custom";
|
|
184
|
+
readonly STANDARD: "Standard";
|
|
185
|
+
};
|
|
186
|
+
export type FrameworkType = (typeof FrameworkType)[keyof typeof FrameworkType];
|
|
172
187
|
export interface AssessmentFrameworkMetadata {
|
|
173
188
|
arn?: string;
|
|
174
189
|
id?: string;
|
|
@@ -182,16 +197,18 @@ export interface AssessmentFrameworkMetadata {
|
|
|
182
197
|
createdAt?: Date;
|
|
183
198
|
lastUpdatedAt?: Date;
|
|
184
199
|
}
|
|
185
|
-
export declare
|
|
186
|
-
ACTIVE
|
|
187
|
-
DECLINED
|
|
188
|
-
EXPIRED
|
|
189
|
-
EXPIRING
|
|
190
|
-
FAILED
|
|
191
|
-
REPLICATING
|
|
192
|
-
REVOKED
|
|
193
|
-
SHARED
|
|
194
|
-
}
|
|
200
|
+
export declare const ShareRequestStatus: {
|
|
201
|
+
readonly ACTIVE: "ACTIVE";
|
|
202
|
+
readonly DECLINED: "DECLINED";
|
|
203
|
+
readonly EXPIRED: "EXPIRED";
|
|
204
|
+
readonly EXPIRING: "EXPIRING";
|
|
205
|
+
readonly FAILED: "FAILED";
|
|
206
|
+
readonly REPLICATING: "REPLICATING";
|
|
207
|
+
readonly REVOKED: "REVOKED";
|
|
208
|
+
readonly SHARED: "SHARED";
|
|
209
|
+
};
|
|
210
|
+
export type ShareRequestStatus =
|
|
211
|
+
(typeof ShareRequestStatus)[keyof typeof ShareRequestStatus];
|
|
195
212
|
export interface AssessmentFrameworkShareRequest {
|
|
196
213
|
id?: string;
|
|
197
214
|
frameworkId?: string;
|
|
@@ -219,11 +236,13 @@ export interface AssessmentMetadataItem {
|
|
|
219
236
|
creationTime?: Date;
|
|
220
237
|
lastUpdated?: Date;
|
|
221
238
|
}
|
|
222
|
-
export declare
|
|
223
|
-
COMPLETE
|
|
224
|
-
FAILED
|
|
225
|
-
IN_PROGRESS
|
|
226
|
-
}
|
|
239
|
+
export declare const AssessmentReportStatus: {
|
|
240
|
+
readonly COMPLETE: "COMPLETE";
|
|
241
|
+
readonly FAILED: "FAILED";
|
|
242
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
243
|
+
};
|
|
244
|
+
export type AssessmentReportStatus =
|
|
245
|
+
(typeof AssessmentReportStatus)[keyof typeof AssessmentReportStatus];
|
|
227
246
|
export interface AssessmentReport {
|
|
228
247
|
id?: string;
|
|
229
248
|
name?: string;
|
|
@@ -275,12 +294,14 @@ export interface ValidationExceptionField {
|
|
|
275
294
|
name: string | undefined;
|
|
276
295
|
message: string | undefined;
|
|
277
296
|
}
|
|
278
|
-
export declare
|
|
279
|
-
CANNOT_PARSE
|
|
280
|
-
FIELD_VALIDATION_FAILED
|
|
281
|
-
OTHER
|
|
282
|
-
UNKNOWN_OPERATION
|
|
283
|
-
}
|
|
297
|
+
export declare const ValidationExceptionReason: {
|
|
298
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
299
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
300
|
+
readonly OTHER: "other";
|
|
301
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
302
|
+
};
|
|
303
|
+
export type ValidationExceptionReason =
|
|
304
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
284
305
|
export declare class ValidationException extends __BaseException {
|
|
285
306
|
readonly name: "ValidationException";
|
|
286
307
|
readonly $fault: "client";
|
|
@@ -389,29 +410,36 @@ export interface CreateAssessmentFrameworkRequest {
|
|
|
389
410
|
controlSets: CreateAssessmentFrameworkControlSet[] | undefined;
|
|
390
411
|
tags?: Record<string, string>;
|
|
391
412
|
}
|
|
392
|
-
export declare
|
|
393
|
-
DAILY
|
|
394
|
-
MONTHLY
|
|
395
|
-
WEEKLY
|
|
396
|
-
}
|
|
397
|
-
export
|
|
398
|
-
|
|
399
|
-
|
|
413
|
+
export declare const SourceFrequency: {
|
|
414
|
+
readonly DAILY: "DAILY";
|
|
415
|
+
readonly MONTHLY: "MONTHLY";
|
|
416
|
+
readonly WEEKLY: "WEEKLY";
|
|
417
|
+
};
|
|
418
|
+
export type SourceFrequency =
|
|
419
|
+
(typeof SourceFrequency)[keyof typeof SourceFrequency];
|
|
420
|
+
export declare const KeywordInputType: {
|
|
421
|
+
readonly SELECT_FROM_LIST: "SELECT_FROM_LIST";
|
|
422
|
+
};
|
|
423
|
+
export type KeywordInputType =
|
|
424
|
+
(typeof KeywordInputType)[keyof typeof KeywordInputType];
|
|
400
425
|
export interface SourceKeyword {
|
|
401
426
|
keywordInputType?: KeywordInputType | string;
|
|
402
427
|
keywordValue?: string;
|
|
403
428
|
}
|
|
404
|
-
export declare
|
|
405
|
-
PROCEDURAL_CONTROLS_MAPPING
|
|
406
|
-
SYSTEM_CONTROLS_MAPPING
|
|
407
|
-
}
|
|
408
|
-
export
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
429
|
+
export declare const SourceSetUpOption: {
|
|
430
|
+
readonly PROCEDURAL_CONTROLS_MAPPING: "Procedural_Controls_Mapping";
|
|
431
|
+
readonly SYSTEM_CONTROLS_MAPPING: "System_Controls_Mapping";
|
|
432
|
+
};
|
|
433
|
+
export type SourceSetUpOption =
|
|
434
|
+
(typeof SourceSetUpOption)[keyof typeof SourceSetUpOption];
|
|
435
|
+
export declare const SourceType: {
|
|
436
|
+
readonly AWS_API_CALL: "AWS_API_Call";
|
|
437
|
+
readonly AWS_CLOUDTRAIL: "AWS_Cloudtrail";
|
|
438
|
+
readonly AWS_CONFIG: "AWS_Config";
|
|
439
|
+
readonly AWS_SECURITY_HUB: "AWS_Security_Hub";
|
|
440
|
+
readonly MANUAL: "MANUAL";
|
|
441
|
+
};
|
|
442
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
415
443
|
export interface ControlMappingSource {
|
|
416
444
|
sourceId?: string;
|
|
417
445
|
sourceName?: string;
|
|
@@ -422,10 +450,11 @@ export interface ControlMappingSource {
|
|
|
422
450
|
sourceFrequency?: SourceFrequency | string;
|
|
423
451
|
troubleshootingText?: string;
|
|
424
452
|
}
|
|
425
|
-
export declare
|
|
426
|
-
CUSTOM
|
|
427
|
-
STANDARD
|
|
428
|
-
}
|
|
453
|
+
export declare const ControlType: {
|
|
454
|
+
readonly CUSTOM: "Custom";
|
|
455
|
+
readonly STANDARD: "Standard";
|
|
456
|
+
};
|
|
457
|
+
export type ControlType = (typeof ControlType)[keyof typeof ControlType];
|
|
429
458
|
export interface Control {
|
|
430
459
|
arn?: string;
|
|
431
460
|
id?: string;
|
|
@@ -505,10 +534,12 @@ export interface DeleteAssessmentFrameworkRequest {
|
|
|
505
534
|
frameworkId: string | undefined;
|
|
506
535
|
}
|
|
507
536
|
export interface DeleteAssessmentFrameworkResponse {}
|
|
508
|
-
export declare
|
|
509
|
-
RECEIVED
|
|
510
|
-
SENT
|
|
511
|
-
}
|
|
537
|
+
export declare const ShareRequestType: {
|
|
538
|
+
readonly RECEIVED: "RECEIVED";
|
|
539
|
+
readonly SENT: "SENT";
|
|
540
|
+
};
|
|
541
|
+
export type ShareRequestType =
|
|
542
|
+
(typeof ShareRequestType)[keyof typeof ShareRequestType];
|
|
512
543
|
export interface DeleteAssessmentFrameworkShareRequest {
|
|
513
544
|
requestId: string | undefined;
|
|
514
545
|
requestType: ShareRequestType | string | undefined;
|
|
@@ -571,13 +602,15 @@ export interface GetChangeLogsRequest {
|
|
|
571
602
|
nextToken?: string;
|
|
572
603
|
maxResults?: number;
|
|
573
604
|
}
|
|
574
|
-
export declare
|
|
575
|
-
ASSESSMENT
|
|
576
|
-
ASSESSMENT_REPORT
|
|
577
|
-
CONTROL
|
|
578
|
-
CONTROL_SET
|
|
579
|
-
DELEGATION
|
|
580
|
-
}
|
|
605
|
+
export declare const ObjectTypeEnum: {
|
|
606
|
+
readonly ASSESSMENT: "ASSESSMENT";
|
|
607
|
+
readonly ASSESSMENT_REPORT: "ASSESSMENT_REPORT";
|
|
608
|
+
readonly CONTROL: "CONTROL";
|
|
609
|
+
readonly CONTROL_SET: "CONTROL_SET";
|
|
610
|
+
readonly DELEGATION: "DELEGATION";
|
|
611
|
+
};
|
|
612
|
+
export type ObjectTypeEnum =
|
|
613
|
+
(typeof ObjectTypeEnum)[keyof typeof ObjectTypeEnum];
|
|
581
614
|
export interface ChangeLog {
|
|
582
615
|
objectType?: ObjectTypeEnum | string;
|
|
583
616
|
objectName?: string;
|
|
@@ -724,36 +757,44 @@ export interface ServiceMetadata {
|
|
|
724
757
|
export interface GetServicesInScopeResponse {
|
|
725
758
|
serviceMetadata?: ServiceMetadata[];
|
|
726
759
|
}
|
|
727
|
-
export declare
|
|
728
|
-
ALL
|
|
729
|
-
DEFAULT_ASSESSMENT_REPORTS_DESTINATION
|
|
730
|
-
DEFAULT_PROCESS_OWNERS
|
|
731
|
-
DEREGISTRATION_POLICY
|
|
732
|
-
EVIDENCE_FINDER_ENABLEMENT
|
|
733
|
-
IS_AWS_ORG_ENABLED
|
|
734
|
-
SNS_TOPIC
|
|
735
|
-
}
|
|
760
|
+
export declare const SettingAttribute: {
|
|
761
|
+
readonly ALL: "ALL";
|
|
762
|
+
readonly DEFAULT_ASSESSMENT_REPORTS_DESTINATION: "DEFAULT_ASSESSMENT_REPORTS_DESTINATION";
|
|
763
|
+
readonly DEFAULT_PROCESS_OWNERS: "DEFAULT_PROCESS_OWNERS";
|
|
764
|
+
readonly DEREGISTRATION_POLICY: "DEREGISTRATION_POLICY";
|
|
765
|
+
readonly EVIDENCE_FINDER_ENABLEMENT: "EVIDENCE_FINDER_ENABLEMENT";
|
|
766
|
+
readonly IS_AWS_ORG_ENABLED: "IS_AWS_ORG_ENABLED";
|
|
767
|
+
readonly SNS_TOPIC: "SNS_TOPIC";
|
|
768
|
+
};
|
|
769
|
+
export type SettingAttribute =
|
|
770
|
+
(typeof SettingAttribute)[keyof typeof SettingAttribute];
|
|
736
771
|
export interface GetSettingsRequest {
|
|
737
772
|
attribute: SettingAttribute | string | undefined;
|
|
738
773
|
}
|
|
739
|
-
export declare
|
|
740
|
-
ALL
|
|
741
|
-
DEFAULT
|
|
742
|
-
}
|
|
774
|
+
export declare const DeleteResources: {
|
|
775
|
+
readonly ALL: "ALL";
|
|
776
|
+
readonly DEFAULT: "DEFAULT";
|
|
777
|
+
};
|
|
778
|
+
export type DeleteResources =
|
|
779
|
+
(typeof DeleteResources)[keyof typeof DeleteResources];
|
|
743
780
|
export interface DeregistrationPolicy {
|
|
744
781
|
deleteResources?: DeleteResources | string;
|
|
745
782
|
}
|
|
746
|
-
export declare
|
|
747
|
-
COMPLETED
|
|
748
|
-
IN_PROGRESS
|
|
749
|
-
NOT_STARTED
|
|
750
|
-
}
|
|
751
|
-
export
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
783
|
+
export declare const EvidenceFinderBackfillStatus: {
|
|
784
|
+
readonly COMPLETED: "COMPLETED";
|
|
785
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
786
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
787
|
+
};
|
|
788
|
+
export type EvidenceFinderBackfillStatus =
|
|
789
|
+
(typeof EvidenceFinderBackfillStatus)[keyof typeof EvidenceFinderBackfillStatus];
|
|
790
|
+
export declare const EvidenceFinderEnablementStatus: {
|
|
791
|
+
readonly DISABLED: "DISABLED";
|
|
792
|
+
readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
|
|
793
|
+
readonly ENABLED: "ENABLED";
|
|
794
|
+
readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
|
|
795
|
+
};
|
|
796
|
+
export type EvidenceFinderEnablementStatus =
|
|
797
|
+
(typeof EvidenceFinderEnablementStatus)[keyof typeof EvidenceFinderEnablementStatus];
|
|
757
798
|
export interface EvidenceFinderEnablement {
|
|
758
799
|
eventDataStoreArn?: string;
|
|
759
800
|
enablementStatus?: EvidenceFinderEnablementStatus | string;
|
|
@@ -1004,11 +1045,13 @@ export interface UpdateAssessmentFrameworkRequest {
|
|
|
1004
1045
|
export interface UpdateAssessmentFrameworkResponse {
|
|
1005
1046
|
framework?: Framework;
|
|
1006
1047
|
}
|
|
1007
|
-
export declare
|
|
1008
|
-
ACCEPT
|
|
1009
|
-
DECLINE
|
|
1010
|
-
REVOKE
|
|
1011
|
-
}
|
|
1048
|
+
export declare const ShareRequestAction: {
|
|
1049
|
+
readonly ACCEPT: "ACCEPT";
|
|
1050
|
+
readonly DECLINE: "DECLINE";
|
|
1051
|
+
readonly REVOKE: "REVOKE";
|
|
1052
|
+
};
|
|
1053
|
+
export type ShareRequestAction =
|
|
1054
|
+
(typeof ShareRequestAction)[keyof typeof ShareRequestAction];
|
|
1012
1055
|
export interface UpdateAssessmentFrameworkShareRequest {
|
|
1013
1056
|
requestId: string | undefined;
|
|
1014
1057
|
requestType: ShareRequestType | string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auditmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auditmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|