@aws-sdk/client-auditmanager 3.301.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/models/models_0.d.ts +260 -135
- package/dist-types/ts3.4/models/models_0.d.ts +178 -135
- package/package.json +34 -34
|
@@ -11,84 +11,72 @@ export class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
export
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
export
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
export
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
export
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
75
|
-
export
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
ShareRequestStatus["EXPIRING"] = "EXPIRING";
|
|
81
|
-
ShareRequestStatus["FAILED"] = "FAILED";
|
|
82
|
-
ShareRequestStatus["REPLICATING"] = "REPLICATING";
|
|
83
|
-
ShareRequestStatus["REVOKED"] = "REVOKED";
|
|
84
|
-
ShareRequestStatus["SHARED"] = "SHARED";
|
|
85
|
-
})(ShareRequestStatus || (ShareRequestStatus = {}));
|
|
86
|
-
export var AssessmentReportStatus;
|
|
87
|
-
(function (AssessmentReportStatus) {
|
|
88
|
-
AssessmentReportStatus["COMPLETE"] = "COMPLETE";
|
|
89
|
-
AssessmentReportStatus["FAILED"] = "FAILED";
|
|
90
|
-
AssessmentReportStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
91
|
-
})(AssessmentReportStatus || (AssessmentReportStatus = {}));
|
|
14
|
+
export const AccountStatus = {
|
|
15
|
+
ACTIVE: "ACTIVE",
|
|
16
|
+
INACTIVE: "INACTIVE",
|
|
17
|
+
PENDING_ACTIVATION: "PENDING_ACTIVATION",
|
|
18
|
+
};
|
|
19
|
+
export const ActionEnum = {
|
|
20
|
+
ACTIVE: "ACTIVE",
|
|
21
|
+
CREATE: "CREATE",
|
|
22
|
+
DELETE: "DELETE",
|
|
23
|
+
IMPORT_EVIDENCE: "IMPORT_EVIDENCE",
|
|
24
|
+
INACTIVE: "INACTIVE",
|
|
25
|
+
REVIEWED: "REVIEWED",
|
|
26
|
+
UNDER_REVIEW: "UNDER_REVIEW",
|
|
27
|
+
UPDATE_METADATA: "UPDATE_METADATA",
|
|
28
|
+
};
|
|
29
|
+
export const ControlResponse = {
|
|
30
|
+
AUTOMATE: "AUTOMATE",
|
|
31
|
+
DEFER: "DEFER",
|
|
32
|
+
IGNORE: "IGNORE",
|
|
33
|
+
MANUAL: "MANUAL",
|
|
34
|
+
};
|
|
35
|
+
export const ControlStatus = {
|
|
36
|
+
INACTIVE: "INACTIVE",
|
|
37
|
+
REVIEWED: "REVIEWED",
|
|
38
|
+
UNDER_REVIEW: "UNDER_REVIEW",
|
|
39
|
+
};
|
|
40
|
+
export const RoleType = {
|
|
41
|
+
PROCESS_OWNER: "PROCESS_OWNER",
|
|
42
|
+
RESOURCE_OWNER: "RESOURCE_OWNER",
|
|
43
|
+
};
|
|
44
|
+
export const DelegationStatus = {
|
|
45
|
+
COMPLETE: "COMPLETE",
|
|
46
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
47
|
+
UNDER_REVIEW: "UNDER_REVIEW",
|
|
48
|
+
};
|
|
49
|
+
export const ControlSetStatus = {
|
|
50
|
+
ACTIVE: "ACTIVE",
|
|
51
|
+
REVIEWED: "REVIEWED",
|
|
52
|
+
UNDER_REVIEW: "UNDER_REVIEW",
|
|
53
|
+
};
|
|
54
|
+
export const AssessmentReportDestinationType = {
|
|
55
|
+
S3: "S3",
|
|
56
|
+
};
|
|
57
|
+
export const AssessmentStatus = {
|
|
58
|
+
ACTIVE: "ACTIVE",
|
|
59
|
+
INACTIVE: "INACTIVE",
|
|
60
|
+
};
|
|
61
|
+
export const FrameworkType = {
|
|
62
|
+
CUSTOM: "Custom",
|
|
63
|
+
STANDARD: "Standard",
|
|
64
|
+
};
|
|
65
|
+
export const ShareRequestStatus = {
|
|
66
|
+
ACTIVE: "ACTIVE",
|
|
67
|
+
DECLINED: "DECLINED",
|
|
68
|
+
EXPIRED: "EXPIRED",
|
|
69
|
+
EXPIRING: "EXPIRING",
|
|
70
|
+
FAILED: "FAILED",
|
|
71
|
+
REPLICATING: "REPLICATING",
|
|
72
|
+
REVOKED: "REVOKED",
|
|
73
|
+
SHARED: "SHARED",
|
|
74
|
+
};
|
|
75
|
+
export const AssessmentReportStatus = {
|
|
76
|
+
COMPLETE: "COMPLETE",
|
|
77
|
+
FAILED: "FAILED",
|
|
78
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
79
|
+
};
|
|
92
80
|
export class InternalServerException extends __BaseException {
|
|
93
81
|
constructor(opts) {
|
|
94
82
|
super({
|
|
@@ -115,13 +103,12 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
115
103
|
this.resourceType = opts.resourceType;
|
|
116
104
|
}
|
|
117
105
|
}
|
|
118
|
-
export
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
106
|
+
export const ValidationExceptionReason = {
|
|
107
|
+
CANNOT_PARSE: "cannotParse",
|
|
108
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
109
|
+
OTHER: "other",
|
|
110
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
111
|
+
};
|
|
125
112
|
export class ValidationException extends __BaseException {
|
|
126
113
|
constructor(opts) {
|
|
127
114
|
super({
|
|
@@ -148,75 +135,64 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
148
135
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
149
136
|
}
|
|
150
137
|
}
|
|
151
|
-
export
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
}
|
|
174
|
-
export
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
EvidenceFinderBackfillStatus["COMPLETED"] = "COMPLETED";
|
|
210
|
-
EvidenceFinderBackfillStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
211
|
-
EvidenceFinderBackfillStatus["NOT_STARTED"] = "NOT_STARTED";
|
|
212
|
-
})(EvidenceFinderBackfillStatus || (EvidenceFinderBackfillStatus = {}));
|
|
213
|
-
export var EvidenceFinderEnablementStatus;
|
|
214
|
-
(function (EvidenceFinderEnablementStatus) {
|
|
215
|
-
EvidenceFinderEnablementStatus["DISABLED"] = "DISABLED";
|
|
216
|
-
EvidenceFinderEnablementStatus["DISABLE_IN_PROGRESS"] = "DISABLE_IN_PROGRESS";
|
|
217
|
-
EvidenceFinderEnablementStatus["ENABLED"] = "ENABLED";
|
|
218
|
-
EvidenceFinderEnablementStatus["ENABLE_IN_PROGRESS"] = "ENABLE_IN_PROGRESS";
|
|
219
|
-
})(EvidenceFinderEnablementStatus || (EvidenceFinderEnablementStatus = {}));
|
|
138
|
+
export const SourceFrequency = {
|
|
139
|
+
DAILY: "DAILY",
|
|
140
|
+
MONTHLY: "MONTHLY",
|
|
141
|
+
WEEKLY: "WEEKLY",
|
|
142
|
+
};
|
|
143
|
+
export const KeywordInputType = {
|
|
144
|
+
SELECT_FROM_LIST: "SELECT_FROM_LIST",
|
|
145
|
+
};
|
|
146
|
+
export const SourceSetUpOption = {
|
|
147
|
+
PROCEDURAL_CONTROLS_MAPPING: "Procedural_Controls_Mapping",
|
|
148
|
+
SYSTEM_CONTROLS_MAPPING: "System_Controls_Mapping",
|
|
149
|
+
};
|
|
150
|
+
export const SourceType = {
|
|
151
|
+
AWS_API_CALL: "AWS_API_Call",
|
|
152
|
+
AWS_CLOUDTRAIL: "AWS_Cloudtrail",
|
|
153
|
+
AWS_CONFIG: "AWS_Config",
|
|
154
|
+
AWS_SECURITY_HUB: "AWS_Security_Hub",
|
|
155
|
+
MANUAL: "MANUAL",
|
|
156
|
+
};
|
|
157
|
+
export const ControlType = {
|
|
158
|
+
CUSTOM: "Custom",
|
|
159
|
+
STANDARD: "Standard",
|
|
160
|
+
};
|
|
161
|
+
export const ShareRequestType = {
|
|
162
|
+
RECEIVED: "RECEIVED",
|
|
163
|
+
SENT: "SENT",
|
|
164
|
+
};
|
|
165
|
+
export const ObjectTypeEnum = {
|
|
166
|
+
ASSESSMENT: "ASSESSMENT",
|
|
167
|
+
ASSESSMENT_REPORT: "ASSESSMENT_REPORT",
|
|
168
|
+
CONTROL: "CONTROL",
|
|
169
|
+
CONTROL_SET: "CONTROL_SET",
|
|
170
|
+
DELEGATION: "DELEGATION",
|
|
171
|
+
};
|
|
172
|
+
export const SettingAttribute = {
|
|
173
|
+
ALL: "ALL",
|
|
174
|
+
DEFAULT_ASSESSMENT_REPORTS_DESTINATION: "DEFAULT_ASSESSMENT_REPORTS_DESTINATION",
|
|
175
|
+
DEFAULT_PROCESS_OWNERS: "DEFAULT_PROCESS_OWNERS",
|
|
176
|
+
DEREGISTRATION_POLICY: "DEREGISTRATION_POLICY",
|
|
177
|
+
EVIDENCE_FINDER_ENABLEMENT: "EVIDENCE_FINDER_ENABLEMENT",
|
|
178
|
+
IS_AWS_ORG_ENABLED: "IS_AWS_ORG_ENABLED",
|
|
179
|
+
SNS_TOPIC: "SNS_TOPIC",
|
|
180
|
+
};
|
|
181
|
+
export const DeleteResources = {
|
|
182
|
+
ALL: "ALL",
|
|
183
|
+
DEFAULT: "DEFAULT",
|
|
184
|
+
};
|
|
185
|
+
export const EvidenceFinderBackfillStatus = {
|
|
186
|
+
COMPLETED: "COMPLETED",
|
|
187
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
188
|
+
NOT_STARTED: "NOT_STARTED",
|
|
189
|
+
};
|
|
190
|
+
export const EvidenceFinderEnablementStatus = {
|
|
191
|
+
DISABLED: "DISABLED",
|
|
192
|
+
DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS",
|
|
193
|
+
ENABLED: "ENABLED",
|
|
194
|
+
ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS",
|
|
195
|
+
};
|
|
220
196
|
export class ThrottlingException extends __BaseException {
|
|
221
197
|
constructor(opts) {
|
|
222
198
|
super({
|
|
@@ -229,9 +205,8 @@ export class ThrottlingException extends __BaseException {
|
|
|
229
205
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
230
206
|
}
|
|
231
207
|
}
|
|
232
|
-
export
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
})(ShareRequestAction || (ShareRequestAction = {}));
|
|
208
|
+
export const ShareRequestAction = {
|
|
209
|
+
ACCEPT: "ACCEPT",
|
|
210
|
+
DECLINE: "DECLINE",
|
|
211
|
+
REVOKE: "REVOKE",
|
|
212
|
+
};
|