@aws-sdk/client-auditmanager 3.934.0 → 3.936.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/index.js +156 -155
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +155 -0
- package/dist-es/models/errors.js +81 -0
- package/dist-es/models/models_0.js +1 -236
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +379 -0
- package/dist-types/models/errors.d.ts +101 -0
- package/dist-types/models/models_0.d.ts +1 -478
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +203 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +29 -251
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
export declare const AccountStatus: {
|
|
2
|
+
readonly ACTIVE: "ACTIVE";
|
|
3
|
+
readonly INACTIVE: "INACTIVE";
|
|
4
|
+
readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
|
|
5
|
+
};
|
|
6
|
+
export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];
|
|
7
|
+
export declare const ActionEnum: {
|
|
8
|
+
readonly ACTIVE: "ACTIVE";
|
|
9
|
+
readonly CREATE: "CREATE";
|
|
10
|
+
readonly DELETE: "DELETE";
|
|
11
|
+
readonly IMPORT_EVIDENCE: "IMPORT_EVIDENCE";
|
|
12
|
+
readonly INACTIVE: "INACTIVE";
|
|
13
|
+
readonly REVIEWED: "REVIEWED";
|
|
14
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
15
|
+
readonly UPDATE_METADATA: "UPDATE_METADATA";
|
|
16
|
+
};
|
|
17
|
+
export type ActionEnum = (typeof ActionEnum)[keyof typeof ActionEnum];
|
|
18
|
+
export declare const ControlResponse: {
|
|
19
|
+
readonly AUTOMATE: "AUTOMATE";
|
|
20
|
+
readonly DEFER: "DEFER";
|
|
21
|
+
readonly IGNORE: "IGNORE";
|
|
22
|
+
readonly MANUAL: "MANUAL";
|
|
23
|
+
};
|
|
24
|
+
export type ControlResponse =
|
|
25
|
+
(typeof ControlResponse)[keyof typeof ControlResponse];
|
|
26
|
+
export declare const ControlStatus: {
|
|
27
|
+
readonly INACTIVE: "INACTIVE";
|
|
28
|
+
readonly REVIEWED: "REVIEWED";
|
|
29
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
30
|
+
};
|
|
31
|
+
export type ControlStatus = (typeof ControlStatus)[keyof typeof ControlStatus];
|
|
32
|
+
export declare const RoleType: {
|
|
33
|
+
readonly PROCESS_OWNER: "PROCESS_OWNER";
|
|
34
|
+
readonly RESOURCE_OWNER: "RESOURCE_OWNER";
|
|
35
|
+
};
|
|
36
|
+
export type RoleType = (typeof RoleType)[keyof typeof RoleType];
|
|
37
|
+
export declare const DelegationStatus: {
|
|
38
|
+
readonly COMPLETE: "COMPLETE";
|
|
39
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
40
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
41
|
+
};
|
|
42
|
+
export type DelegationStatus =
|
|
43
|
+
(typeof DelegationStatus)[keyof typeof DelegationStatus];
|
|
44
|
+
export declare const ControlSetStatus: {
|
|
45
|
+
readonly ACTIVE: "ACTIVE";
|
|
46
|
+
readonly REVIEWED: "REVIEWED";
|
|
47
|
+
readonly UNDER_REVIEW: "UNDER_REVIEW";
|
|
48
|
+
};
|
|
49
|
+
export type ControlSetStatus =
|
|
50
|
+
(typeof ControlSetStatus)[keyof typeof ControlSetStatus];
|
|
51
|
+
export declare const AssessmentReportDestinationType: {
|
|
52
|
+
readonly S3: "S3";
|
|
53
|
+
};
|
|
54
|
+
export type AssessmentReportDestinationType =
|
|
55
|
+
(typeof AssessmentReportDestinationType)[keyof typeof AssessmentReportDestinationType];
|
|
56
|
+
export declare const AssessmentStatus: {
|
|
57
|
+
readonly ACTIVE: "ACTIVE";
|
|
58
|
+
readonly INACTIVE: "INACTIVE";
|
|
59
|
+
};
|
|
60
|
+
export type AssessmentStatus =
|
|
61
|
+
(typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
62
|
+
export declare const FrameworkType: {
|
|
63
|
+
readonly CUSTOM: "Custom";
|
|
64
|
+
readonly STANDARD: "Standard";
|
|
65
|
+
};
|
|
66
|
+
export type FrameworkType = (typeof FrameworkType)[keyof typeof FrameworkType];
|
|
67
|
+
export declare const ShareRequestStatus: {
|
|
68
|
+
readonly ACTIVE: "ACTIVE";
|
|
69
|
+
readonly DECLINED: "DECLINED";
|
|
70
|
+
readonly EXPIRED: "EXPIRED";
|
|
71
|
+
readonly EXPIRING: "EXPIRING";
|
|
72
|
+
readonly FAILED: "FAILED";
|
|
73
|
+
readonly REPLICATING: "REPLICATING";
|
|
74
|
+
readonly REVOKED: "REVOKED";
|
|
75
|
+
readonly SHARED: "SHARED";
|
|
76
|
+
};
|
|
77
|
+
export type ShareRequestStatus =
|
|
78
|
+
(typeof ShareRequestStatus)[keyof typeof ShareRequestStatus];
|
|
79
|
+
export declare const AssessmentReportStatus: {
|
|
80
|
+
readonly COMPLETE: "COMPLETE";
|
|
81
|
+
readonly FAILED: "FAILED";
|
|
82
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
83
|
+
};
|
|
84
|
+
export type AssessmentReportStatus =
|
|
85
|
+
(typeof AssessmentReportStatus)[keyof typeof AssessmentReportStatus];
|
|
86
|
+
export declare const ValidationExceptionReason: {
|
|
87
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
88
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
89
|
+
readonly OTHER: "other";
|
|
90
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
91
|
+
};
|
|
92
|
+
export type ValidationExceptionReason =
|
|
93
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
94
|
+
export declare const SourceFrequency: {
|
|
95
|
+
readonly DAILY: "DAILY";
|
|
96
|
+
readonly MONTHLY: "MONTHLY";
|
|
97
|
+
readonly WEEKLY: "WEEKLY";
|
|
98
|
+
};
|
|
99
|
+
export type SourceFrequency =
|
|
100
|
+
(typeof SourceFrequency)[keyof typeof SourceFrequency];
|
|
101
|
+
export declare const KeywordInputType: {
|
|
102
|
+
readonly INPUT_TEXT: "INPUT_TEXT";
|
|
103
|
+
readonly SELECT_FROM_LIST: "SELECT_FROM_LIST";
|
|
104
|
+
readonly UPLOAD_FILE: "UPLOAD_FILE";
|
|
105
|
+
};
|
|
106
|
+
export type KeywordInputType =
|
|
107
|
+
(typeof KeywordInputType)[keyof typeof KeywordInputType];
|
|
108
|
+
export declare const SourceSetUpOption: {
|
|
109
|
+
readonly PROCEDURAL_CONTROLS_MAPPING: "Procedural_Controls_Mapping";
|
|
110
|
+
readonly SYSTEM_CONTROLS_MAPPING: "System_Controls_Mapping";
|
|
111
|
+
};
|
|
112
|
+
export type SourceSetUpOption =
|
|
113
|
+
(typeof SourceSetUpOption)[keyof typeof SourceSetUpOption];
|
|
114
|
+
export declare const SourceType: {
|
|
115
|
+
readonly AWS_API_CALL: "AWS_API_Call";
|
|
116
|
+
readonly AWS_CLOUDTRAIL: "AWS_Cloudtrail";
|
|
117
|
+
readonly AWS_CONFIG: "AWS_Config";
|
|
118
|
+
readonly AWS_SECURITY_HUB: "AWS_Security_Hub";
|
|
119
|
+
readonly COMMON_CONTROL: "Common_Control";
|
|
120
|
+
readonly CORE_CONTROL: "Core_Control";
|
|
121
|
+
readonly MANUAL: "MANUAL";
|
|
122
|
+
};
|
|
123
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
124
|
+
export declare const ControlState: {
|
|
125
|
+
readonly ACTIVE: "ACTIVE";
|
|
126
|
+
readonly END_OF_SUPPORT: "END_OF_SUPPORT";
|
|
127
|
+
};
|
|
128
|
+
export type ControlState = (typeof ControlState)[keyof typeof ControlState];
|
|
129
|
+
export declare const ControlType: {
|
|
130
|
+
readonly CORE: "Core";
|
|
131
|
+
readonly CUSTOM: "Custom";
|
|
132
|
+
readonly STANDARD: "Standard";
|
|
133
|
+
};
|
|
134
|
+
export type ControlType = (typeof ControlType)[keyof typeof ControlType];
|
|
135
|
+
export declare const ShareRequestType: {
|
|
136
|
+
readonly RECEIVED: "RECEIVED";
|
|
137
|
+
readonly SENT: "SENT";
|
|
138
|
+
};
|
|
139
|
+
export type ShareRequestType =
|
|
140
|
+
(typeof ShareRequestType)[keyof typeof ShareRequestType];
|
|
141
|
+
export declare const ObjectTypeEnum: {
|
|
142
|
+
readonly ASSESSMENT: "ASSESSMENT";
|
|
143
|
+
readonly ASSESSMENT_REPORT: "ASSESSMENT_REPORT";
|
|
144
|
+
readonly CONTROL: "CONTROL";
|
|
145
|
+
readonly CONTROL_SET: "CONTROL_SET";
|
|
146
|
+
readonly DELEGATION: "DELEGATION";
|
|
147
|
+
};
|
|
148
|
+
export type ObjectTypeEnum =
|
|
149
|
+
(typeof ObjectTypeEnum)[keyof typeof ObjectTypeEnum];
|
|
150
|
+
export declare const SettingAttribute: {
|
|
151
|
+
readonly ALL: "ALL";
|
|
152
|
+
readonly DEFAULT_ASSESSMENT_REPORTS_DESTINATION: "DEFAULT_ASSESSMENT_REPORTS_DESTINATION";
|
|
153
|
+
readonly DEFAULT_EXPORT_DESTINATION: "DEFAULT_EXPORT_DESTINATION";
|
|
154
|
+
readonly DEFAULT_PROCESS_OWNERS: "DEFAULT_PROCESS_OWNERS";
|
|
155
|
+
readonly DEREGISTRATION_POLICY: "DEREGISTRATION_POLICY";
|
|
156
|
+
readonly EVIDENCE_FINDER_ENABLEMENT: "EVIDENCE_FINDER_ENABLEMENT";
|
|
157
|
+
readonly IS_AWS_ORG_ENABLED: "IS_AWS_ORG_ENABLED";
|
|
158
|
+
readonly SNS_TOPIC: "SNS_TOPIC";
|
|
159
|
+
};
|
|
160
|
+
export type SettingAttribute =
|
|
161
|
+
(typeof SettingAttribute)[keyof typeof SettingAttribute];
|
|
162
|
+
export declare const ExportDestinationType: {
|
|
163
|
+
readonly S3: "S3";
|
|
164
|
+
};
|
|
165
|
+
export type ExportDestinationType =
|
|
166
|
+
(typeof ExportDestinationType)[keyof typeof ExportDestinationType];
|
|
167
|
+
export declare const DeleteResources: {
|
|
168
|
+
readonly ALL: "ALL";
|
|
169
|
+
readonly DEFAULT: "DEFAULT";
|
|
170
|
+
};
|
|
171
|
+
export type DeleteResources =
|
|
172
|
+
(typeof DeleteResources)[keyof typeof DeleteResources];
|
|
173
|
+
export declare const EvidenceFinderBackfillStatus: {
|
|
174
|
+
readonly COMPLETED: "COMPLETED";
|
|
175
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
176
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
177
|
+
};
|
|
178
|
+
export type EvidenceFinderBackfillStatus =
|
|
179
|
+
(typeof EvidenceFinderBackfillStatus)[keyof typeof EvidenceFinderBackfillStatus];
|
|
180
|
+
export declare const EvidenceFinderEnablementStatus: {
|
|
181
|
+
readonly DISABLED: "DISABLED";
|
|
182
|
+
readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
|
|
183
|
+
readonly ENABLED: "ENABLED";
|
|
184
|
+
readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
|
|
185
|
+
};
|
|
186
|
+
export type EvidenceFinderEnablementStatus =
|
|
187
|
+
(typeof EvidenceFinderEnablementStatus)[keyof typeof EvidenceFinderEnablementStatus];
|
|
188
|
+
export declare const DataSourceType: {
|
|
189
|
+
readonly AWS_API_CALL: "AWS_API_Call";
|
|
190
|
+
readonly AWS_CLOUDTRAIL: "AWS_Cloudtrail";
|
|
191
|
+
readonly AWS_CONFIG: "AWS_Config";
|
|
192
|
+
readonly AWS_SECURITY_HUB: "AWS_Security_Hub";
|
|
193
|
+
readonly MANUAL: "MANUAL";
|
|
194
|
+
};
|
|
195
|
+
export type DataSourceType =
|
|
196
|
+
(typeof DataSourceType)[keyof typeof DataSourceType];
|
|
197
|
+
export declare const ShareRequestAction: {
|
|
198
|
+
readonly ACCEPT: "ACCEPT";
|
|
199
|
+
readonly DECLINE: "DECLINE";
|
|
200
|
+
readonly REVOKE: "REVOKE";
|
|
201
|
+
};
|
|
202
|
+
export type ShareRequestAction =
|
|
203
|
+
(typeof ShareRequestAction)[keyof typeof ShareRequestAction];
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AuditManagerServiceException as __BaseException } from "./AuditManagerServiceException";
|
|
3
|
+
import { ValidationExceptionReason } from "./enums";
|
|
4
|
+
import { ValidationExceptionField } from "./models_0";
|
|
5
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
6
|
+
readonly name: "AccessDeniedException";
|
|
7
|
+
readonly $fault: "client";
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare class InternalServerException extends __BaseException {
|
|
13
|
+
readonly name: "InternalServerException";
|
|
14
|
+
readonly $fault: "server";
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
20
|
+
readonly name: "ResourceNotFoundException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
resourceId: string | undefined;
|
|
23
|
+
resourceType: string | undefined;
|
|
24
|
+
constructor(
|
|
25
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
export declare class ValidationException extends __BaseException {
|
|
29
|
+
readonly name: "ValidationException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
reason?: ValidationExceptionReason | undefined;
|
|
32
|
+
fields?: ValidationExceptionField[] | undefined;
|
|
33
|
+
constructor(
|
|
34
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
export declare class ThrottlingException extends __BaseException {
|
|
38
|
+
readonly name: "ThrottlingException";
|
|
39
|
+
readonly $fault: "client";
|
|
40
|
+
constructor(
|
|
41
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
45
|
+
readonly name: "ServiceQuotaExceededException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
@@ -1,29 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import {
|
|
2
|
+
AccountStatus,
|
|
3
|
+
ActionEnum,
|
|
4
|
+
AssessmentReportDestinationType,
|
|
5
|
+
AssessmentReportStatus,
|
|
6
|
+
AssessmentStatus,
|
|
7
|
+
ControlResponse,
|
|
8
|
+
ControlSetStatus,
|
|
9
|
+
ControlState,
|
|
10
|
+
ControlStatus,
|
|
11
|
+
ControlType,
|
|
12
|
+
DataSourceType,
|
|
13
|
+
DelegationStatus,
|
|
14
|
+
DeleteResources,
|
|
15
|
+
EvidenceFinderBackfillStatus,
|
|
16
|
+
EvidenceFinderEnablementStatus,
|
|
17
|
+
ExportDestinationType,
|
|
18
|
+
FrameworkType,
|
|
19
|
+
KeywordInputType,
|
|
20
|
+
ObjectTypeEnum,
|
|
21
|
+
RoleType,
|
|
22
|
+
SettingAttribute,
|
|
23
|
+
ShareRequestAction,
|
|
24
|
+
ShareRequestStatus,
|
|
25
|
+
ShareRequestType,
|
|
26
|
+
SourceFrequency,
|
|
27
|
+
SourceSetUpOption,
|
|
28
|
+
SourceType,
|
|
29
|
+
} from "./enums";
|
|
27
30
|
export interface AWSAccount {
|
|
28
31
|
id?: string | undefined;
|
|
29
32
|
emailAddress?: string | undefined;
|
|
@@ -34,20 +37,6 @@ export interface ControlComment {
|
|
|
34
37
|
commentBody?: string | undefined;
|
|
35
38
|
postedDate?: Date | undefined;
|
|
36
39
|
}
|
|
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];
|
|
51
40
|
export interface AssessmentControl {
|
|
52
41
|
id?: string | undefined;
|
|
53
42
|
name?: string | undefined;
|
|
@@ -59,18 +48,6 @@ export interface AssessmentControl {
|
|
|
59
48
|
evidenceCount?: number | undefined;
|
|
60
49
|
assessmentReportEvidenceCount?: number | undefined;
|
|
61
50
|
}
|
|
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];
|
|
74
51
|
export interface Delegation {
|
|
75
52
|
id?: string | undefined;
|
|
76
53
|
assessmentName?: string | undefined;
|
|
@@ -88,13 +65,6 @@ export interface Role {
|
|
|
88
65
|
roleType: RoleType | undefined;
|
|
89
66
|
roleArn: string | undefined;
|
|
90
67
|
}
|
|
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];
|
|
98
68
|
export interface AssessmentControlSet {
|
|
99
69
|
id?: string | undefined;
|
|
100
70
|
description?: string | undefined;
|
|
@@ -117,11 +87,6 @@ export interface AssessmentFramework {
|
|
|
117
87
|
metadata?: FrameworkMetadata | undefined;
|
|
118
88
|
controlSets?: AssessmentControlSet[] | undefined;
|
|
119
89
|
}
|
|
120
|
-
export declare const AssessmentReportDestinationType: {
|
|
121
|
-
readonly S3: "S3";
|
|
122
|
-
};
|
|
123
|
-
export type AssessmentReportDestinationType =
|
|
124
|
-
(typeof AssessmentReportDestinationType)[keyof typeof AssessmentReportDestinationType];
|
|
125
90
|
export interface AssessmentReportsDestination {
|
|
126
91
|
destinationType?: AssessmentReportDestinationType | undefined;
|
|
127
92
|
destination?: string | undefined;
|
|
@@ -133,12 +98,6 @@ export interface Scope {
|
|
|
133
98
|
awsAccounts?: AWSAccount[] | undefined;
|
|
134
99
|
awsServices?: AWSService[] | undefined;
|
|
135
100
|
}
|
|
136
|
-
export declare const AssessmentStatus: {
|
|
137
|
-
readonly ACTIVE: "ACTIVE";
|
|
138
|
-
readonly INACTIVE: "INACTIVE";
|
|
139
|
-
};
|
|
140
|
-
export type AssessmentStatus =
|
|
141
|
-
(typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
142
101
|
export interface AssessmentMetadata {
|
|
143
102
|
name?: string | undefined;
|
|
144
103
|
id?: string | undefined;
|
|
@@ -179,11 +138,6 @@ export interface AssessmentEvidenceFolder {
|
|
|
179
138
|
evidenceByTypeUserActivityCount?: number | undefined;
|
|
180
139
|
evidenceAwsServiceSourceCount?: number | undefined;
|
|
181
140
|
}
|
|
182
|
-
export declare const FrameworkType: {
|
|
183
|
-
readonly CUSTOM: "Custom";
|
|
184
|
-
readonly STANDARD: "Standard";
|
|
185
|
-
};
|
|
186
|
-
export type FrameworkType = (typeof FrameworkType)[keyof typeof FrameworkType];
|
|
187
141
|
export interface AssessmentFrameworkMetadata {
|
|
188
142
|
arn?: string | undefined;
|
|
189
143
|
id?: string | undefined;
|
|
@@ -197,18 +151,6 @@ export interface AssessmentFrameworkMetadata {
|
|
|
197
151
|
createdAt?: Date | undefined;
|
|
198
152
|
lastUpdatedAt?: Date | undefined;
|
|
199
153
|
}
|
|
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];
|
|
212
154
|
export interface AssessmentFrameworkShareRequest {
|
|
213
155
|
id?: string | undefined;
|
|
214
156
|
frameworkId?: string | undefined;
|
|
@@ -236,13 +178,6 @@ export interface AssessmentMetadataItem {
|
|
|
236
178
|
creationTime?: Date | undefined;
|
|
237
179
|
lastUpdated?: Date | undefined;
|
|
238
180
|
}
|
|
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];
|
|
246
181
|
export interface AssessmentReport {
|
|
247
182
|
id?: string | undefined;
|
|
248
183
|
name?: string | undefined;
|
|
@@ -274,43 +209,10 @@ export interface AssociateAssessmentReportEvidenceFolderRequest {
|
|
|
274
209
|
evidenceFolderId: string | undefined;
|
|
275
210
|
}
|
|
276
211
|
export interface AssociateAssessmentReportEvidenceFolderResponse {}
|
|
277
|
-
export declare class InternalServerException extends __BaseException {
|
|
278
|
-
readonly name: "InternalServerException";
|
|
279
|
-
readonly $fault: "server";
|
|
280
|
-
constructor(
|
|
281
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
282
|
-
);
|
|
283
|
-
}
|
|
284
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
285
|
-
readonly name: "ResourceNotFoundException";
|
|
286
|
-
readonly $fault: "client";
|
|
287
|
-
resourceId: string | undefined;
|
|
288
|
-
resourceType: string | undefined;
|
|
289
|
-
constructor(
|
|
290
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
291
|
-
);
|
|
292
|
-
}
|
|
293
212
|
export interface ValidationExceptionField {
|
|
294
213
|
name: string | undefined;
|
|
295
214
|
message: string | undefined;
|
|
296
215
|
}
|
|
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];
|
|
305
|
-
export declare class ValidationException extends __BaseException {
|
|
306
|
-
readonly name: "ValidationException";
|
|
307
|
-
readonly $fault: "client";
|
|
308
|
-
reason?: ValidationExceptionReason | undefined;
|
|
309
|
-
fields?: ValidationExceptionField[] | undefined;
|
|
310
|
-
constructor(
|
|
311
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
312
|
-
);
|
|
313
|
-
}
|
|
314
216
|
export interface BatchAssociateAssessmentReportEvidenceRequest {
|
|
315
217
|
assessmentId: string | undefined;
|
|
316
218
|
evidenceFolderId: string | undefined;
|
|
@@ -379,13 +281,6 @@ export interface BatchImportEvidenceToAssessmentControlError {
|
|
|
379
281
|
export interface BatchImportEvidenceToAssessmentControlResponse {
|
|
380
282
|
errors?: BatchImportEvidenceToAssessmentControlError[] | undefined;
|
|
381
283
|
}
|
|
382
|
-
export declare class ThrottlingException extends __BaseException {
|
|
383
|
-
readonly name: "ThrottlingException";
|
|
384
|
-
readonly $fault: "client";
|
|
385
|
-
constructor(
|
|
386
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
387
|
-
);
|
|
388
|
-
}
|
|
389
284
|
export interface CreateAssessmentRequest {
|
|
390
285
|
name: string | undefined;
|
|
391
286
|
description?: string | undefined;
|
|
@@ -398,13 +293,6 @@ export interface CreateAssessmentRequest {
|
|
|
398
293
|
export interface CreateAssessmentResponse {
|
|
399
294
|
assessment?: Assessment | undefined;
|
|
400
295
|
}
|
|
401
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
402
|
-
readonly name: "ServiceQuotaExceededException";
|
|
403
|
-
readonly $fault: "client";
|
|
404
|
-
constructor(
|
|
405
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
406
|
-
);
|
|
407
|
-
}
|
|
408
296
|
export interface CreateAssessmentFrameworkControl {
|
|
409
297
|
id: string | undefined;
|
|
410
298
|
}
|
|
@@ -419,40 +307,10 @@ export interface CreateAssessmentFrameworkRequest {
|
|
|
419
307
|
controlSets: CreateAssessmentFrameworkControlSet[] | undefined;
|
|
420
308
|
tags?: Record<string, string> | undefined;
|
|
421
309
|
}
|
|
422
|
-
export declare const SourceFrequency: {
|
|
423
|
-
readonly DAILY: "DAILY";
|
|
424
|
-
readonly MONTHLY: "MONTHLY";
|
|
425
|
-
readonly WEEKLY: "WEEKLY";
|
|
426
|
-
};
|
|
427
|
-
export type SourceFrequency =
|
|
428
|
-
(typeof SourceFrequency)[keyof typeof SourceFrequency];
|
|
429
|
-
export declare const KeywordInputType: {
|
|
430
|
-
readonly INPUT_TEXT: "INPUT_TEXT";
|
|
431
|
-
readonly SELECT_FROM_LIST: "SELECT_FROM_LIST";
|
|
432
|
-
readonly UPLOAD_FILE: "UPLOAD_FILE";
|
|
433
|
-
};
|
|
434
|
-
export type KeywordInputType =
|
|
435
|
-
(typeof KeywordInputType)[keyof typeof KeywordInputType];
|
|
436
310
|
export interface SourceKeyword {
|
|
437
311
|
keywordInputType?: KeywordInputType | undefined;
|
|
438
312
|
keywordValue?: string | undefined;
|
|
439
313
|
}
|
|
440
|
-
export declare const SourceSetUpOption: {
|
|
441
|
-
readonly PROCEDURAL_CONTROLS_MAPPING: "Procedural_Controls_Mapping";
|
|
442
|
-
readonly SYSTEM_CONTROLS_MAPPING: "System_Controls_Mapping";
|
|
443
|
-
};
|
|
444
|
-
export type SourceSetUpOption =
|
|
445
|
-
(typeof SourceSetUpOption)[keyof typeof SourceSetUpOption];
|
|
446
|
-
export declare const SourceType: {
|
|
447
|
-
readonly AWS_API_CALL: "AWS_API_Call";
|
|
448
|
-
readonly AWS_CLOUDTRAIL: "AWS_Cloudtrail";
|
|
449
|
-
readonly AWS_CONFIG: "AWS_Config";
|
|
450
|
-
readonly AWS_SECURITY_HUB: "AWS_Security_Hub";
|
|
451
|
-
readonly COMMON_CONTROL: "Common_Control";
|
|
452
|
-
readonly CORE_CONTROL: "Core_Control";
|
|
453
|
-
readonly MANUAL: "MANUAL";
|
|
454
|
-
};
|
|
455
|
-
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
456
314
|
export interface ControlMappingSource {
|
|
457
315
|
sourceId?: string | undefined;
|
|
458
316
|
sourceName?: string | undefined;
|
|
@@ -463,17 +321,6 @@ export interface ControlMappingSource {
|
|
|
463
321
|
sourceFrequency?: SourceFrequency | undefined;
|
|
464
322
|
troubleshootingText?: string | undefined;
|
|
465
323
|
}
|
|
466
|
-
export declare const ControlState: {
|
|
467
|
-
readonly ACTIVE: "ACTIVE";
|
|
468
|
-
readonly END_OF_SUPPORT: "END_OF_SUPPORT";
|
|
469
|
-
};
|
|
470
|
-
export type ControlState = (typeof ControlState)[keyof typeof ControlState];
|
|
471
|
-
export declare const ControlType: {
|
|
472
|
-
readonly CORE: "Core";
|
|
473
|
-
readonly CUSTOM: "Custom";
|
|
474
|
-
readonly STANDARD: "Standard";
|
|
475
|
-
};
|
|
476
|
-
export type ControlType = (typeof ControlType)[keyof typeof ControlType];
|
|
477
324
|
export interface Control {
|
|
478
325
|
arn?: string | undefined;
|
|
479
326
|
id?: string | undefined;
|
|
@@ -554,12 +401,6 @@ export interface DeleteAssessmentFrameworkRequest {
|
|
|
554
401
|
frameworkId: string | undefined;
|
|
555
402
|
}
|
|
556
403
|
export interface DeleteAssessmentFrameworkResponse {}
|
|
557
|
-
export declare const ShareRequestType: {
|
|
558
|
-
readonly RECEIVED: "RECEIVED";
|
|
559
|
-
readonly SENT: "SENT";
|
|
560
|
-
};
|
|
561
|
-
export type ShareRequestType =
|
|
562
|
-
(typeof ShareRequestType)[keyof typeof ShareRequestType];
|
|
563
404
|
export interface DeleteAssessmentFrameworkShareRequest {
|
|
564
405
|
requestId: string | undefined;
|
|
565
406
|
requestType: ShareRequestType | undefined;
|
|
@@ -622,15 +463,6 @@ export interface GetChangeLogsRequest {
|
|
|
622
463
|
nextToken?: string | undefined;
|
|
623
464
|
maxResults?: number | undefined;
|
|
624
465
|
}
|
|
625
|
-
export declare const ObjectTypeEnum: {
|
|
626
|
-
readonly ASSESSMENT: "ASSESSMENT";
|
|
627
|
-
readonly ASSESSMENT_REPORT: "ASSESSMENT_REPORT";
|
|
628
|
-
readonly CONTROL: "CONTROL";
|
|
629
|
-
readonly CONTROL_SET: "CONTROL_SET";
|
|
630
|
-
readonly DELEGATION: "DELEGATION";
|
|
631
|
-
};
|
|
632
|
-
export type ObjectTypeEnum =
|
|
633
|
-
(typeof ObjectTypeEnum)[keyof typeof ObjectTypeEnum];
|
|
634
466
|
export interface ChangeLog {
|
|
635
467
|
objectType?: ObjectTypeEnum | undefined;
|
|
636
468
|
objectName?: string | undefined;
|
|
@@ -784,54 +616,16 @@ export interface ServiceMetadata {
|
|
|
784
616
|
export interface GetServicesInScopeResponse {
|
|
785
617
|
serviceMetadata?: ServiceMetadata[] | undefined;
|
|
786
618
|
}
|
|
787
|
-
export declare const SettingAttribute: {
|
|
788
|
-
readonly ALL: "ALL";
|
|
789
|
-
readonly DEFAULT_ASSESSMENT_REPORTS_DESTINATION: "DEFAULT_ASSESSMENT_REPORTS_DESTINATION";
|
|
790
|
-
readonly DEFAULT_EXPORT_DESTINATION: "DEFAULT_EXPORT_DESTINATION";
|
|
791
|
-
readonly DEFAULT_PROCESS_OWNERS: "DEFAULT_PROCESS_OWNERS";
|
|
792
|
-
readonly DEREGISTRATION_POLICY: "DEREGISTRATION_POLICY";
|
|
793
|
-
readonly EVIDENCE_FINDER_ENABLEMENT: "EVIDENCE_FINDER_ENABLEMENT";
|
|
794
|
-
readonly IS_AWS_ORG_ENABLED: "IS_AWS_ORG_ENABLED";
|
|
795
|
-
readonly SNS_TOPIC: "SNS_TOPIC";
|
|
796
|
-
};
|
|
797
|
-
export type SettingAttribute =
|
|
798
|
-
(typeof SettingAttribute)[keyof typeof SettingAttribute];
|
|
799
619
|
export interface GetSettingsRequest {
|
|
800
620
|
attribute: SettingAttribute | undefined;
|
|
801
621
|
}
|
|
802
|
-
export declare const ExportDestinationType: {
|
|
803
|
-
readonly S3: "S3";
|
|
804
|
-
};
|
|
805
|
-
export type ExportDestinationType =
|
|
806
|
-
(typeof ExportDestinationType)[keyof typeof ExportDestinationType];
|
|
807
622
|
export interface DefaultExportDestination {
|
|
808
623
|
destinationType?: ExportDestinationType | undefined;
|
|
809
624
|
destination?: string | undefined;
|
|
810
625
|
}
|
|
811
|
-
export declare const DeleteResources: {
|
|
812
|
-
readonly ALL: "ALL";
|
|
813
|
-
readonly DEFAULT: "DEFAULT";
|
|
814
|
-
};
|
|
815
|
-
export type DeleteResources =
|
|
816
|
-
(typeof DeleteResources)[keyof typeof DeleteResources];
|
|
817
626
|
export interface DeregistrationPolicy {
|
|
818
627
|
deleteResources?: DeleteResources | undefined;
|
|
819
628
|
}
|
|
820
|
-
export declare const EvidenceFinderBackfillStatus: {
|
|
821
|
-
readonly COMPLETED: "COMPLETED";
|
|
822
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
823
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
824
|
-
};
|
|
825
|
-
export type EvidenceFinderBackfillStatus =
|
|
826
|
-
(typeof EvidenceFinderBackfillStatus)[keyof typeof EvidenceFinderBackfillStatus];
|
|
827
|
-
export declare const EvidenceFinderEnablementStatus: {
|
|
828
|
-
readonly DISABLED: "DISABLED";
|
|
829
|
-
readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
|
|
830
|
-
readonly ENABLED: "ENABLED";
|
|
831
|
-
readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
|
|
832
|
-
};
|
|
833
|
-
export type EvidenceFinderEnablementStatus =
|
|
834
|
-
(typeof EvidenceFinderEnablementStatus)[keyof typeof EvidenceFinderEnablementStatus];
|
|
835
629
|
export interface EvidenceFinderEnablement {
|
|
836
630
|
eventDataStoreArn?: string | undefined;
|
|
837
631
|
enablementStatus?: EvidenceFinderEnablementStatus | undefined;
|
|
@@ -972,15 +766,6 @@ export interface ListControlsResponse {
|
|
|
972
766
|
controlMetadataList?: ControlMetadata[] | undefined;
|
|
973
767
|
nextToken?: string | undefined;
|
|
974
768
|
}
|
|
975
|
-
export declare const DataSourceType: {
|
|
976
|
-
readonly AWS_API_CALL: "AWS_API_Call";
|
|
977
|
-
readonly AWS_CLOUDTRAIL: "AWS_Cloudtrail";
|
|
978
|
-
readonly AWS_CONFIG: "AWS_Config";
|
|
979
|
-
readonly AWS_SECURITY_HUB: "AWS_Security_Hub";
|
|
980
|
-
readonly MANUAL: "MANUAL";
|
|
981
|
-
};
|
|
982
|
-
export type DataSourceType =
|
|
983
|
-
(typeof DataSourceType)[keyof typeof DataSourceType];
|
|
984
769
|
export interface ListKeywordsForDataSourceRequest {
|
|
985
770
|
source: DataSourceType | undefined;
|
|
986
771
|
nextToken?: string | undefined;
|
|
@@ -1092,13 +877,6 @@ export interface UpdateAssessmentFrameworkRequest {
|
|
|
1092
877
|
export interface UpdateAssessmentFrameworkResponse {
|
|
1093
878
|
framework?: Framework | undefined;
|
|
1094
879
|
}
|
|
1095
|
-
export declare const ShareRequestAction: {
|
|
1096
|
-
readonly ACCEPT: "ACCEPT";
|
|
1097
|
-
readonly DECLINE: "DECLINE";
|
|
1098
|
-
readonly REVOKE: "REVOKE";
|
|
1099
|
-
};
|
|
1100
|
-
export type ShareRequestAction =
|
|
1101
|
-
(typeof ShareRequestAction)[keyof typeof ShareRequestAction];
|
|
1102
880
|
export interface UpdateAssessmentFrameworkShareRequest {
|
|
1103
881
|
requestId: string | undefined;
|
|
1104
882
|
requestType: ShareRequestType | undefined;
|