@aws-sdk/client-cleanroomsml 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 +401 -400
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +389 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -478
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +645 -0
- package/dist-types/models/errors.d.ts +96 -0
- package/dist-types/models/models_0.d.ts +1 -741
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +445 -0
- package/dist-types/ts3.4/models/errors.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -496
- 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
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { CleanRoomsMLExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { CleanRoomsMLServiceException } from "./models/CleanRoomsMLServiceException";
|
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
export declare const AutoRefreshMode: {
|
|
2
|
+
readonly DISABLED: "DISABLED";
|
|
3
|
+
readonly ENABLED: "ENABLED";
|
|
4
|
+
};
|
|
5
|
+
export type AutoRefreshMode =
|
|
6
|
+
(typeof AutoRefreshMode)[keyof typeof AutoRefreshMode];
|
|
7
|
+
export declare const AccessBudgetType: {
|
|
8
|
+
readonly CALENDAR_DAY: "CALENDAR_DAY";
|
|
9
|
+
readonly CALENDAR_MONTH: "CALENDAR_MONTH";
|
|
10
|
+
readonly CALENDAR_WEEK: "CALENDAR_WEEK";
|
|
11
|
+
readonly LIFETIME: "LIFETIME";
|
|
12
|
+
};
|
|
13
|
+
export type AccessBudgetType =
|
|
14
|
+
(typeof AccessBudgetType)[keyof typeof AccessBudgetType];
|
|
15
|
+
export declare const AudienceSizeType: {
|
|
16
|
+
readonly ABSOLUTE: "ABSOLUTE";
|
|
17
|
+
readonly PERCENTAGE: "PERCENTAGE";
|
|
18
|
+
};
|
|
19
|
+
export type AudienceSizeType =
|
|
20
|
+
(typeof AudienceSizeType)[keyof typeof AudienceSizeType];
|
|
21
|
+
export declare const AudienceExportJobStatus: {
|
|
22
|
+
readonly ACTIVE: "ACTIVE";
|
|
23
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
24
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
25
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
26
|
+
};
|
|
27
|
+
export type AudienceExportJobStatus =
|
|
28
|
+
(typeof AudienceExportJobStatus)[keyof typeof AudienceExportJobStatus];
|
|
29
|
+
export declare const WorkerComputeType: {
|
|
30
|
+
readonly CR1X: "CR.1X";
|
|
31
|
+
readonly CR4X: "CR.4X";
|
|
32
|
+
};
|
|
33
|
+
export type WorkerComputeType =
|
|
34
|
+
(typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
35
|
+
export declare const AudienceGenerationJobStatus: {
|
|
36
|
+
readonly ACTIVE: "ACTIVE";
|
|
37
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
38
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
39
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
40
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
41
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
42
|
+
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
43
|
+
};
|
|
44
|
+
export type AudienceGenerationJobStatus =
|
|
45
|
+
(typeof AudienceGenerationJobStatus)[keyof typeof AudienceGenerationJobStatus];
|
|
46
|
+
export declare const AudienceModelStatus: {
|
|
47
|
+
readonly ACTIVE: "ACTIVE";
|
|
48
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
49
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
50
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
51
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
52
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
53
|
+
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
54
|
+
};
|
|
55
|
+
export type AudienceModelStatus =
|
|
56
|
+
(typeof AudienceModelStatus)[keyof typeof AudienceModelStatus];
|
|
57
|
+
export declare const TagOnCreatePolicy: {
|
|
58
|
+
readonly FROM_PARENT_RESOURCE: "FROM_PARENT_RESOURCE";
|
|
59
|
+
readonly NONE: "NONE";
|
|
60
|
+
};
|
|
61
|
+
export type TagOnCreatePolicy =
|
|
62
|
+
(typeof TagOnCreatePolicy)[keyof typeof TagOnCreatePolicy];
|
|
63
|
+
export declare const SharedAudienceMetrics: {
|
|
64
|
+
readonly ALL: "ALL";
|
|
65
|
+
readonly NONE: "NONE";
|
|
66
|
+
};
|
|
67
|
+
export type SharedAudienceMetrics =
|
|
68
|
+
(typeof SharedAudienceMetrics)[keyof typeof SharedAudienceMetrics];
|
|
69
|
+
export declare const ConfiguredAudienceModelStatus: {
|
|
70
|
+
readonly ACTIVE: "ACTIVE";
|
|
71
|
+
};
|
|
72
|
+
export type ConfiguredAudienceModelStatus =
|
|
73
|
+
(typeof ConfiguredAudienceModelStatus)[keyof typeof ConfiguredAudienceModelStatus];
|
|
74
|
+
export declare const PolicyExistenceCondition: {
|
|
75
|
+
readonly POLICY_MUST_EXIST: "POLICY_MUST_EXIST";
|
|
76
|
+
readonly POLICY_MUST_NOT_EXIST: "POLICY_MUST_NOT_EXIST";
|
|
77
|
+
};
|
|
78
|
+
export type PolicyExistenceCondition =
|
|
79
|
+
(typeof PolicyExistenceCondition)[keyof typeof PolicyExistenceCondition];
|
|
80
|
+
export declare const TrainedModelExportFileType: {
|
|
81
|
+
readonly MODEL: "MODEL";
|
|
82
|
+
readonly OUTPUT: "OUTPUT";
|
|
83
|
+
};
|
|
84
|
+
export type TrainedModelExportFileType =
|
|
85
|
+
(typeof TrainedModelExportFileType)[keyof typeof TrainedModelExportFileType];
|
|
86
|
+
export declare const TrainedModelExportsMaxSizeUnitType: {
|
|
87
|
+
readonly GB: "GB";
|
|
88
|
+
};
|
|
89
|
+
export type TrainedModelExportsMaxSizeUnitType =
|
|
90
|
+
(typeof TrainedModelExportsMaxSizeUnitType)[keyof typeof TrainedModelExportsMaxSizeUnitType];
|
|
91
|
+
export declare const EntityType: {
|
|
92
|
+
readonly ALL_PERSONALLY_IDENTIFIABLE_INFORMATION: "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION";
|
|
93
|
+
readonly CUSTOM: "CUSTOM";
|
|
94
|
+
readonly NUMBERS: "NUMBERS";
|
|
95
|
+
};
|
|
96
|
+
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
97
|
+
export declare const LogType: {
|
|
98
|
+
readonly ALL: "ALL";
|
|
99
|
+
readonly ERROR_SUMMARY: "ERROR_SUMMARY";
|
|
100
|
+
};
|
|
101
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
102
|
+
export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
|
|
103
|
+
readonly GB: "GB";
|
|
104
|
+
};
|
|
105
|
+
export type TrainedModelInferenceMaxOutputSizeUnitType =
|
|
106
|
+
(typeof TrainedModelInferenceMaxOutputSizeUnitType)[keyof typeof TrainedModelInferenceMaxOutputSizeUnitType];
|
|
107
|
+
export declare const NoiseLevelType: {
|
|
108
|
+
readonly HIGH: "HIGH";
|
|
109
|
+
readonly LOW: "LOW";
|
|
110
|
+
readonly MEDIUM: "MEDIUM";
|
|
111
|
+
readonly NONE: "NONE";
|
|
112
|
+
};
|
|
113
|
+
export type NoiseLevelType =
|
|
114
|
+
(typeof NoiseLevelType)[keyof typeof NoiseLevelType];
|
|
115
|
+
export declare const TrainedModelArtifactMaxSizeUnitType: {
|
|
116
|
+
readonly GB: "GB";
|
|
117
|
+
};
|
|
118
|
+
export type TrainedModelArtifactMaxSizeUnitType =
|
|
119
|
+
(typeof TrainedModelArtifactMaxSizeUnitType)[keyof typeof TrainedModelArtifactMaxSizeUnitType];
|
|
120
|
+
export declare const MLInputChannelStatus: {
|
|
121
|
+
readonly ACTIVE: "ACTIVE";
|
|
122
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
123
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
124
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
125
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
126
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
127
|
+
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
128
|
+
readonly INACTIVE: "INACTIVE";
|
|
129
|
+
};
|
|
130
|
+
export type MLInputChannelStatus =
|
|
131
|
+
(typeof MLInputChannelStatus)[keyof typeof MLInputChannelStatus];
|
|
132
|
+
export declare const TrainedModelExportJobStatus: {
|
|
133
|
+
readonly ACTIVE: "ACTIVE";
|
|
134
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
135
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
136
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
137
|
+
};
|
|
138
|
+
export type TrainedModelExportJobStatus =
|
|
139
|
+
(typeof TrainedModelExportJobStatus)[keyof typeof TrainedModelExportJobStatus];
|
|
140
|
+
export declare const LogsStatus: {
|
|
141
|
+
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
142
|
+
readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
|
|
143
|
+
};
|
|
144
|
+
export type LogsStatus = (typeof LogsStatus)[keyof typeof LogsStatus];
|
|
145
|
+
export declare const MetricsStatus: {
|
|
146
|
+
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
147
|
+
readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
|
|
148
|
+
};
|
|
149
|
+
export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
|
|
150
|
+
export declare const TrainedModelInferenceJobStatus: {
|
|
151
|
+
readonly ACTIVE: "ACTIVE";
|
|
152
|
+
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
153
|
+
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
154
|
+
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
155
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
156
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
157
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
158
|
+
readonly INACTIVE: "INACTIVE";
|
|
159
|
+
};
|
|
160
|
+
export type TrainedModelInferenceJobStatus =
|
|
161
|
+
(typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
|
|
162
|
+
export declare const TrainedModelStatus: {
|
|
163
|
+
readonly ACTIVE: "ACTIVE";
|
|
164
|
+
readonly CANCEL_FAILED: "CANCEL_FAILED";
|
|
165
|
+
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
166
|
+
readonly CANCEL_PENDING: "CANCEL_PENDING";
|
|
167
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
168
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
169
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
|
170
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
171
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
172
|
+
readonly DELETE_PENDING: "DELETE_PENDING";
|
|
173
|
+
readonly INACTIVE: "INACTIVE";
|
|
174
|
+
};
|
|
175
|
+
export type TrainedModelStatus =
|
|
176
|
+
(typeof TrainedModelStatus)[keyof typeof TrainedModelStatus];
|
|
177
|
+
export declare const ResultFormat: {
|
|
178
|
+
readonly CSV: "CSV";
|
|
179
|
+
readonly PARQUET: "PARQUET";
|
|
180
|
+
};
|
|
181
|
+
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
182
|
+
export declare const S3DataDistributionType: {
|
|
183
|
+
readonly FULLY_REPLICATED: "FullyReplicated";
|
|
184
|
+
readonly SHARDED_BY_S3_KEY: "ShardedByS3Key";
|
|
185
|
+
};
|
|
186
|
+
export type S3DataDistributionType =
|
|
187
|
+
(typeof S3DataDistributionType)[keyof typeof S3DataDistributionType];
|
|
188
|
+
export declare const _InstanceType: {
|
|
189
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
190
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
191
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
192
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
193
|
+
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
194
|
+
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
195
|
+
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
196
|
+
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
197
|
+
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
198
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
199
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
200
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
201
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
202
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
203
|
+
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
204
|
+
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
205
|
+
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
206
|
+
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
207
|
+
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
208
|
+
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
209
|
+
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
210
|
+
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
211
|
+
readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
|
|
212
|
+
readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
|
|
213
|
+
readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
|
|
214
|
+
readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
|
|
215
|
+
readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
|
|
216
|
+
readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
|
|
217
|
+
readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
|
|
218
|
+
readonly ML_C7I_LARGE: "ml.c7i.large";
|
|
219
|
+
readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
|
|
220
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
221
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
222
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
223
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
224
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
225
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
226
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
227
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
228
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
229
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
230
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
231
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
232
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
233
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
234
|
+
readonly ML_G6E_12XLARGE: "ml.g6e.12xlarge";
|
|
235
|
+
readonly ML_G6E_16XLARGE: "ml.g6e.16xlarge";
|
|
236
|
+
readonly ML_G6E_24XLARGE: "ml.g6e.24xlarge";
|
|
237
|
+
readonly ML_G6E_2XLARGE: "ml.g6e.2xlarge";
|
|
238
|
+
readonly ML_G6E_48XLARGE: "ml.g6e.48xlarge";
|
|
239
|
+
readonly ML_G6E_4XLARGE: "ml.g6e.4xlarge";
|
|
240
|
+
readonly ML_G6E_8XLARGE: "ml.g6e.8xlarge";
|
|
241
|
+
readonly ML_G6E_XLARGE: "ml.g6e.xlarge";
|
|
242
|
+
readonly ML_G6_12XLARGE: "ml.g6.12xlarge";
|
|
243
|
+
readonly ML_G6_16XLARGE: "ml.g6.16xlarge";
|
|
244
|
+
readonly ML_G6_24XLARGE: "ml.g6.24xlarge";
|
|
245
|
+
readonly ML_G6_2XLARGE: "ml.g6.2xlarge";
|
|
246
|
+
readonly ML_G6_48XLARGE: "ml.g6.48xlarge";
|
|
247
|
+
readonly ML_G6_4XLARGE: "ml.g6.4xlarge";
|
|
248
|
+
readonly ML_G6_8XLARGE: "ml.g6.8xlarge";
|
|
249
|
+
readonly ML_G6_XLARGE: "ml.g6.xlarge";
|
|
250
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
251
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
252
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
253
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
254
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
255
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
256
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
257
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
258
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
259
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
260
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
261
|
+
readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
|
|
262
|
+
readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
|
|
263
|
+
readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
|
|
264
|
+
readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
|
|
265
|
+
readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
|
|
266
|
+
readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
|
|
267
|
+
readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
|
|
268
|
+
readonly ML_M6I_LARGE: "ml.m6i.large";
|
|
269
|
+
readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
|
|
270
|
+
readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
|
|
271
|
+
readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
|
|
272
|
+
readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
|
|
273
|
+
readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
|
|
274
|
+
readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
|
|
275
|
+
readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
|
|
276
|
+
readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
|
|
277
|
+
readonly ML_M7I_LARGE: "ml.m7i.large";
|
|
278
|
+
readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
|
|
279
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
280
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
281
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
282
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
283
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
284
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
285
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
286
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
287
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
288
|
+
readonly ML_P5EN_48XLARGE: "ml.p5en.48xlarge";
|
|
289
|
+
readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
|
|
290
|
+
readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
|
|
291
|
+
readonly ML_R5D_16XLARGE: "ml.r5d.16xlarge";
|
|
292
|
+
readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
|
|
293
|
+
readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
|
|
294
|
+
readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
|
|
295
|
+
readonly ML_R5D_8XLARGE: "ml.r5d.8xlarge";
|
|
296
|
+
readonly ML_R5D_LARGE: "ml.r5d.large";
|
|
297
|
+
readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
|
|
298
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
299
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
300
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
301
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
302
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
303
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
304
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
305
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
306
|
+
readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
|
|
307
|
+
readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
|
|
308
|
+
readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
|
|
309
|
+
readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
|
|
310
|
+
readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
|
|
311
|
+
readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
|
|
312
|
+
readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
|
|
313
|
+
readonly ML_R7I_LARGE: "ml.r7i.large";
|
|
314
|
+
readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
|
|
315
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
316
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
317
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
318
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
319
|
+
readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
|
|
320
|
+
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
321
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
322
|
+
};
|
|
323
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
324
|
+
export declare const TrainingInputMode: {
|
|
325
|
+
readonly FAST_FILE: "FastFile";
|
|
326
|
+
readonly FILE: "File";
|
|
327
|
+
readonly PIPE: "Pipe";
|
|
328
|
+
};
|
|
329
|
+
export type TrainingInputMode =
|
|
330
|
+
(typeof TrainingInputMode)[keyof typeof TrainingInputMode];
|
|
331
|
+
export declare const InferenceInstanceType: {
|
|
332
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
333
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
334
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
335
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
336
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
337
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
338
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
339
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
340
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
341
|
+
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
342
|
+
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
343
|
+
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
344
|
+
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
345
|
+
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
346
|
+
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
347
|
+
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
348
|
+
readonly ML_C6I_LARGE: "ml.c6i.large";
|
|
349
|
+
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
350
|
+
readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
|
|
351
|
+
readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
|
|
352
|
+
readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
|
|
353
|
+
readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
|
|
354
|
+
readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
|
|
355
|
+
readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
|
|
356
|
+
readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
|
|
357
|
+
readonly ML_C7I_LARGE: "ml.c7i.large";
|
|
358
|
+
readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
|
|
359
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
360
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
361
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
362
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
363
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
364
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
365
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
366
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
367
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
368
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
369
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
370
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
371
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
372
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
373
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
374
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
375
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
376
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
377
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
378
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
379
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
380
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
381
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
382
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
383
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
384
|
+
readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
|
|
385
|
+
readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
|
|
386
|
+
readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
|
|
387
|
+
readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
|
|
388
|
+
readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
|
|
389
|
+
readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
|
|
390
|
+
readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
|
|
391
|
+
readonly ML_M6I_LARGE: "ml.m6i.large";
|
|
392
|
+
readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
|
|
393
|
+
readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
|
|
394
|
+
readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
|
|
395
|
+
readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
|
|
396
|
+
readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
|
|
397
|
+
readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
|
|
398
|
+
readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
|
|
399
|
+
readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
|
|
400
|
+
readonly ML_M7I_LARGE: "ml.m7i.large";
|
|
401
|
+
readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
|
|
402
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
403
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
404
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
405
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
406
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
407
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
408
|
+
readonly ML_R6I_12XLARGE: "ml.r6i.12xlarge";
|
|
409
|
+
readonly ML_R6I_16XLARGE: "ml.r6i.16xlarge";
|
|
410
|
+
readonly ML_R6I_24XLARGE: "ml.r6i.24xlarge";
|
|
411
|
+
readonly ML_R6I_2XLARGE: "ml.r6i.2xlarge";
|
|
412
|
+
readonly ML_R6I_32XLARGE: "ml.r6i.32xlarge";
|
|
413
|
+
readonly ML_R6I_4XLARGE: "ml.r6i.4xlarge";
|
|
414
|
+
readonly ML_R6I_8XLARGE: "ml.r6i.8xlarge";
|
|
415
|
+
readonly ML_R6I_LARGE: "ml.r6i.large";
|
|
416
|
+
readonly ML_R6I_XLARGE: "ml.r6i.xlarge";
|
|
417
|
+
readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
|
|
418
|
+
readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
|
|
419
|
+
readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
|
|
420
|
+
readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
|
|
421
|
+
readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
|
|
422
|
+
readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
|
|
423
|
+
readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
|
|
424
|
+
readonly ML_R7I_LARGE: "ml.r7i.large";
|
|
425
|
+
readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
|
|
426
|
+
};
|
|
427
|
+
export type InferenceInstanceType =
|
|
428
|
+
(typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
|
|
429
|
+
export declare const ColumnType: {
|
|
430
|
+
readonly CATEGORICAL_FEATURE: "CATEGORICAL_FEATURE";
|
|
431
|
+
readonly ITEM_ID: "ITEM_ID";
|
|
432
|
+
readonly NUMERICAL_FEATURE: "NUMERICAL_FEATURE";
|
|
433
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
434
|
+
readonly USER_ID: "USER_ID";
|
|
435
|
+
};
|
|
436
|
+
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
437
|
+
export declare const DatasetType: {
|
|
438
|
+
readonly INTERACTIONS: "INTERACTIONS";
|
|
439
|
+
};
|
|
440
|
+
export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
|
|
441
|
+
export declare const TrainingDatasetStatus: {
|
|
442
|
+
readonly ACTIVE: "ACTIVE";
|
|
443
|
+
};
|
|
444
|
+
export type TrainingDatasetStatus =
|
|
445
|
+
(typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CleanRoomsMLServiceException as __BaseException } from "./CleanRoomsMLServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ValidationException extends __BaseException {
|
|
11
|
+
readonly name: "ValidationException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ConflictException extends __BaseException {
|
|
18
|
+
readonly name: "ConflictException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
21
|
+
}
|
|
22
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
23
|
+
readonly name: "ResourceNotFoundException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
constructor(
|
|
26
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
30
|
+
readonly name: "ServiceQuotaExceededException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
quotaName?: string | undefined;
|
|
33
|
+
quotaValue?: number | undefined;
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ThrottlingException extends __BaseException {
|
|
39
|
+
readonly name: "ThrottlingException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class InternalServiceException extends __BaseException {
|
|
46
|
+
readonly name: "InternalServiceException";
|
|
47
|
+
readonly $fault: "server";
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|