@aws-sdk/client-sagemaker 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 +870 -958
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-es/models/models_0.js +870 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-types/models/models_0.d.ts +1320 -880
- package/dist-types/models/models_1.d.ts +402 -232
- package/dist-types/models/models_2.d.ts +685 -400
- package/dist-types/models/models_3.d.ts +487 -232
- package/dist-types/models/models_4.d.ts +10 -5
- package/dist-types/ts3.4/models/models_0.d.ts +1026 -870
- package/dist-types/ts3.4/models/models_1.d.ts +286 -228
- package/dist-types/ts3.4/models/models_2.d.ts +502 -400
- package/dist-types/ts3.4/models/models_3.d.ts +324 -232
- package/dist-types/ts3.4/models/models_4.d.ts +7 -5
- package/package.json +35 -35
|
@@ -5,14 +5,15 @@ export interface ActionSource {
|
|
|
5
5
|
SourceType?: string;
|
|
6
6
|
SourceId?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare
|
|
9
|
-
COMPLETED
|
|
10
|
-
FAILED
|
|
11
|
-
IN_PROGRESS
|
|
12
|
-
STOPPED
|
|
13
|
-
STOPPING
|
|
14
|
-
UNKNOWN
|
|
15
|
-
}
|
|
8
|
+
export declare const ActionStatus: {
|
|
9
|
+
readonly COMPLETED: "Completed";
|
|
10
|
+
readonly FAILED: "Failed";
|
|
11
|
+
readonly IN_PROGRESS: "InProgress";
|
|
12
|
+
readonly STOPPED: "Stopped";
|
|
13
|
+
readonly STOPPING: "Stopping";
|
|
14
|
+
readonly UNKNOWN: "Unknown";
|
|
15
|
+
};
|
|
16
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
16
17
|
export interface ActionSummary {
|
|
17
18
|
ActionArn?: string;
|
|
18
19
|
ActionName?: string;
|
|
@@ -22,12 +23,14 @@ export interface ActionSummary {
|
|
|
22
23
|
CreationTime?: Date;
|
|
23
24
|
LastModifiedTime?: Date;
|
|
24
25
|
}
|
|
25
|
-
export declare
|
|
26
|
-
ASSOCIATED_WITH
|
|
27
|
-
CONTRIBUTED_TO
|
|
28
|
-
DERIVED_FROM
|
|
29
|
-
PRODUCED
|
|
30
|
-
}
|
|
26
|
+
export declare const AssociationEdgeType: {
|
|
27
|
+
readonly ASSOCIATED_WITH: "AssociatedWith";
|
|
28
|
+
readonly CONTRIBUTED_TO: "ContributedTo";
|
|
29
|
+
readonly DERIVED_FROM: "DerivedFrom";
|
|
30
|
+
readonly PRODUCED: "Produced";
|
|
31
|
+
};
|
|
32
|
+
export type AssociationEdgeType =
|
|
33
|
+
(typeof AssociationEdgeType)[keyof typeof AssociationEdgeType];
|
|
31
34
|
export interface AddAssociationRequest {
|
|
32
35
|
SourceArn: string | undefined;
|
|
33
36
|
DestinationArn: string | undefined;
|
|
@@ -66,183 +69,187 @@ export interface ModelPackageContainerDefinition {
|
|
|
66
69
|
FrameworkVersion?: string;
|
|
67
70
|
NearestModelName?: string;
|
|
68
71
|
}
|
|
69
|
-
export declare
|
|
70
|
-
ML_C4_2XLARGE
|
|
71
|
-
ML_C4_4XLARGE
|
|
72
|
-
ML_C4_8XLARGE
|
|
73
|
-
ML_C4_LARGE
|
|
74
|
-
ML_C4_XLARGE
|
|
75
|
-
ML_C5D_18XLARGE
|
|
76
|
-
ML_C5D_2XLARGE
|
|
77
|
-
ML_C5D_4XLARGE
|
|
78
|
-
ML_C5D_9XLARGE
|
|
79
|
-
ML_C5D_LARGE
|
|
80
|
-
ML_C5D_XLARGE
|
|
81
|
-
ML_C5_18XLARGE
|
|
82
|
-
ML_C5_2XLARGE
|
|
83
|
-
ML_C5_4XLARGE
|
|
84
|
-
ML_C5_9XLARGE
|
|
85
|
-
ML_C5_LARGE
|
|
86
|
-
ML_C5_XLARGE
|
|
87
|
-
ML_C6GD_12XLARGE
|
|
88
|
-
ML_C6GD_16XLARGE
|
|
89
|
-
ML_C6GD_2XLARGE
|
|
90
|
-
ML_C6GD_4XLARGE
|
|
91
|
-
ML_C6GD_8XLARGE
|
|
92
|
-
ML_C6GD_LARGE
|
|
93
|
-
ML_C6GD_XLARGE
|
|
94
|
-
ML_C6GN_12XLARGE
|
|
95
|
-
ML_C6GN_16XLARGE
|
|
96
|
-
ML_C6GN_2XLARGE
|
|
97
|
-
ML_C6GN_4XLARGE
|
|
98
|
-
ML_C6GN_8XLARGE
|
|
99
|
-
ML_C6GN_LARGE
|
|
100
|
-
ML_C6GN_XLARGE
|
|
101
|
-
ML_C6G_12XLARGE
|
|
102
|
-
ML_C6G_16XLARGE
|
|
103
|
-
ML_C6G_2XLARGE
|
|
104
|
-
ML_C6G_4XLARGE
|
|
105
|
-
ML_C6G_8XLARGE
|
|
106
|
-
ML_C6G_LARGE
|
|
107
|
-
ML_C6G_XLARGE
|
|
108
|
-
ML_C6I_12XLARGE
|
|
109
|
-
ML_C6I_16XLARGE
|
|
110
|
-
ML_C6I_24XLARGE
|
|
111
|
-
ML_C6I_2XLARGE
|
|
112
|
-
ML_C6I_32XLARGE
|
|
113
|
-
ML_C6I_4XLARGE
|
|
114
|
-
ML_C6I_8XLARGE
|
|
115
|
-
ML_C6I_LARGE
|
|
116
|
-
ML_C6I_XLARGE
|
|
117
|
-
ML_C7G_12XLARGE
|
|
118
|
-
ML_C7G_16XLARGE
|
|
119
|
-
ML_C7G_2XLARGE
|
|
120
|
-
ML_C7G_4XLARGE
|
|
121
|
-
ML_C7G_8XLARGE
|
|
122
|
-
ML_C7G_LARGE
|
|
123
|
-
ML_C7G_XLARGE
|
|
124
|
-
ML_G4DN_12XLARGE
|
|
125
|
-
ML_G4DN_16XLARGE
|
|
126
|
-
ML_G4DN_2XLARGE
|
|
127
|
-
ML_G4DN_4XLARGE
|
|
128
|
-
ML_G4DN_8XLARGE
|
|
129
|
-
ML_G4DN_XLARGE
|
|
130
|
-
ML_G5_12XLARGE
|
|
131
|
-
ML_G5_16XLARGE
|
|
132
|
-
ML_G5_24XLARGE
|
|
133
|
-
ML_G5_2XLARGE
|
|
134
|
-
ML_G5_48XLARGE
|
|
135
|
-
ML_G5_4XLARGE
|
|
136
|
-
ML_G5_8XLARGE
|
|
137
|
-
ML_G5_XLARGE
|
|
138
|
-
ML_INF1_24XLARGE
|
|
139
|
-
ML_INF1_2XLARGE
|
|
140
|
-
ML_INF1_6XLARGE
|
|
141
|
-
ML_INF1_XLARGE
|
|
142
|
-
ML_M4_10XLARGE
|
|
143
|
-
ML_M4_16XLARGE
|
|
144
|
-
ML_M4_2XLARGE
|
|
145
|
-
ML_M4_4XLARGE
|
|
146
|
-
ML_M4_XLARGE
|
|
147
|
-
ML_M5D_12XLARGE
|
|
148
|
-
ML_M5D_24XLARGE
|
|
149
|
-
ML_M5D_2XLARGE
|
|
150
|
-
ML_M5D_4XLARGE
|
|
151
|
-
ML_M5D_LARGE
|
|
152
|
-
ML_M5D_XLARGE
|
|
153
|
-
ML_M5_12XLARGE
|
|
154
|
-
ML_M5_24XLARGE
|
|
155
|
-
ML_M5_2XLARGE
|
|
156
|
-
ML_M5_4XLARGE
|
|
157
|
-
ML_M5_LARGE
|
|
158
|
-
ML_M5_XLARGE
|
|
159
|
-
ML_M6GD_12XLARGE
|
|
160
|
-
ML_M6GD_16XLARGE
|
|
161
|
-
ML_M6GD_2XLARGE
|
|
162
|
-
ML_M6GD_4XLARGE
|
|
163
|
-
ML_M6GD_8XLARGE
|
|
164
|
-
ML_M6GD_LARGE
|
|
165
|
-
ML_M6GD_XLARGE
|
|
166
|
-
ML_M6G_12XLARGE
|
|
167
|
-
ML_M6G_16XLARGE
|
|
168
|
-
ML_M6G_2XLARGE
|
|
169
|
-
ML_M6G_4XLARGE
|
|
170
|
-
ML_M6G_8XLARGE
|
|
171
|
-
ML_M6G_LARGE
|
|
172
|
-
ML_M6G_XLARGE
|
|
173
|
-
ML_P2_16XLARGE
|
|
174
|
-
ML_P2_8XLARGE
|
|
175
|
-
ML_P2_XLARGE
|
|
176
|
-
ML_P3_16XLARGE
|
|
177
|
-
ML_P3_2XLARGE
|
|
178
|
-
ML_P3_8XLARGE
|
|
179
|
-
ML_P4DE_24XLARGE
|
|
180
|
-
ML_P4D_24XLARGE
|
|
181
|
-
ML_R5D_12XLARGE
|
|
182
|
-
ML_R5D_24XLARGE
|
|
183
|
-
ML_R5D_2XLARGE
|
|
184
|
-
ML_R5D_4XLARGE
|
|
185
|
-
ML_R5D_LARGE
|
|
186
|
-
ML_R5D_XLARGE
|
|
187
|
-
ML_R5_12XLARGE
|
|
188
|
-
ML_R5_24XLARGE
|
|
189
|
-
ML_R5_2XLARGE
|
|
190
|
-
ML_R5_4XLARGE
|
|
191
|
-
ML_R5_LARGE
|
|
192
|
-
ML_R5_XLARGE
|
|
193
|
-
ML_R6GD_12XLARGE
|
|
194
|
-
ML_R6GD_16XLARGE
|
|
195
|
-
ML_R6GD_2XLARGE
|
|
196
|
-
ML_R6GD_4XLARGE
|
|
197
|
-
ML_R6GD_8XLARGE
|
|
198
|
-
ML_R6GD_LARGE
|
|
199
|
-
ML_R6GD_XLARGE
|
|
200
|
-
ML_R6G_12XLARGE
|
|
201
|
-
ML_R6G_16XLARGE
|
|
202
|
-
ML_R6G_2XLARGE
|
|
203
|
-
ML_R6G_4XLARGE
|
|
204
|
-
ML_R6G_8XLARGE
|
|
205
|
-
ML_R6G_LARGE
|
|
206
|
-
ML_R6G_XLARGE
|
|
207
|
-
ML_T2_2XLARGE
|
|
208
|
-
ML_T2_LARGE
|
|
209
|
-
ML_T2_MEDIUM
|
|
210
|
-
ML_T2_XLARGE
|
|
211
|
-
}
|
|
212
|
-
export
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
72
|
+
export declare const ProductionVariantInstanceType: {
|
|
73
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
74
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
75
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
76
|
+
readonly ML_C4_LARGE: "ml.c4.large";
|
|
77
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
78
|
+
readonly ML_C5D_18XLARGE: "ml.c5d.18xlarge";
|
|
79
|
+
readonly ML_C5D_2XLARGE: "ml.c5d.2xlarge";
|
|
80
|
+
readonly ML_C5D_4XLARGE: "ml.c5d.4xlarge";
|
|
81
|
+
readonly ML_C5D_9XLARGE: "ml.c5d.9xlarge";
|
|
82
|
+
readonly ML_C5D_LARGE: "ml.c5d.large";
|
|
83
|
+
readonly ML_C5D_XLARGE: "ml.c5d.xlarge";
|
|
84
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
85
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
86
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
87
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
88
|
+
readonly ML_C5_LARGE: "ml.c5.large";
|
|
89
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
90
|
+
readonly ML_C6GD_12XLARGE: "ml.c6gd.12xlarge";
|
|
91
|
+
readonly ML_C6GD_16XLARGE: "ml.c6gd.16xlarge";
|
|
92
|
+
readonly ML_C6GD_2XLARGE: "ml.c6gd.2xlarge";
|
|
93
|
+
readonly ML_C6GD_4XLARGE: "ml.c6gd.4xlarge";
|
|
94
|
+
readonly ML_C6GD_8XLARGE: "ml.c6gd.8xlarge";
|
|
95
|
+
readonly ML_C6GD_LARGE: "ml.c6gd.large";
|
|
96
|
+
readonly ML_C6GD_XLARGE: "ml.c6gd.xlarge";
|
|
97
|
+
readonly ML_C6GN_12XLARGE: "ml.c6gn.12xlarge";
|
|
98
|
+
readonly ML_C6GN_16XLARGE: "ml.c6gn.16xlarge";
|
|
99
|
+
readonly ML_C6GN_2XLARGE: "ml.c6gn.2xlarge";
|
|
100
|
+
readonly ML_C6GN_4XLARGE: "ml.c6gn.4xlarge";
|
|
101
|
+
readonly ML_C6GN_8XLARGE: "ml.c6gn.8xlarge";
|
|
102
|
+
readonly ML_C6GN_LARGE: "ml.c6gn.large";
|
|
103
|
+
readonly ML_C6GN_XLARGE: "ml.c6gn.xlarge";
|
|
104
|
+
readonly ML_C6G_12XLARGE: "ml.c6g.12xlarge";
|
|
105
|
+
readonly ML_C6G_16XLARGE: "ml.c6g.16xlarge";
|
|
106
|
+
readonly ML_C6G_2XLARGE: "ml.c6g.2xlarge";
|
|
107
|
+
readonly ML_C6G_4XLARGE: "ml.c6g.4xlarge";
|
|
108
|
+
readonly ML_C6G_8XLARGE: "ml.c6g.8xlarge";
|
|
109
|
+
readonly ML_C6G_LARGE: "ml.c6g.large";
|
|
110
|
+
readonly ML_C6G_XLARGE: "ml.c6g.xlarge";
|
|
111
|
+
readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
|
|
112
|
+
readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
|
|
113
|
+
readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
|
|
114
|
+
readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
|
|
115
|
+
readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
|
|
116
|
+
readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
|
|
117
|
+
readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
|
|
118
|
+
readonly ML_C6I_LARGE: "ml.c6i.large";
|
|
119
|
+
readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
|
|
120
|
+
readonly ML_C7G_12XLARGE: "ml.c7g.12xlarge";
|
|
121
|
+
readonly ML_C7G_16XLARGE: "ml.c7g.16xlarge";
|
|
122
|
+
readonly ML_C7G_2XLARGE: "ml.c7g.2xlarge";
|
|
123
|
+
readonly ML_C7G_4XLARGE: "ml.c7g.4xlarge";
|
|
124
|
+
readonly ML_C7G_8XLARGE: "ml.c7g.8xlarge";
|
|
125
|
+
readonly ML_C7G_LARGE: "ml.c7g.large";
|
|
126
|
+
readonly ML_C7G_XLARGE: "ml.c7g.xlarge";
|
|
127
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
128
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
129
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
130
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
131
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
132
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
133
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
134
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
135
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
136
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
137
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
138
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
139
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
140
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
141
|
+
readonly ML_INF1_24XLARGE: "ml.inf1.24xlarge";
|
|
142
|
+
readonly ML_INF1_2XLARGE: "ml.inf1.2xlarge";
|
|
143
|
+
readonly ML_INF1_6XLARGE: "ml.inf1.6xlarge";
|
|
144
|
+
readonly ML_INF1_XLARGE: "ml.inf1.xlarge";
|
|
145
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
146
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
147
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
148
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
149
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
150
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
151
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
152
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
153
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
154
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
155
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
156
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
157
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
158
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
159
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
160
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
161
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
162
|
+
readonly ML_M6GD_12XLARGE: "ml.m6gd.12xlarge";
|
|
163
|
+
readonly ML_M6GD_16XLARGE: "ml.m6gd.16xlarge";
|
|
164
|
+
readonly ML_M6GD_2XLARGE: "ml.m6gd.2xlarge";
|
|
165
|
+
readonly ML_M6GD_4XLARGE: "ml.m6gd.4xlarge";
|
|
166
|
+
readonly ML_M6GD_8XLARGE: "ml.m6gd.8xlarge";
|
|
167
|
+
readonly ML_M6GD_LARGE: "ml.m6gd.large";
|
|
168
|
+
readonly ML_M6GD_XLARGE: "ml.m6gd.xlarge";
|
|
169
|
+
readonly ML_M6G_12XLARGE: "ml.m6g.12xlarge";
|
|
170
|
+
readonly ML_M6G_16XLARGE: "ml.m6g.16xlarge";
|
|
171
|
+
readonly ML_M6G_2XLARGE: "ml.m6g.2xlarge";
|
|
172
|
+
readonly ML_M6G_4XLARGE: "ml.m6g.4xlarge";
|
|
173
|
+
readonly ML_M6G_8XLARGE: "ml.m6g.8xlarge";
|
|
174
|
+
readonly ML_M6G_LARGE: "ml.m6g.large";
|
|
175
|
+
readonly ML_M6G_XLARGE: "ml.m6g.xlarge";
|
|
176
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
177
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
178
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
179
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
180
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
181
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
182
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
183
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
184
|
+
readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
|
|
185
|
+
readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
|
|
186
|
+
readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
|
|
187
|
+
readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
|
|
188
|
+
readonly ML_R5D_LARGE: "ml.r5d.large";
|
|
189
|
+
readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
|
|
190
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
191
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
192
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
193
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
194
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
195
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
196
|
+
readonly ML_R6GD_12XLARGE: "ml.r6gd.12xlarge";
|
|
197
|
+
readonly ML_R6GD_16XLARGE: "ml.r6gd.16xlarge";
|
|
198
|
+
readonly ML_R6GD_2XLARGE: "ml.r6gd.2xlarge";
|
|
199
|
+
readonly ML_R6GD_4XLARGE: "ml.r6gd.4xlarge";
|
|
200
|
+
readonly ML_R6GD_8XLARGE: "ml.r6gd.8xlarge";
|
|
201
|
+
readonly ML_R6GD_LARGE: "ml.r6gd.large";
|
|
202
|
+
readonly ML_R6GD_XLARGE: "ml.r6gd.xlarge";
|
|
203
|
+
readonly ML_R6G_12XLARGE: "ml.r6g.12xlarge";
|
|
204
|
+
readonly ML_R6G_16XLARGE: "ml.r6g.16xlarge";
|
|
205
|
+
readonly ML_R6G_2XLARGE: "ml.r6g.2xlarge";
|
|
206
|
+
readonly ML_R6G_4XLARGE: "ml.r6g.4xlarge";
|
|
207
|
+
readonly ML_R6G_8XLARGE: "ml.r6g.8xlarge";
|
|
208
|
+
readonly ML_R6G_LARGE: "ml.r6g.large";
|
|
209
|
+
readonly ML_R6G_XLARGE: "ml.r6g.xlarge";
|
|
210
|
+
readonly ML_T2_2XLARGE: "ml.t2.2xlarge";
|
|
211
|
+
readonly ML_T2_LARGE: "ml.t2.large";
|
|
212
|
+
readonly ML_T2_MEDIUM: "ml.t2.medium";
|
|
213
|
+
readonly ML_T2_XLARGE: "ml.t2.xlarge";
|
|
214
|
+
};
|
|
215
|
+
export type ProductionVariantInstanceType =
|
|
216
|
+
(typeof ProductionVariantInstanceType)[keyof typeof ProductionVariantInstanceType];
|
|
217
|
+
export declare const TransformInstanceType: {
|
|
218
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
219
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
220
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
221
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
222
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
223
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
224
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
225
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
226
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
227
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
228
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
229
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
230
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
231
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
232
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
233
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
234
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
235
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
236
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
237
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
238
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
239
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
240
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
241
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
242
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
243
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
244
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
245
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
246
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
247
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
248
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
249
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
250
|
+
};
|
|
251
|
+
export type TransformInstanceType =
|
|
252
|
+
(typeof TransformInstanceType)[keyof typeof TransformInstanceType];
|
|
246
253
|
export interface AdditionalInferenceSpecificationDefinition {
|
|
247
254
|
Name: string | undefined;
|
|
248
255
|
Description?: string;
|
|
@@ -273,18 +280,22 @@ export interface AgentVersion {
|
|
|
273
280
|
export interface Alarm {
|
|
274
281
|
AlarmName?: string;
|
|
275
282
|
}
|
|
276
|
-
export declare
|
|
277
|
-
CREATION_TIME
|
|
278
|
-
NAME
|
|
279
|
-
}
|
|
283
|
+
export declare const AlgorithmSortBy: {
|
|
284
|
+
readonly CREATION_TIME: "CreationTime";
|
|
285
|
+
readonly NAME: "Name";
|
|
286
|
+
};
|
|
287
|
+
export type AlgorithmSortBy =
|
|
288
|
+
(typeof AlgorithmSortBy)[keyof typeof AlgorithmSortBy];
|
|
280
289
|
export interface MetricDefinition {
|
|
281
290
|
Name: string | undefined;
|
|
282
291
|
Regex: string | undefined;
|
|
283
292
|
}
|
|
284
|
-
export declare
|
|
285
|
-
PLATFORM
|
|
286
|
-
VPC
|
|
287
|
-
}
|
|
293
|
+
export declare const TrainingRepositoryAccessMode: {
|
|
294
|
+
readonly PLATFORM: "Platform";
|
|
295
|
+
readonly VPC: "Vpc";
|
|
296
|
+
};
|
|
297
|
+
export type TrainingRepositoryAccessMode =
|
|
298
|
+
(typeof TrainingRepositoryAccessMode)[keyof typeof TrainingRepositoryAccessMode];
|
|
288
299
|
export interface TrainingRepositoryAuthConfig {
|
|
289
300
|
TrainingRepositoryCredentialsProviderArn: string | undefined;
|
|
290
301
|
}
|
|
@@ -295,11 +306,13 @@ export interface TrainingImageConfig {
|
|
|
295
306
|
| undefined;
|
|
296
307
|
TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
|
|
297
308
|
}
|
|
298
|
-
export declare
|
|
299
|
-
FASTFILE
|
|
300
|
-
FILE
|
|
301
|
-
PIPE
|
|
302
|
-
}
|
|
309
|
+
export declare const TrainingInputMode: {
|
|
310
|
+
readonly FASTFILE: "FastFile";
|
|
311
|
+
readonly FILE: "File";
|
|
312
|
+
readonly PIPE: "Pipe";
|
|
313
|
+
};
|
|
314
|
+
export type TrainingInputMode =
|
|
315
|
+
(typeof TrainingInputMode)[keyof typeof TrainingInputMode];
|
|
303
316
|
export interface AlgorithmSpecification {
|
|
304
317
|
TrainingImage?: string;
|
|
305
318
|
AlgorithmName?: string;
|
|
@@ -310,19 +323,23 @@ export interface AlgorithmSpecification {
|
|
|
310
323
|
ContainerArguments?: string[];
|
|
311
324
|
TrainingImageConfig?: TrainingImageConfig;
|
|
312
325
|
}
|
|
313
|
-
export declare
|
|
314
|
-
COMPLETED
|
|
315
|
-
DELETING
|
|
316
|
-
FAILED
|
|
317
|
-
IN_PROGRESS
|
|
318
|
-
PENDING
|
|
319
|
-
}
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
+
export declare const AlgorithmStatus: {
|
|
327
|
+
readonly COMPLETED: "Completed";
|
|
328
|
+
readonly DELETING: "Deleting";
|
|
329
|
+
readonly FAILED: "Failed";
|
|
330
|
+
readonly IN_PROGRESS: "InProgress";
|
|
331
|
+
readonly PENDING: "Pending";
|
|
332
|
+
};
|
|
333
|
+
export type AlgorithmStatus =
|
|
334
|
+
(typeof AlgorithmStatus)[keyof typeof AlgorithmStatus];
|
|
335
|
+
export declare const DetailedAlgorithmStatus: {
|
|
336
|
+
readonly COMPLETED: "Completed";
|
|
337
|
+
readonly FAILED: "Failed";
|
|
338
|
+
readonly IN_PROGRESS: "InProgress";
|
|
339
|
+
readonly NOT_STARTED: "NotStarted";
|
|
340
|
+
};
|
|
341
|
+
export type DetailedAlgorithmStatus =
|
|
342
|
+
(typeof DetailedAlgorithmStatus)[keyof typeof DetailedAlgorithmStatus];
|
|
326
343
|
export interface AlgorithmStatusItem {
|
|
327
344
|
Name: string | undefined;
|
|
328
345
|
Status: DetailedAlgorithmStatus | string | undefined;
|
|
@@ -339,33 +356,42 @@ export interface AlgorithmSummary {
|
|
|
339
356
|
CreationTime: Date | undefined;
|
|
340
357
|
AlgorithmStatus: AlgorithmStatus | string | undefined;
|
|
341
358
|
}
|
|
342
|
-
export declare
|
|
343
|
-
GZIP
|
|
344
|
-
NONE
|
|
345
|
-
}
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
359
|
+
export declare const CompressionType: {
|
|
360
|
+
readonly GZIP: "Gzip";
|
|
361
|
+
readonly NONE: "None";
|
|
362
|
+
};
|
|
363
|
+
export type CompressionType =
|
|
364
|
+
(typeof CompressionType)[keyof typeof CompressionType];
|
|
365
|
+
export declare const FileSystemAccessMode: {
|
|
366
|
+
readonly RO: "ro";
|
|
367
|
+
readonly RW: "rw";
|
|
368
|
+
};
|
|
369
|
+
export type FileSystemAccessMode =
|
|
370
|
+
(typeof FileSystemAccessMode)[keyof typeof FileSystemAccessMode];
|
|
371
|
+
export declare const FileSystemType: {
|
|
372
|
+
readonly EFS: "EFS";
|
|
373
|
+
readonly FSXLUSTRE: "FSxLustre";
|
|
374
|
+
};
|
|
375
|
+
export type FileSystemType =
|
|
376
|
+
(typeof FileSystemType)[keyof typeof FileSystemType];
|
|
354
377
|
export interface FileSystemDataSource {
|
|
355
378
|
FileSystemId: string | undefined;
|
|
356
379
|
FileSystemAccessMode: FileSystemAccessMode | string | undefined;
|
|
357
380
|
FileSystemType: FileSystemType | string | undefined;
|
|
358
381
|
DirectoryPath: string | undefined;
|
|
359
382
|
}
|
|
360
|
-
export declare
|
|
361
|
-
FULLY_REPLICATED
|
|
362
|
-
SHARDED_BY_S3_KEY
|
|
363
|
-
}
|
|
364
|
-
export
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
383
|
+
export declare const S3DataDistribution: {
|
|
384
|
+
readonly FULLY_REPLICATED: "FullyReplicated";
|
|
385
|
+
readonly SHARDED_BY_S3_KEY: "ShardedByS3Key";
|
|
386
|
+
};
|
|
387
|
+
export type S3DataDistribution =
|
|
388
|
+
(typeof S3DataDistribution)[keyof typeof S3DataDistribution];
|
|
389
|
+
export declare const S3DataType: {
|
|
390
|
+
readonly AUGMENTED_MANIFEST_FILE: "AugmentedManifestFile";
|
|
391
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
392
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
393
|
+
};
|
|
394
|
+
export type S3DataType = (typeof S3DataType)[keyof typeof S3DataType];
|
|
369
395
|
export interface S3DataSource {
|
|
370
396
|
S3DataType: S3DataType | string | undefined;
|
|
371
397
|
S3Uri: string | undefined;
|
|
@@ -377,10 +403,11 @@ export interface DataSource {
|
|
|
377
403
|
S3DataSource?: S3DataSource;
|
|
378
404
|
FileSystemDataSource?: FileSystemDataSource;
|
|
379
405
|
}
|
|
380
|
-
export declare
|
|
381
|
-
NONE
|
|
382
|
-
RECORDIO
|
|
383
|
-
}
|
|
406
|
+
export declare const RecordWrapper: {
|
|
407
|
+
readonly NONE: "None";
|
|
408
|
+
readonly RECORDIO: "RecordIO";
|
|
409
|
+
};
|
|
410
|
+
export type RecordWrapper = (typeof RecordWrapper)[keyof typeof RecordWrapper];
|
|
384
411
|
export interface ShuffleConfig {
|
|
385
412
|
Seed: number | undefined;
|
|
386
413
|
}
|
|
@@ -397,57 +424,59 @@ export interface OutputDataConfig {
|
|
|
397
424
|
KmsKeyId?: string;
|
|
398
425
|
S3OutputPath: string | undefined;
|
|
399
426
|
}
|
|
400
|
-
export declare
|
|
401
|
-
ML_C4_2XLARGE
|
|
402
|
-
ML_C4_4XLARGE
|
|
403
|
-
ML_C4_8XLARGE
|
|
404
|
-
ML_C4_XLARGE
|
|
405
|
-
ML_C5N_18XLARGE
|
|
406
|
-
ML_C5N_2XLARGE
|
|
407
|
-
ML_C5N_4XLARGE
|
|
408
|
-
ML_C5N_9XLARGE
|
|
409
|
-
ML_C5N_XLARGE
|
|
410
|
-
ML_C5_18XLARGE
|
|
411
|
-
ML_C5_2XLARGE
|
|
412
|
-
ML_C5_4XLARGE
|
|
413
|
-
ML_C5_9XLARGE
|
|
414
|
-
ML_C5_XLARGE
|
|
415
|
-
ML_G4DN_12XLARGE
|
|
416
|
-
ML_G4DN_16XLARGE
|
|
417
|
-
ML_G4DN_2XLARGE
|
|
418
|
-
ML_G4DN_4XLARGE
|
|
419
|
-
ML_G4DN_8XLARGE
|
|
420
|
-
ML_G4DN_XLARGE
|
|
421
|
-
ML_G5_12XLARGE
|
|
422
|
-
ML_G5_16XLARGE
|
|
423
|
-
ML_G5_24XLARGE
|
|
424
|
-
ML_G5_2XLARGE
|
|
425
|
-
ML_G5_48XLARGE
|
|
426
|
-
ML_G5_4XLARGE
|
|
427
|
-
ML_G5_8XLARGE
|
|
428
|
-
ML_G5_XLARGE
|
|
429
|
-
ML_M4_10XLARGE
|
|
430
|
-
ML_M4_16XLARGE
|
|
431
|
-
ML_M4_2XLARGE
|
|
432
|
-
ML_M4_4XLARGE
|
|
433
|
-
ML_M4_XLARGE
|
|
434
|
-
ML_M5_12XLARGE
|
|
435
|
-
ML_M5_24XLARGE
|
|
436
|
-
ML_M5_2XLARGE
|
|
437
|
-
ML_M5_4XLARGE
|
|
438
|
-
ML_M5_LARGE
|
|
439
|
-
ML_M5_XLARGE
|
|
440
|
-
ML_P2_16XLARGE
|
|
441
|
-
ML_P2_8XLARGE
|
|
442
|
-
ML_P2_XLARGE
|
|
443
|
-
ML_P3DN_24XLARGE
|
|
444
|
-
ML_P3_16XLARGE
|
|
445
|
-
ML_P3_2XLARGE
|
|
446
|
-
ML_P3_8XLARGE
|
|
447
|
-
ML_P4D_24XLARGE
|
|
448
|
-
ML_TRN1_2XLARGE
|
|
449
|
-
ML_TRN1_32XLARGE
|
|
450
|
-
}
|
|
427
|
+
export declare const TrainingInstanceType: {
|
|
428
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
429
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
430
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
431
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
432
|
+
readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
|
|
433
|
+
readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
|
|
434
|
+
readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
|
|
435
|
+
readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
|
|
436
|
+
readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
|
|
437
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
438
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
439
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
440
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
441
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
442
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
443
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
444
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
445
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
446
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
447
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
448
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
449
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
450
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
451
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
452
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
453
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
454
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
455
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
456
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
457
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
458
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
459
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
460
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
461
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
462
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
463
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
464
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
465
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
466
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
467
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
468
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
469
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
470
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
471
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
472
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
473
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
474
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
475
|
+
readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
|
|
476
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
477
|
+
};
|
|
478
|
+
export type TrainingInstanceType =
|
|
479
|
+
(typeof TrainingInstanceType)[keyof typeof TrainingInstanceType];
|
|
451
480
|
export interface InstanceGroup {
|
|
452
481
|
InstanceType: TrainingInstanceType | string | undefined;
|
|
453
482
|
InstanceCount: number | undefined;
|
|
@@ -473,10 +502,11 @@ export interface TrainingJobDefinition {
|
|
|
473
502
|
ResourceConfig: ResourceConfig | undefined;
|
|
474
503
|
StoppingCondition: StoppingCondition | undefined;
|
|
475
504
|
}
|
|
476
|
-
export declare
|
|
477
|
-
MULTI_RECORD
|
|
478
|
-
SINGLE_RECORD
|
|
479
|
-
}
|
|
505
|
+
export declare const BatchStrategy: {
|
|
506
|
+
readonly MULTI_RECORD: "MultiRecord";
|
|
507
|
+
readonly SINGLE_RECORD: "SingleRecord";
|
|
508
|
+
};
|
|
509
|
+
export type BatchStrategy = (typeof BatchStrategy)[keyof typeof BatchStrategy];
|
|
480
510
|
export interface TransformS3DataSource {
|
|
481
511
|
S3DataType: S3DataType | string | undefined;
|
|
482
512
|
S3Uri: string | undefined;
|
|
@@ -484,22 +514,24 @@ export interface TransformS3DataSource {
|
|
|
484
514
|
export interface TransformDataSource {
|
|
485
515
|
S3DataSource: TransformS3DataSource | undefined;
|
|
486
516
|
}
|
|
487
|
-
export declare
|
|
488
|
-
LINE
|
|
489
|
-
NONE
|
|
490
|
-
RECORDIO
|
|
491
|
-
TFRECORD
|
|
492
|
-
}
|
|
517
|
+
export declare const SplitType: {
|
|
518
|
+
readonly LINE: "Line";
|
|
519
|
+
readonly NONE: "None";
|
|
520
|
+
readonly RECORDIO: "RecordIO";
|
|
521
|
+
readonly TFRECORD: "TFRecord";
|
|
522
|
+
};
|
|
523
|
+
export type SplitType = (typeof SplitType)[keyof typeof SplitType];
|
|
493
524
|
export interface TransformInput {
|
|
494
525
|
DataSource: TransformDataSource | undefined;
|
|
495
526
|
ContentType?: string;
|
|
496
527
|
CompressionType?: CompressionType | string;
|
|
497
528
|
SplitType?: SplitType | string;
|
|
498
529
|
}
|
|
499
|
-
export declare
|
|
500
|
-
LINE
|
|
501
|
-
NONE
|
|
502
|
-
}
|
|
530
|
+
export declare const AssemblyType: {
|
|
531
|
+
readonly LINE: "Line";
|
|
532
|
+
readonly NONE: "None";
|
|
533
|
+
};
|
|
534
|
+
export type AssemblyType = (typeof AssemblyType)[keyof typeof AssemblyType];
|
|
503
535
|
export interface TransformOutput {
|
|
504
536
|
S3OutputPath: string | undefined;
|
|
505
537
|
Accept?: string;
|
|
@@ -532,20 +564,22 @@ export interface AlgorithmValidationSpecification {
|
|
|
532
564
|
export interface AnnotationConsolidationConfig {
|
|
533
565
|
AnnotationConsolidationLambdaArn: string | undefined;
|
|
534
566
|
}
|
|
535
|
-
export declare
|
|
536
|
-
JupyterServer
|
|
537
|
-
KernelGateway
|
|
538
|
-
RSessionGateway
|
|
539
|
-
RStudioServerPro
|
|
540
|
-
TensorBoard
|
|
541
|
-
}
|
|
542
|
-
export
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
567
|
+
export declare const AppType: {
|
|
568
|
+
readonly JupyterServer: "JupyterServer";
|
|
569
|
+
readonly KernelGateway: "KernelGateway";
|
|
570
|
+
readonly RSessionGateway: "RSessionGateway";
|
|
571
|
+
readonly RStudioServerPro: "RStudioServerPro";
|
|
572
|
+
readonly TensorBoard: "TensorBoard";
|
|
573
|
+
};
|
|
574
|
+
export type AppType = (typeof AppType)[keyof typeof AppType];
|
|
575
|
+
export declare const AppStatus: {
|
|
576
|
+
readonly Deleted: "Deleted";
|
|
577
|
+
readonly Deleting: "Deleting";
|
|
578
|
+
readonly Failed: "Failed";
|
|
579
|
+
readonly InService: "InService";
|
|
580
|
+
readonly Pending: "Pending";
|
|
581
|
+
};
|
|
582
|
+
export type AppStatus = (typeof AppStatus)[keyof typeof AppStatus];
|
|
549
583
|
export interface AppDetails {
|
|
550
584
|
DomainId?: string;
|
|
551
585
|
UserProfileName?: string;
|
|
@@ -575,93 +609,104 @@ export interface AppImageConfigDetails {
|
|
|
575
609
|
LastModifiedTime?: Date;
|
|
576
610
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
577
611
|
}
|
|
578
|
-
export declare
|
|
579
|
-
CreationTime
|
|
580
|
-
LastModifiedTime
|
|
581
|
-
Name
|
|
582
|
-
}
|
|
583
|
-
export
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
export declare
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
}
|
|
651
|
-
export
|
|
652
|
-
|
|
653
|
-
|
|
612
|
+
export declare const AppImageConfigSortKey: {
|
|
613
|
+
readonly CreationTime: "CreationTime";
|
|
614
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
615
|
+
readonly Name: "Name";
|
|
616
|
+
};
|
|
617
|
+
export type AppImageConfigSortKey =
|
|
618
|
+
(typeof AppImageConfigSortKey)[keyof typeof AppImageConfigSortKey];
|
|
619
|
+
export declare const AppInstanceType: {
|
|
620
|
+
readonly ML_C5_12XLARGE: "ml.c5.12xlarge";
|
|
621
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
622
|
+
readonly ML_C5_24XLARGE: "ml.c5.24xlarge";
|
|
623
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
624
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
625
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
626
|
+
readonly ML_C5_LARGE: "ml.c5.large";
|
|
627
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
628
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
629
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
630
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
631
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
632
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
633
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
634
|
+
readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
|
|
635
|
+
readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
|
|
636
|
+
readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
|
|
637
|
+
readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
|
|
638
|
+
readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
|
|
639
|
+
readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
|
|
640
|
+
readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
|
|
641
|
+
readonly ML_G5_XLARGE: "ml.g5.xlarge";
|
|
642
|
+
readonly ML_GEOSPATIAL_INTERACTIVE: "ml.geospatial.interactive";
|
|
643
|
+
readonly ML_M5D_12XLARGE: "ml.m5d.12xlarge";
|
|
644
|
+
readonly ML_M5D_16XLARGE: "ml.m5d.16xlarge";
|
|
645
|
+
readonly ML_M5D_24XLARGE: "ml.m5d.24xlarge";
|
|
646
|
+
readonly ML_M5D_2XLARGE: "ml.m5d.2xlarge";
|
|
647
|
+
readonly ML_M5D_4XLARGE: "ml.m5d.4xlarge";
|
|
648
|
+
readonly ML_M5D_8XLARGE: "ml.m5d.8xlarge";
|
|
649
|
+
readonly ML_M5D_LARGE: "ml.m5d.large";
|
|
650
|
+
readonly ML_M5D_XLARGE: "ml.m5d.xlarge";
|
|
651
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
652
|
+
readonly ML_M5_16XLARGE: "ml.m5.16xlarge";
|
|
653
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
654
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
655
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
656
|
+
readonly ML_M5_8XLARGE: "ml.m5.8xlarge";
|
|
657
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
658
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
659
|
+
readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
|
|
660
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
661
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
662
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
663
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
664
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
665
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
666
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
667
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
668
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
669
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
670
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
671
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
672
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
673
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
674
|
+
readonly ML_T3_MICRO: "ml.t3.micro";
|
|
675
|
+
readonly ML_T3_SMALL: "ml.t3.small";
|
|
676
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
677
|
+
readonly SYSTEM: "system";
|
|
678
|
+
};
|
|
679
|
+
export type AppInstanceType =
|
|
680
|
+
(typeof AppInstanceType)[keyof typeof AppInstanceType];
|
|
681
|
+
export declare const AppNetworkAccessType: {
|
|
682
|
+
readonly PublicInternetOnly: "PublicInternetOnly";
|
|
683
|
+
readonly VpcOnly: "VpcOnly";
|
|
684
|
+
};
|
|
685
|
+
export type AppNetworkAccessType =
|
|
686
|
+
(typeof AppNetworkAccessType)[keyof typeof AppNetworkAccessType];
|
|
687
|
+
export declare const AppSecurityGroupManagement: {
|
|
688
|
+
readonly Customer: "Customer";
|
|
689
|
+
readonly Service: "Service";
|
|
690
|
+
};
|
|
691
|
+
export type AppSecurityGroupManagement =
|
|
692
|
+
(typeof AppSecurityGroupManagement)[keyof typeof AppSecurityGroupManagement];
|
|
693
|
+
export declare const AppSortKey: {
|
|
694
|
+
readonly CreationTime: "CreationTime";
|
|
695
|
+
};
|
|
696
|
+
export type AppSortKey = (typeof AppSortKey)[keyof typeof AppSortKey];
|
|
654
697
|
export interface AppSpecification {
|
|
655
698
|
ImageUri: string | undefined;
|
|
656
699
|
ContainerEntrypoint?: string[];
|
|
657
700
|
ContainerArguments?: string[];
|
|
658
701
|
}
|
|
659
|
-
export declare
|
|
660
|
-
CUSTOM
|
|
661
|
-
MD5_HASH
|
|
662
|
-
S3_ETAG
|
|
663
|
-
S3_VERSION
|
|
664
|
-
}
|
|
702
|
+
export declare const ArtifactSourceIdType: {
|
|
703
|
+
readonly CUSTOM: "Custom";
|
|
704
|
+
readonly MD5_HASH: "MD5Hash";
|
|
705
|
+
readonly S3_ETAG: "S3ETag";
|
|
706
|
+
readonly S3_VERSION: "S3Version";
|
|
707
|
+
};
|
|
708
|
+
export type ArtifactSourceIdType =
|
|
709
|
+
(typeof ArtifactSourceIdType)[keyof typeof ArtifactSourceIdType];
|
|
665
710
|
export interface ArtifactSourceType {
|
|
666
711
|
SourceIdType: ArtifactSourceIdType | string | undefined;
|
|
667
712
|
Value: string | undefined;
|
|
@@ -724,18 +769,22 @@ export interface AsyncInferenceConfig {
|
|
|
724
769
|
ClientConfig?: AsyncInferenceClientConfig;
|
|
725
770
|
OutputConfig: AsyncInferenceOutputConfig | undefined;
|
|
726
771
|
}
|
|
727
|
-
export declare
|
|
728
|
-
GZIP
|
|
729
|
-
SNAPPY
|
|
730
|
-
ZLIB
|
|
731
|
-
}
|
|
732
|
-
export
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
772
|
+
export declare const AthenaResultCompressionType: {
|
|
773
|
+
readonly GZIP: "GZIP";
|
|
774
|
+
readonly SNAPPY: "SNAPPY";
|
|
775
|
+
readonly ZLIB: "ZLIB";
|
|
776
|
+
};
|
|
777
|
+
export type AthenaResultCompressionType =
|
|
778
|
+
(typeof AthenaResultCompressionType)[keyof typeof AthenaResultCompressionType];
|
|
779
|
+
export declare const AthenaResultFormat: {
|
|
780
|
+
readonly AVRO: "AVRO";
|
|
781
|
+
readonly JSON: "JSON";
|
|
782
|
+
readonly ORC: "ORC";
|
|
783
|
+
readonly PARQUET: "PARQUET";
|
|
784
|
+
readonly TEXTFILE: "TEXTFILE";
|
|
785
|
+
};
|
|
786
|
+
export type AthenaResultFormat =
|
|
787
|
+
(typeof AthenaResultFormat)[keyof typeof AthenaResultFormat];
|
|
739
788
|
export interface AthenaDatasetDefinition {
|
|
740
789
|
Catalog: string | undefined;
|
|
741
790
|
Database: string | undefined;
|
|
@@ -746,21 +795,24 @@ export interface AthenaDatasetDefinition {
|
|
|
746
795
|
OutputFormat: AthenaResultFormat | string | undefined;
|
|
747
796
|
OutputCompression?: AthenaResultCompressionType | string;
|
|
748
797
|
}
|
|
749
|
-
export declare
|
|
750
|
-
IAM
|
|
751
|
-
SSO
|
|
752
|
-
}
|
|
753
|
-
export
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
798
|
+
export declare const AuthMode: {
|
|
799
|
+
readonly IAM: "IAM";
|
|
800
|
+
readonly SSO: "SSO";
|
|
801
|
+
};
|
|
802
|
+
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
803
|
+
export declare const AutoMLAlgorithm: {
|
|
804
|
+
readonly CATBOOST: "catboost";
|
|
805
|
+
readonly EXTRA_TREES: "extra-trees";
|
|
806
|
+
readonly FASTAI: "fastai";
|
|
807
|
+
readonly LIGHTGBM: "lightgbm";
|
|
808
|
+
readonly LINEAR_LEARNER: "linear-learner";
|
|
809
|
+
readonly MLP: "mlp";
|
|
810
|
+
readonly NN_TORCH: "nn-torch";
|
|
811
|
+
readonly RANDOMFOREST: "randomforest";
|
|
812
|
+
readonly XGBOOST: "xgboost";
|
|
813
|
+
};
|
|
814
|
+
export type AutoMLAlgorithm =
|
|
815
|
+
(typeof AutoMLAlgorithm)[keyof typeof AutoMLAlgorithm];
|
|
764
816
|
export interface AutoMLAlgorithmConfig {
|
|
765
817
|
AutoMLAlgorithms: (AutoMLAlgorithm | string)[] | undefined;
|
|
766
818
|
}
|
|
@@ -768,43 +820,49 @@ export interface CandidateArtifactLocations {
|
|
|
768
820
|
Explainability: string | undefined;
|
|
769
821
|
ModelInsights?: string;
|
|
770
822
|
}
|
|
771
|
-
export declare
|
|
772
|
-
ACCURACY
|
|
773
|
-
AUC
|
|
774
|
-
BALANCED_ACCURACY
|
|
775
|
-
F1
|
|
776
|
-
F1_MACRO
|
|
777
|
-
MAE
|
|
778
|
-
MSE
|
|
779
|
-
PRECISION
|
|
780
|
-
PRECISION_MACRO
|
|
781
|
-
R2
|
|
782
|
-
RECALL
|
|
783
|
-
RECALL_MACRO
|
|
784
|
-
RMSE
|
|
785
|
-
}
|
|
786
|
-
export
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
823
|
+
export declare const AutoMLMetricEnum: {
|
|
824
|
+
readonly ACCURACY: "Accuracy";
|
|
825
|
+
readonly AUC: "AUC";
|
|
826
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
827
|
+
readonly F1: "F1";
|
|
828
|
+
readonly F1_MACRO: "F1macro";
|
|
829
|
+
readonly MAE: "MAE";
|
|
830
|
+
readonly MSE: "MSE";
|
|
831
|
+
readonly PRECISION: "Precision";
|
|
832
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
833
|
+
readonly R2: "R2";
|
|
834
|
+
readonly RECALL: "Recall";
|
|
835
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
836
|
+
readonly RMSE: "RMSE";
|
|
837
|
+
};
|
|
838
|
+
export type AutoMLMetricEnum =
|
|
839
|
+
(typeof AutoMLMetricEnum)[keyof typeof AutoMLMetricEnum];
|
|
840
|
+
export declare const MetricSetSource: {
|
|
841
|
+
readonly TEST: "Test";
|
|
842
|
+
readonly TRAIN: "Train";
|
|
843
|
+
readonly VALIDATION: "Validation";
|
|
844
|
+
};
|
|
845
|
+
export type MetricSetSource =
|
|
846
|
+
(typeof MetricSetSource)[keyof typeof MetricSetSource];
|
|
847
|
+
export declare const AutoMLMetricExtendedEnum: {
|
|
848
|
+
readonly ACCURACY: "Accuracy";
|
|
849
|
+
readonly AUC: "AUC";
|
|
850
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
851
|
+
readonly F1: "F1";
|
|
852
|
+
readonly F1_MACRO: "F1macro";
|
|
853
|
+
readonly INFERENCE_LATENCY: "InferenceLatency";
|
|
854
|
+
readonly LogLoss: "LogLoss";
|
|
855
|
+
readonly MAE: "MAE";
|
|
856
|
+
readonly MSE: "MSE";
|
|
857
|
+
readonly PRECISION: "Precision";
|
|
858
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
859
|
+
readonly R2: "R2";
|
|
860
|
+
readonly RECALL: "Recall";
|
|
861
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
862
|
+
readonly RMSE: "RMSE";
|
|
863
|
+
};
|
|
864
|
+
export type AutoMLMetricExtendedEnum =
|
|
865
|
+
(typeof AutoMLMetricExtendedEnum)[keyof typeof AutoMLMetricExtendedEnum];
|
|
808
866
|
export interface MetricDatum {
|
|
809
867
|
MetricName?: AutoMLMetricEnum | string;
|
|
810
868
|
Value?: number;
|
|
@@ -815,47 +873,57 @@ export interface CandidateProperties {
|
|
|
815
873
|
CandidateArtifactLocations?: CandidateArtifactLocations;
|
|
816
874
|
CandidateMetrics?: MetricDatum[];
|
|
817
875
|
}
|
|
818
|
-
export declare
|
|
819
|
-
COMPLETED
|
|
820
|
-
FAILED
|
|
821
|
-
IN_PROGRESS
|
|
822
|
-
STOPPED
|
|
823
|
-
STOPPING
|
|
824
|
-
}
|
|
825
|
-
export
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
876
|
+
export declare const CandidateStatus: {
|
|
877
|
+
readonly COMPLETED: "Completed";
|
|
878
|
+
readonly FAILED: "Failed";
|
|
879
|
+
readonly IN_PROGRESS: "InProgress";
|
|
880
|
+
readonly STOPPED: "Stopped";
|
|
881
|
+
readonly STOPPING: "Stopping";
|
|
882
|
+
};
|
|
883
|
+
export type CandidateStatus =
|
|
884
|
+
(typeof CandidateStatus)[keyof typeof CandidateStatus];
|
|
885
|
+
export declare const CandidateStepType: {
|
|
886
|
+
readonly PROCESSING: "AWS::SageMaker::ProcessingJob";
|
|
887
|
+
readonly TRAINING: "AWS::SageMaker::TrainingJob";
|
|
888
|
+
readonly TRANSFORM: "AWS::SageMaker::TransformJob";
|
|
889
|
+
};
|
|
890
|
+
export type CandidateStepType =
|
|
891
|
+
(typeof CandidateStepType)[keyof typeof CandidateStepType];
|
|
830
892
|
export interface AutoMLCandidateStep {
|
|
831
893
|
CandidateStepType: CandidateStepType | string | undefined;
|
|
832
894
|
CandidateStepArn: string | undefined;
|
|
833
895
|
CandidateStepName: string | undefined;
|
|
834
896
|
}
|
|
835
|
-
export declare
|
|
836
|
-
MAXIMIZE
|
|
837
|
-
MINIMIZE
|
|
838
|
-
}
|
|
897
|
+
export declare const AutoMLJobObjectiveType: {
|
|
898
|
+
readonly MAXIMIZE: "Maximize";
|
|
899
|
+
readonly MINIMIZE: "Minimize";
|
|
900
|
+
};
|
|
901
|
+
export type AutoMLJobObjectiveType =
|
|
902
|
+
(typeof AutoMLJobObjectiveType)[keyof typeof AutoMLJobObjectiveType];
|
|
839
903
|
export interface FinalAutoMLJobObjectiveMetric {
|
|
840
904
|
Type?: AutoMLJobObjectiveType | string;
|
|
841
905
|
MetricName: AutoMLMetricEnum | string | undefined;
|
|
842
906
|
Value: number | undefined;
|
|
843
907
|
StandardMetricName?: AutoMLMetricEnum | string;
|
|
844
908
|
}
|
|
845
|
-
export declare
|
|
846
|
-
CPU
|
|
847
|
-
GPU
|
|
848
|
-
}
|
|
909
|
+
export declare const AutoMLProcessingUnit: {
|
|
910
|
+
readonly CPU: "CPU";
|
|
911
|
+
readonly GPU: "GPU";
|
|
912
|
+
};
|
|
913
|
+
export type AutoMLProcessingUnit =
|
|
914
|
+
(typeof AutoMLProcessingUnit)[keyof typeof AutoMLProcessingUnit];
|
|
849
915
|
export interface AutoMLContainerDefinition {
|
|
850
916
|
Image: string | undefined;
|
|
851
917
|
ModelDataUrl: string | undefined;
|
|
852
918
|
Environment?: Record<string, string>;
|
|
853
919
|
}
|
|
854
|
-
export declare
|
|
855
|
-
Failed
|
|
856
|
-
Pending
|
|
857
|
-
Succeeded
|
|
858
|
-
}
|
|
920
|
+
export declare const ObjectiveStatus: {
|
|
921
|
+
readonly Failed: "Failed";
|
|
922
|
+
readonly Pending: "Pending";
|
|
923
|
+
readonly Succeeded: "Succeeded";
|
|
924
|
+
};
|
|
925
|
+
export type ObjectiveStatus =
|
|
926
|
+
(typeof ObjectiveStatus)[keyof typeof ObjectiveStatus];
|
|
859
927
|
export interface AutoMLCandidate {
|
|
860
928
|
CandidateName: string | undefined;
|
|
861
929
|
FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric;
|
|
@@ -874,15 +942,19 @@ export interface AutoMLCandidateGenerationConfig {
|
|
|
874
942
|
FeatureSpecificationS3Uri?: string;
|
|
875
943
|
AlgorithmsConfig?: AutoMLAlgorithmConfig[];
|
|
876
944
|
}
|
|
877
|
-
export declare
|
|
878
|
-
TRAINING
|
|
879
|
-
VALIDATION
|
|
880
|
-
}
|
|
881
|
-
export
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
945
|
+
export declare const AutoMLChannelType: {
|
|
946
|
+
readonly TRAINING: "training";
|
|
947
|
+
readonly VALIDATION: "validation";
|
|
948
|
+
};
|
|
949
|
+
export type AutoMLChannelType =
|
|
950
|
+
(typeof AutoMLChannelType)[keyof typeof AutoMLChannelType];
|
|
951
|
+
export declare const AutoMLS3DataType: {
|
|
952
|
+
readonly AUGMENTED_MANIFEST_FILE: "AugmentedManifestFile";
|
|
953
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
954
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
955
|
+
};
|
|
956
|
+
export type AutoMLS3DataType =
|
|
957
|
+
(typeof AutoMLS3DataType)[keyof typeof AutoMLS3DataType];
|
|
886
958
|
export interface AutoMLS3DataSource {
|
|
887
959
|
S3DataType: AutoMLS3DataType | string | undefined;
|
|
888
960
|
S3Uri: string | undefined;
|
|
@@ -915,11 +987,12 @@ export interface AutoMLJobCompletionCriteria {
|
|
|
915
987
|
MaxRuntimePerTrainingJobInSeconds?: number;
|
|
916
988
|
MaxAutoMLJobRuntimeInSeconds?: number;
|
|
917
989
|
}
|
|
918
|
-
export declare
|
|
919
|
-
AUTO
|
|
920
|
-
ENSEMBLING
|
|
921
|
-
HYPERPARAMETER_TUNING
|
|
922
|
-
}
|
|
990
|
+
export declare const AutoMLMode: {
|
|
991
|
+
readonly AUTO: "AUTO";
|
|
992
|
+
readonly ENSEMBLING: "ENSEMBLING";
|
|
993
|
+
readonly HYPERPARAMETER_TUNING: "HYPERPARAMETER_TUNING";
|
|
994
|
+
};
|
|
995
|
+
export type AutoMLMode = (typeof AutoMLMode)[keyof typeof AutoMLMode];
|
|
923
996
|
export interface VpcConfig {
|
|
924
997
|
SecurityGroupIds: string[] | undefined;
|
|
925
998
|
Subnets: string[] | undefined;
|
|
@@ -939,33 +1012,37 @@ export interface AutoMLJobConfig {
|
|
|
939
1012
|
export interface AutoMLJobObjective {
|
|
940
1013
|
MetricName: AutoMLMetricEnum | string | undefined;
|
|
941
1014
|
}
|
|
942
|
-
export declare
|
|
943
|
-
ANALYZING_DATA
|
|
944
|
-
CANDIDATE_DEFINITIONS_GENERATED
|
|
945
|
-
COMPLETED
|
|
946
|
-
DEPLOYING_MODEL
|
|
947
|
-
EXPLAINABILITY_ERROR
|
|
948
|
-
FAILED
|
|
949
|
-
FEATURE_ENGINEERING
|
|
950
|
-
GENERATING_EXPLAINABILITY_REPORT
|
|
951
|
-
GENERATING_MODEL_INSIGHTS_REPORT
|
|
952
|
-
MAX_AUTO_ML_JOB_RUNTIME_REACHED
|
|
953
|
-
MAX_CANDIDATES_REACHED
|
|
954
|
-
MODEL_DEPLOYMENT_ERROR
|
|
955
|
-
MODEL_INSIGHTS_ERROR
|
|
956
|
-
MODEL_TUNING
|
|
957
|
-
STARTING
|
|
958
|
-
STOPPED
|
|
959
|
-
STOPPING
|
|
960
|
-
TRAINING_MODELS
|
|
961
|
-
}
|
|
962
|
-
export
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
1015
|
+
export declare const AutoMLJobSecondaryStatus: {
|
|
1016
|
+
readonly ANALYZING_DATA: "AnalyzingData";
|
|
1017
|
+
readonly CANDIDATE_DEFINITIONS_GENERATED: "CandidateDefinitionsGenerated";
|
|
1018
|
+
readonly COMPLETED: "Completed";
|
|
1019
|
+
readonly DEPLOYING_MODEL: "DeployingModel";
|
|
1020
|
+
readonly EXPLAINABILITY_ERROR: "ExplainabilityError";
|
|
1021
|
+
readonly FAILED: "Failed";
|
|
1022
|
+
readonly FEATURE_ENGINEERING: "FeatureEngineering";
|
|
1023
|
+
readonly GENERATING_EXPLAINABILITY_REPORT: "GeneratingExplainabilityReport";
|
|
1024
|
+
readonly GENERATING_MODEL_INSIGHTS_REPORT: "GeneratingModelInsightsReport";
|
|
1025
|
+
readonly MAX_AUTO_ML_JOB_RUNTIME_REACHED: "MaxAutoMLJobRuntimeReached";
|
|
1026
|
+
readonly MAX_CANDIDATES_REACHED: "MaxCandidatesReached";
|
|
1027
|
+
readonly MODEL_DEPLOYMENT_ERROR: "ModelDeploymentError";
|
|
1028
|
+
readonly MODEL_INSIGHTS_ERROR: "ModelInsightsError";
|
|
1029
|
+
readonly MODEL_TUNING: "ModelTuning";
|
|
1030
|
+
readonly STARTING: "Starting";
|
|
1031
|
+
readonly STOPPED: "Stopped";
|
|
1032
|
+
readonly STOPPING: "Stopping";
|
|
1033
|
+
readonly TRAINING_MODELS: "TrainingModels";
|
|
1034
|
+
};
|
|
1035
|
+
export type AutoMLJobSecondaryStatus =
|
|
1036
|
+
(typeof AutoMLJobSecondaryStatus)[keyof typeof AutoMLJobSecondaryStatus];
|
|
1037
|
+
export declare const AutoMLJobStatus: {
|
|
1038
|
+
readonly COMPLETED: "Completed";
|
|
1039
|
+
readonly FAILED: "Failed";
|
|
1040
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1041
|
+
readonly STOPPED: "Stopped";
|
|
1042
|
+
readonly STOPPING: "Stopping";
|
|
1043
|
+
};
|
|
1044
|
+
export type AutoMLJobStatus =
|
|
1045
|
+
(typeof AutoMLJobStatus)[keyof typeof AutoMLJobStatus];
|
|
969
1046
|
export interface AutoMLJobStepMetadata {
|
|
970
1047
|
Arn?: string;
|
|
971
1048
|
}
|
|
@@ -1022,22 +1099,27 @@ export declare namespace AutoMLProblemTypeConfig {
|
|
|
1022
1099
|
}
|
|
1023
1100
|
const visit: <T>(value: AutoMLProblemTypeConfig, visitor: Visitor<T>) => T;
|
|
1024
1101
|
}
|
|
1025
|
-
export declare
|
|
1026
|
-
CREATION_TIME
|
|
1027
|
-
NAME
|
|
1028
|
-
STATUS
|
|
1029
|
-
}
|
|
1030
|
-
export
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1102
|
+
export declare const AutoMLSortBy: {
|
|
1103
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1104
|
+
readonly NAME: "Name";
|
|
1105
|
+
readonly STATUS: "Status";
|
|
1106
|
+
};
|
|
1107
|
+
export type AutoMLSortBy = (typeof AutoMLSortBy)[keyof typeof AutoMLSortBy];
|
|
1108
|
+
export declare const AutoMLSortOrder: {
|
|
1109
|
+
readonly ASCENDING: "Ascending";
|
|
1110
|
+
readonly DESCENDING: "Descending";
|
|
1111
|
+
};
|
|
1112
|
+
export type AutoMLSortOrder =
|
|
1113
|
+
(typeof AutoMLSortOrder)[keyof typeof AutoMLSortOrder];
|
|
1034
1114
|
export interface AutoRollbackConfig {
|
|
1035
1115
|
Alarms?: Alarm[];
|
|
1036
1116
|
}
|
|
1037
|
-
export declare
|
|
1038
|
-
REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3
|
|
1039
|
-
TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1
|
|
1040
|
-
}
|
|
1117
|
+
export declare const AwsManagedHumanLoopRequestSource: {
|
|
1118
|
+
readonly REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3: "AWS/Rekognition/DetectModerationLabels/Image/V3";
|
|
1119
|
+
readonly TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1";
|
|
1120
|
+
};
|
|
1121
|
+
export type AwsManagedHumanLoopRequestSource =
|
|
1122
|
+
(typeof AwsManagedHumanLoopRequestSource)[keyof typeof AwsManagedHumanLoopRequestSource];
|
|
1041
1123
|
export interface BatchDataCaptureConfig {
|
|
1042
1124
|
DestinationS3Uri: string | undefined;
|
|
1043
1125
|
KmsKeyId?: string;
|
|
@@ -1060,18 +1142,22 @@ export interface InferenceSpecification {
|
|
|
1060
1142
|
SupportedContentTypes: string[] | undefined;
|
|
1061
1143
|
SupportedResponseMIMETypes: string[] | undefined;
|
|
1062
1144
|
}
|
|
1063
|
-
export declare
|
|
1064
|
-
APPROVED
|
|
1065
|
-
PENDING_MANUAL_APPROVAL
|
|
1066
|
-
REJECTED
|
|
1067
|
-
}
|
|
1068
|
-
export
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1145
|
+
export declare const ModelApprovalStatus: {
|
|
1146
|
+
readonly APPROVED: "Approved";
|
|
1147
|
+
readonly PENDING_MANUAL_APPROVAL: "PendingManualApproval";
|
|
1148
|
+
readonly REJECTED: "Rejected";
|
|
1149
|
+
};
|
|
1150
|
+
export type ModelApprovalStatus =
|
|
1151
|
+
(typeof ModelApprovalStatus)[keyof typeof ModelApprovalStatus];
|
|
1152
|
+
export declare const ModelPackageStatus: {
|
|
1153
|
+
readonly COMPLETED: "Completed";
|
|
1154
|
+
readonly DELETING: "Deleting";
|
|
1155
|
+
readonly FAILED: "Failed";
|
|
1156
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1157
|
+
readonly PENDING: "Pending";
|
|
1158
|
+
};
|
|
1159
|
+
export type ModelPackageStatus =
|
|
1160
|
+
(typeof ModelPackageStatus)[keyof typeof ModelPackageStatus];
|
|
1075
1161
|
export interface BatchDescribeModelPackageSummary {
|
|
1076
1162
|
ModelPackageGroupName: string | undefined;
|
|
1077
1163
|
ModelPackageVersion?: number;
|
|
@@ -1101,14 +1187,18 @@ export interface MonitoringDatasetFormat {
|
|
|
1101
1187
|
Json?: MonitoringJsonDatasetFormat;
|
|
1102
1188
|
Parquet?: MonitoringParquetDatasetFormat;
|
|
1103
1189
|
}
|
|
1104
|
-
export declare
|
|
1105
|
-
FULLYREPLICATED
|
|
1106
|
-
SHARDEDBYS3KEY
|
|
1107
|
-
}
|
|
1108
|
-
export
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1190
|
+
export declare const ProcessingS3DataDistributionType: {
|
|
1191
|
+
readonly FULLYREPLICATED: "FullyReplicated";
|
|
1192
|
+
readonly SHARDEDBYS3KEY: "ShardedByS3Key";
|
|
1193
|
+
};
|
|
1194
|
+
export type ProcessingS3DataDistributionType =
|
|
1195
|
+
(typeof ProcessingS3DataDistributionType)[keyof typeof ProcessingS3DataDistributionType];
|
|
1196
|
+
export declare const ProcessingS3InputMode: {
|
|
1197
|
+
readonly FILE: "File";
|
|
1198
|
+
readonly PIPE: "Pipe";
|
|
1199
|
+
};
|
|
1200
|
+
export type ProcessingS3InputMode =
|
|
1201
|
+
(typeof ProcessingS3InputMode)[keyof typeof ProcessingS3InputMode];
|
|
1112
1202
|
export interface BatchTransformInput {
|
|
1113
1203
|
DataCapturedDestinationS3Uri: string | undefined;
|
|
1114
1204
|
DatasetFormat: MonitoringDatasetFormat | undefined;
|
|
@@ -1135,19 +1225,23 @@ export interface Bias {
|
|
|
1135
1225
|
PreTrainingReport?: MetricsSource;
|
|
1136
1226
|
PostTrainingReport?: MetricsSource;
|
|
1137
1227
|
}
|
|
1138
|
-
export declare
|
|
1139
|
-
CAPACITY_PERCENT
|
|
1140
|
-
INSTANCE_COUNT
|
|
1141
|
-
}
|
|
1228
|
+
export declare const CapacitySizeType: {
|
|
1229
|
+
readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
|
|
1230
|
+
readonly INSTANCE_COUNT: "INSTANCE_COUNT";
|
|
1231
|
+
};
|
|
1232
|
+
export type CapacitySizeType =
|
|
1233
|
+
(typeof CapacitySizeType)[keyof typeof CapacitySizeType];
|
|
1142
1234
|
export interface CapacitySize {
|
|
1143
1235
|
Type: CapacitySizeType | string | undefined;
|
|
1144
1236
|
Value: number | undefined;
|
|
1145
1237
|
}
|
|
1146
|
-
export declare
|
|
1147
|
-
ALL_AT_ONCE
|
|
1148
|
-
CANARY
|
|
1149
|
-
LINEAR
|
|
1150
|
-
}
|
|
1238
|
+
export declare const TrafficRoutingConfigType: {
|
|
1239
|
+
readonly ALL_AT_ONCE: "ALL_AT_ONCE";
|
|
1240
|
+
readonly CANARY: "CANARY";
|
|
1241
|
+
readonly LINEAR: "LINEAR";
|
|
1242
|
+
};
|
|
1243
|
+
export type TrafficRoutingConfigType =
|
|
1244
|
+
(typeof TrafficRoutingConfigType)[keyof typeof TrafficRoutingConfigType];
|
|
1151
1245
|
export interface TrafficRoutingConfig {
|
|
1152
1246
|
Type: TrafficRoutingConfigType | string | undefined;
|
|
1153
1247
|
WaitIntervalInSeconds: number | undefined;
|
|
@@ -1159,10 +1253,12 @@ export interface BlueGreenUpdatePolicy {
|
|
|
1159
1253
|
TerminationWaitInSeconds?: number;
|
|
1160
1254
|
MaximumExecutionTimeoutInSeconds?: number;
|
|
1161
1255
|
}
|
|
1162
|
-
export declare
|
|
1163
|
-
AND
|
|
1164
|
-
OR
|
|
1165
|
-
}
|
|
1256
|
+
export declare const BooleanOperator: {
|
|
1257
|
+
readonly AND: "And";
|
|
1258
|
+
readonly OR: "Or";
|
|
1259
|
+
};
|
|
1260
|
+
export type BooleanOperator =
|
|
1261
|
+
(typeof BooleanOperator)[keyof typeof BooleanOperator];
|
|
1166
1262
|
export interface CacheHitResult {
|
|
1167
1263
|
SourcePipelineExecutionArn?: string;
|
|
1168
1264
|
}
|
|
@@ -1175,15 +1271,18 @@ export interface CallbackStepMetadata {
|
|
|
1175
1271
|
SqsQueueUrl?: string;
|
|
1176
1272
|
OutputParameters?: OutputParameter[];
|
|
1177
1273
|
}
|
|
1178
|
-
export declare
|
|
1179
|
-
CreationTime
|
|
1180
|
-
FinalObjectiveMetricValue
|
|
1181
|
-
Status
|
|
1182
|
-
}
|
|
1183
|
-
export
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1274
|
+
export declare const CandidateSortBy: {
|
|
1275
|
+
readonly CreationTime: "CreationTime";
|
|
1276
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
1277
|
+
readonly Status: "Status";
|
|
1278
|
+
};
|
|
1279
|
+
export type CandidateSortBy =
|
|
1280
|
+
(typeof CandidateSortBy)[keyof typeof CandidateSortBy];
|
|
1281
|
+
export declare const FeatureStatus: {
|
|
1282
|
+
readonly Disabled: "DISABLED";
|
|
1283
|
+
readonly Enabled: "ENABLED";
|
|
1284
|
+
};
|
|
1285
|
+
export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
|
|
1187
1286
|
export interface TimeSeriesForecastingSettings {
|
|
1188
1287
|
Status?: FeatureStatus | string;
|
|
1189
1288
|
AmazonForecastRoleArn?: string;
|
|
@@ -1195,17 +1294,19 @@ export interface CaptureContentTypeHeader {
|
|
|
1195
1294
|
CsvContentTypes?: string[];
|
|
1196
1295
|
JsonContentTypes?: string[];
|
|
1197
1296
|
}
|
|
1198
|
-
export declare
|
|
1199
|
-
INPUT
|
|
1200
|
-
OUTPUT
|
|
1201
|
-
}
|
|
1297
|
+
export declare const CaptureMode: {
|
|
1298
|
+
readonly INPUT: "Input";
|
|
1299
|
+
readonly OUTPUT: "Output";
|
|
1300
|
+
};
|
|
1301
|
+
export type CaptureMode = (typeof CaptureMode)[keyof typeof CaptureMode];
|
|
1202
1302
|
export interface CaptureOption {
|
|
1203
1303
|
CaptureMode: CaptureMode | string | undefined;
|
|
1204
1304
|
}
|
|
1205
|
-
export declare
|
|
1206
|
-
STARTED
|
|
1207
|
-
STOPPED
|
|
1208
|
-
}
|
|
1305
|
+
export declare const CaptureStatus: {
|
|
1306
|
+
readonly STARTED: "Started";
|
|
1307
|
+
readonly STOPPED: "Stopped";
|
|
1308
|
+
};
|
|
1309
|
+
export type CaptureStatus = (typeof CaptureStatus)[keyof typeof CaptureStatus];
|
|
1209
1310
|
export interface CategoricalParameter {
|
|
1210
1311
|
Name: string | undefined;
|
|
1211
1312
|
Value: string[] | undefined;
|
|
@@ -1239,11 +1340,13 @@ export interface ClarifyCheckStepMetadata {
|
|
|
1239
1340
|
SkipCheck?: boolean;
|
|
1240
1341
|
RegisterNewBaseline?: boolean;
|
|
1241
1342
|
}
|
|
1242
|
-
export declare
|
|
1243
|
-
CATEGORICAL
|
|
1244
|
-
NUMERICAL
|
|
1245
|
-
TEXT
|
|
1246
|
-
}
|
|
1343
|
+
export declare const ClarifyFeatureType: {
|
|
1344
|
+
readonly CATEGORICAL: "categorical";
|
|
1345
|
+
readonly NUMERICAL: "numerical";
|
|
1346
|
+
readonly TEXT: "text";
|
|
1347
|
+
};
|
|
1348
|
+
export type ClarifyFeatureType =
|
|
1349
|
+
(typeof ClarifyFeatureType)[keyof typeof ClarifyFeatureType];
|
|
1247
1350
|
export interface ClarifyInferenceConfig {
|
|
1248
1351
|
FeaturesAttribute?: string;
|
|
1249
1352
|
ContentTemplate?: string;
|
|
@@ -1262,73 +1365,77 @@ export interface ClarifyShapBaselineConfig {
|
|
|
1262
1365
|
ShapBaseline?: string;
|
|
1263
1366
|
ShapBaselineUri?: string;
|
|
1264
1367
|
}
|
|
1265
|
-
export declare
|
|
1266
|
-
PARAGRAPH
|
|
1267
|
-
SENTENCE
|
|
1268
|
-
TOKEN
|
|
1269
|
-
}
|
|
1270
|
-
export
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1368
|
+
export declare const ClarifyTextGranularity: {
|
|
1369
|
+
readonly PARAGRAPH: "paragraph";
|
|
1370
|
+
readonly SENTENCE: "sentence";
|
|
1371
|
+
readonly TOKEN: "token";
|
|
1372
|
+
};
|
|
1373
|
+
export type ClarifyTextGranularity =
|
|
1374
|
+
(typeof ClarifyTextGranularity)[keyof typeof ClarifyTextGranularity];
|
|
1375
|
+
export declare const ClarifyTextLanguage: {
|
|
1376
|
+
readonly AFRIKAANS: "af";
|
|
1377
|
+
readonly ALBANIAN: "sq";
|
|
1378
|
+
readonly ARABIC: "ar";
|
|
1379
|
+
readonly ARMENIAN: "hy";
|
|
1380
|
+
readonly BASQUE: "eu";
|
|
1381
|
+
readonly BENGALI: "bn";
|
|
1382
|
+
readonly BULGARIAN: "bg";
|
|
1383
|
+
readonly CATALAN: "ca";
|
|
1384
|
+
readonly CHINESE: "zh";
|
|
1385
|
+
readonly CROATIAN: "hr";
|
|
1386
|
+
readonly CZECH: "cs";
|
|
1387
|
+
readonly DANISH: "da";
|
|
1388
|
+
readonly DUTCH: "nl";
|
|
1389
|
+
readonly ENGLISH: "en";
|
|
1390
|
+
readonly ESTONIAN: "et";
|
|
1391
|
+
readonly FINNISH: "fi";
|
|
1392
|
+
readonly FRENCH: "fr";
|
|
1393
|
+
readonly GERMAN: "de";
|
|
1394
|
+
readonly GREEK: "el";
|
|
1395
|
+
readonly GUJARATI: "gu";
|
|
1396
|
+
readonly HEBREW: "he";
|
|
1397
|
+
readonly HINDI: "hi";
|
|
1398
|
+
readonly HUNGARIAN: "hu";
|
|
1399
|
+
readonly ICELANDIC: "is";
|
|
1400
|
+
readonly INDONESIAN: "id";
|
|
1401
|
+
readonly IRISH: "ga";
|
|
1402
|
+
readonly ITALIAN: "it";
|
|
1403
|
+
readonly KANNADA: "kn";
|
|
1404
|
+
readonly KYRGYZ: "ky";
|
|
1405
|
+
readonly LATVIAN: "lv";
|
|
1406
|
+
readonly LIGURIAN: "lij";
|
|
1407
|
+
readonly LITHUANIAN: "lt";
|
|
1408
|
+
readonly LUXEMBOURGISH: "lb";
|
|
1409
|
+
readonly MACEDONIAN: "mk";
|
|
1410
|
+
readonly MALAYALAM: "ml";
|
|
1411
|
+
readonly MARATHI: "mr";
|
|
1412
|
+
readonly MULTI_LANGUAGE: "xx";
|
|
1413
|
+
readonly NEPALI: "ne";
|
|
1414
|
+
readonly NORWEGIAN_BOKMAL: "nb";
|
|
1415
|
+
readonly PERSIAN: "fa";
|
|
1416
|
+
readonly POLISH: "pl";
|
|
1417
|
+
readonly PORTUGUESE: "pt";
|
|
1418
|
+
readonly ROMANIAN: "ro";
|
|
1419
|
+
readonly RUSSIAN: "ru";
|
|
1420
|
+
readonly SANSKRIT: "sa";
|
|
1421
|
+
readonly SERBIAN: "sr";
|
|
1422
|
+
readonly SETSWANA: "tn";
|
|
1423
|
+
readonly SINHALA: "si";
|
|
1424
|
+
readonly SLOVAK: "sk";
|
|
1425
|
+
readonly SLOVENIAN: "sl";
|
|
1426
|
+
readonly SPANISH: "es";
|
|
1427
|
+
readonly SWEDISH: "sv";
|
|
1428
|
+
readonly TAGALOG: "tl";
|
|
1429
|
+
readonly TAMIL: "ta";
|
|
1430
|
+
readonly TATAR: "tt";
|
|
1431
|
+
readonly TELUGU: "te";
|
|
1432
|
+
readonly TURKISH: "tr";
|
|
1433
|
+
readonly UKRAINIAN: "uk";
|
|
1434
|
+
readonly URDU: "ur";
|
|
1435
|
+
readonly YORUBA: "yo";
|
|
1436
|
+
};
|
|
1437
|
+
export type ClarifyTextLanguage =
|
|
1438
|
+
(typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
|
|
1332
1439
|
export interface ClarifyTextConfig {
|
|
1333
1440
|
Language: ClarifyTextLanguage | string | undefined;
|
|
1334
1441
|
Granularity: ClarifyTextGranularity | string | undefined;
|
|
@@ -1348,15 +1455,19 @@ export interface ClarifyExplainerConfig {
|
|
|
1348
1455
|
export interface CodeRepository {
|
|
1349
1456
|
RepositoryUrl: string | undefined;
|
|
1350
1457
|
}
|
|
1351
|
-
export declare
|
|
1352
|
-
CREATION_TIME
|
|
1353
|
-
LAST_MODIFIED_TIME
|
|
1354
|
-
NAME
|
|
1355
|
-
}
|
|
1356
|
-
export
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1458
|
+
export declare const CodeRepositorySortBy: {
|
|
1459
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1460
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
1461
|
+
readonly NAME: "Name";
|
|
1462
|
+
};
|
|
1463
|
+
export type CodeRepositorySortBy =
|
|
1464
|
+
(typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
|
|
1465
|
+
export declare const CodeRepositorySortOrder: {
|
|
1466
|
+
readonly ASCENDING: "Ascending";
|
|
1467
|
+
readonly DESCENDING: "Descending";
|
|
1468
|
+
};
|
|
1469
|
+
export type CodeRepositorySortOrder =
|
|
1470
|
+
(typeof CodeRepositorySortOrder)[keyof typeof CodeRepositorySortOrder];
|
|
1360
1471
|
export interface GitConfig {
|
|
1361
1472
|
RepositoryUrl: string | undefined;
|
|
1362
1473
|
Branch?: string;
|
|
@@ -1382,65 +1493,74 @@ export interface CollectionConfiguration {
|
|
|
1382
1493
|
CollectionName?: string;
|
|
1383
1494
|
CollectionParameters?: Record<string, string>;
|
|
1384
1495
|
}
|
|
1385
|
-
export declare
|
|
1386
|
-
COMPLETED
|
|
1387
|
-
FAILED
|
|
1388
|
-
INPROGRESS
|
|
1389
|
-
STARTING
|
|
1390
|
-
STOPPED
|
|
1391
|
-
STOPPING
|
|
1392
|
-
}
|
|
1393
|
-
export
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1496
|
+
export declare const CompilationJobStatus: {
|
|
1497
|
+
readonly COMPLETED: "COMPLETED";
|
|
1498
|
+
readonly FAILED: "FAILED";
|
|
1499
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
1500
|
+
readonly STARTING: "STARTING";
|
|
1501
|
+
readonly STOPPED: "STOPPED";
|
|
1502
|
+
readonly STOPPING: "STOPPING";
|
|
1503
|
+
};
|
|
1504
|
+
export type CompilationJobStatus =
|
|
1505
|
+
(typeof CompilationJobStatus)[keyof typeof CompilationJobStatus];
|
|
1506
|
+
export declare const TargetDevice: {
|
|
1507
|
+
readonly AISAGE: "aisage";
|
|
1508
|
+
readonly AMBA_CV2: "amba_cv2";
|
|
1509
|
+
readonly AMBA_CV22: "amba_cv22";
|
|
1510
|
+
readonly AMBA_CV25: "amba_cv25";
|
|
1511
|
+
readonly COREML: "coreml";
|
|
1512
|
+
readonly DEEPLENS: "deeplens";
|
|
1513
|
+
readonly IMX8MPLUS: "imx8mplus";
|
|
1514
|
+
readonly IMX8QM: "imx8qm";
|
|
1515
|
+
readonly JACINTO_TDA4VM: "jacinto_tda4vm";
|
|
1516
|
+
readonly JETSON_NANO: "jetson_nano";
|
|
1517
|
+
readonly JETSON_TX1: "jetson_tx1";
|
|
1518
|
+
readonly JETSON_TX2: "jetson_tx2";
|
|
1519
|
+
readonly JETSON_XAVIER: "jetson_xavier";
|
|
1520
|
+
readonly LAMBDA: "lambda";
|
|
1521
|
+
readonly ML_C4: "ml_c4";
|
|
1522
|
+
readonly ML_C5: "ml_c5";
|
|
1523
|
+
readonly ML_EIA2: "ml_eia2";
|
|
1524
|
+
readonly ML_G4DN: "ml_g4dn";
|
|
1525
|
+
readonly ML_INF1: "ml_inf1";
|
|
1526
|
+
readonly ML_M4: "ml_m4";
|
|
1527
|
+
readonly ML_M5: "ml_m5";
|
|
1528
|
+
readonly ML_P2: "ml_p2";
|
|
1529
|
+
readonly ML_P3: "ml_p3";
|
|
1530
|
+
readonly QCS603: "qcs603";
|
|
1531
|
+
readonly QCS605: "qcs605";
|
|
1532
|
+
readonly RASP3B: "rasp3b";
|
|
1533
|
+
readonly RK3288: "rk3288";
|
|
1534
|
+
readonly RK3399: "rk3399";
|
|
1535
|
+
readonly SBE_C: "sbe_c";
|
|
1536
|
+
readonly SITARA_AM57X: "sitara_am57x";
|
|
1537
|
+
readonly X86_WIN32: "x86_win32";
|
|
1538
|
+
readonly X86_WIN64: "x86_win64";
|
|
1539
|
+
};
|
|
1540
|
+
export type TargetDevice = (typeof TargetDevice)[keyof typeof TargetDevice];
|
|
1541
|
+
export declare const TargetPlatformAccelerator: {
|
|
1542
|
+
readonly INTEL_GRAPHICS: "INTEL_GRAPHICS";
|
|
1543
|
+
readonly MALI: "MALI";
|
|
1544
|
+
readonly NNA: "NNA";
|
|
1545
|
+
readonly NVIDIA: "NVIDIA";
|
|
1546
|
+
};
|
|
1547
|
+
export type TargetPlatformAccelerator =
|
|
1548
|
+
(typeof TargetPlatformAccelerator)[keyof typeof TargetPlatformAccelerator];
|
|
1549
|
+
export declare const TargetPlatformArch: {
|
|
1550
|
+
readonly ARM64: "ARM64";
|
|
1551
|
+
readonly ARM_EABI: "ARM_EABI";
|
|
1552
|
+
readonly ARM_EABIHF: "ARM_EABIHF";
|
|
1553
|
+
readonly X86: "X86";
|
|
1554
|
+
readonly X86_64: "X86_64";
|
|
1555
|
+
};
|
|
1556
|
+
export type TargetPlatformArch =
|
|
1557
|
+
(typeof TargetPlatformArch)[keyof typeof TargetPlatformArch];
|
|
1558
|
+
export declare const TargetPlatformOs: {
|
|
1559
|
+
readonly ANDROID: "ANDROID";
|
|
1560
|
+
readonly LINUX: "LINUX";
|
|
1561
|
+
};
|
|
1562
|
+
export type TargetPlatformOs =
|
|
1563
|
+
(typeof TargetPlatformOs)[keyof typeof TargetPlatformOs];
|
|
1444
1564
|
export interface CompilationJobSummary {
|
|
1445
1565
|
CompilationJobName: string | undefined;
|
|
1446
1566
|
CompilationJobArn: string | undefined;
|
|
@@ -1454,14 +1574,18 @@ export interface CompilationJobSummary {
|
|
|
1454
1574
|
LastModifiedTime?: Date;
|
|
1455
1575
|
CompilationJobStatus: CompilationJobStatus | string | undefined;
|
|
1456
1576
|
}
|
|
1457
|
-
export declare
|
|
1458
|
-
DISABLED
|
|
1459
|
-
ENABLED
|
|
1460
|
-
}
|
|
1461
|
-
export
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1577
|
+
export declare const CompleteOnConvergence: {
|
|
1578
|
+
readonly DISABLED: "Disabled";
|
|
1579
|
+
readonly ENABLED: "Enabled";
|
|
1580
|
+
};
|
|
1581
|
+
export type CompleteOnConvergence =
|
|
1582
|
+
(typeof CompleteOnConvergence)[keyof typeof CompleteOnConvergence];
|
|
1583
|
+
export declare const ConditionOutcome: {
|
|
1584
|
+
readonly FALSE: "False";
|
|
1585
|
+
readonly TRUE: "True";
|
|
1586
|
+
};
|
|
1587
|
+
export type ConditionOutcome =
|
|
1588
|
+
(typeof ConditionOutcome)[keyof typeof ConditionOutcome];
|
|
1465
1589
|
export interface ConditionStepMetadata {
|
|
1466
1590
|
Outcome?: ConditionOutcome | string;
|
|
1467
1591
|
}
|
|
@@ -1471,10 +1595,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
1471
1595
|
Message?: string;
|
|
1472
1596
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1473
1597
|
}
|
|
1474
|
-
export declare
|
|
1475
|
-
PLATFORM
|
|
1476
|
-
VPC
|
|
1477
|
-
}
|
|
1598
|
+
export declare const RepositoryAccessMode: {
|
|
1599
|
+
readonly PLATFORM: "Platform";
|
|
1600
|
+
readonly VPC: "Vpc";
|
|
1601
|
+
};
|
|
1602
|
+
export type RepositoryAccessMode =
|
|
1603
|
+
(typeof RepositoryAccessMode)[keyof typeof RepositoryAccessMode];
|
|
1478
1604
|
export interface RepositoryAuthConfig {
|
|
1479
1605
|
RepositoryCredentialsProviderArn: string | undefined;
|
|
1480
1606
|
}
|
|
@@ -1482,14 +1608,17 @@ export interface ImageConfig {
|
|
|
1482
1608
|
RepositoryAccessMode: RepositoryAccessMode | string | undefined;
|
|
1483
1609
|
RepositoryAuthConfig?: RepositoryAuthConfig;
|
|
1484
1610
|
}
|
|
1485
|
-
export declare
|
|
1486
|
-
MULTI_MODEL
|
|
1487
|
-
SINGLE_MODEL
|
|
1488
|
-
}
|
|
1489
|
-
export
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1611
|
+
export declare const ContainerMode: {
|
|
1612
|
+
readonly MULTI_MODEL: "MultiModel";
|
|
1613
|
+
readonly SINGLE_MODEL: "SingleModel";
|
|
1614
|
+
};
|
|
1615
|
+
export type ContainerMode = (typeof ContainerMode)[keyof typeof ContainerMode];
|
|
1616
|
+
export declare const ModelCacheSetting: {
|
|
1617
|
+
readonly DISABLED: "Disabled";
|
|
1618
|
+
readonly ENABLED: "Enabled";
|
|
1619
|
+
};
|
|
1620
|
+
export type ModelCacheSetting =
|
|
1621
|
+
(typeof ModelCacheSetting)[keyof typeof ModelCacheSetting];
|
|
1493
1622
|
export interface MultiModelConfig {
|
|
1494
1623
|
ModelCacheSetting?: ModelCacheSetting | string;
|
|
1495
1624
|
}
|
|
@@ -1504,10 +1633,12 @@ export interface ContainerDefinition {
|
|
|
1504
1633
|
InferenceSpecificationName?: string;
|
|
1505
1634
|
MultiModelConfig?: MultiModelConfig;
|
|
1506
1635
|
}
|
|
1507
|
-
export declare
|
|
1508
|
-
FREE_OF_ADULT_CONTENT
|
|
1509
|
-
FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION
|
|
1510
|
-
}
|
|
1636
|
+
export declare const ContentClassifier: {
|
|
1637
|
+
readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
|
|
1638
|
+
readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation";
|
|
1639
|
+
};
|
|
1640
|
+
export type ContentClassifier =
|
|
1641
|
+
(typeof ContentClassifier)[keyof typeof ContentClassifier];
|
|
1511
1642
|
export interface ContextSource {
|
|
1512
1643
|
SourceUri: string | undefined;
|
|
1513
1644
|
SourceType?: string;
|
|
@@ -1521,12 +1652,14 @@ export interface ContextSummary {
|
|
|
1521
1652
|
CreationTime?: Date;
|
|
1522
1653
|
LastModifiedTime?: Date;
|
|
1523
1654
|
}
|
|
1524
|
-
export declare
|
|
1525
|
-
AUTO
|
|
1526
|
-
LINEAR
|
|
1527
|
-
LOGARITHMIC
|
|
1528
|
-
REVERSE_LOGARITHMIC
|
|
1529
|
-
}
|
|
1655
|
+
export declare const HyperParameterScalingType: {
|
|
1656
|
+
readonly AUTO: "Auto";
|
|
1657
|
+
readonly LINEAR: "Linear";
|
|
1658
|
+
readonly LOGARITHMIC: "Logarithmic";
|
|
1659
|
+
readonly REVERSE_LOGARITHMIC: "ReverseLogarithmic";
|
|
1660
|
+
};
|
|
1661
|
+
export type HyperParameterScalingType =
|
|
1662
|
+
(typeof HyperParameterScalingType)[keyof typeof HyperParameterScalingType];
|
|
1530
1663
|
export interface ContinuousParameterRange {
|
|
1531
1664
|
Name: string | undefined;
|
|
1532
1665
|
MinValue: string | undefined;
|
|
@@ -1568,12 +1701,13 @@ export interface ParameterRange {
|
|
|
1568
1701
|
ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification;
|
|
1569
1702
|
CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification;
|
|
1570
1703
|
}
|
|
1571
|
-
export declare
|
|
1572
|
-
CATEGORICAL
|
|
1573
|
-
CONTINUOUS
|
|
1574
|
-
FREE_TEXT
|
|
1575
|
-
INTEGER
|
|
1576
|
-
}
|
|
1704
|
+
export declare const ParameterType: {
|
|
1705
|
+
readonly CATEGORICAL: "Categorical";
|
|
1706
|
+
readonly CONTINUOUS: "Continuous";
|
|
1707
|
+
readonly FREE_TEXT: "FreeText";
|
|
1708
|
+
readonly INTEGER: "Integer";
|
|
1709
|
+
};
|
|
1710
|
+
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
1577
1711
|
export interface HyperParameterSpecification {
|
|
1578
1712
|
Name: string | undefined;
|
|
1579
1713
|
Description?: string;
|
|
@@ -1583,10 +1717,12 @@ export interface HyperParameterSpecification {
|
|
|
1583
1717
|
IsRequired?: boolean;
|
|
1584
1718
|
DefaultValue?: string;
|
|
1585
1719
|
}
|
|
1586
|
-
export declare
|
|
1587
|
-
MAXIMIZE
|
|
1588
|
-
MINIMIZE
|
|
1589
|
-
}
|
|
1720
|
+
export declare const HyperParameterTuningJobObjectiveType: {
|
|
1721
|
+
readonly MAXIMIZE: "Maximize";
|
|
1722
|
+
readonly MINIMIZE: "Minimize";
|
|
1723
|
+
};
|
|
1724
|
+
export type HyperParameterTuningJobObjectiveType =
|
|
1725
|
+
(typeof HyperParameterTuningJobObjectiveType)[keyof typeof HyperParameterTuningJobObjectiveType];
|
|
1590
1726
|
export interface HyperParameterTuningJobObjective {
|
|
1591
1727
|
Type: HyperParameterTuningJobObjectiveType | string | undefined;
|
|
1592
1728
|
MetricName: string | undefined;
|
|
@@ -1660,11 +1796,12 @@ export interface ModelDeployConfig {
|
|
|
1660
1796
|
AutoGenerateEndpointName?: boolean;
|
|
1661
1797
|
EndpointName?: string;
|
|
1662
1798
|
}
|
|
1663
|
-
export declare
|
|
1664
|
-
BINARY_CLASSIFICATION
|
|
1665
|
-
MULTICLASS_CLASSIFICATION
|
|
1666
|
-
REGRESSION
|
|
1667
|
-
}
|
|
1799
|
+
export declare const ProblemType: {
|
|
1800
|
+
readonly BINARY_CLASSIFICATION: "BinaryClassification";
|
|
1801
|
+
readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
|
|
1802
|
+
readonly REGRESSION: "Regression";
|
|
1803
|
+
};
|
|
1804
|
+
export type ProblemType = (typeof ProblemType)[keyof typeof ProblemType];
|
|
1668
1805
|
export interface CreateAutoMLJobRequest {
|
|
1669
1806
|
AutoMLJobName: string | undefined;
|
|
1670
1807
|
InputDataConfig: AutoMLChannel[] | undefined;
|
|
@@ -1703,17 +1840,18 @@ export interface CreateCodeRepositoryInput {
|
|
|
1703
1840
|
export interface CreateCodeRepositoryOutput {
|
|
1704
1841
|
CodeRepositoryArn: string | undefined;
|
|
1705
1842
|
}
|
|
1706
|
-
export declare
|
|
1707
|
-
DARKNET
|
|
1708
|
-
KERAS
|
|
1709
|
-
MXNET
|
|
1710
|
-
ONNX
|
|
1711
|
-
PYTORCH
|
|
1712
|
-
SKLEARN
|
|
1713
|
-
TENSORFLOW
|
|
1714
|
-
TFLITE
|
|
1715
|
-
XGBOOST
|
|
1716
|
-
}
|
|
1843
|
+
export declare const Framework: {
|
|
1844
|
+
readonly DARKNET: "DARKNET";
|
|
1845
|
+
readonly KERAS: "KERAS";
|
|
1846
|
+
readonly MXNET: "MXNET";
|
|
1847
|
+
readonly ONNX: "ONNX";
|
|
1848
|
+
readonly PYTORCH: "PYTORCH";
|
|
1849
|
+
readonly SKLEARN: "SKLEARN";
|
|
1850
|
+
readonly TENSORFLOW: "TENSORFLOW";
|
|
1851
|
+
readonly TFLITE: "TFLITE";
|
|
1852
|
+
readonly XGBOOST: "XGBOOST";
|
|
1853
|
+
};
|
|
1854
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
1717
1855
|
export interface InputConfig {
|
|
1718
1856
|
S3Uri: string | undefined;
|
|
1719
1857
|
DataInputConfig: string | undefined;
|
|
@@ -1795,10 +1933,12 @@ export interface DataQualityJobInput {
|
|
|
1795
1933
|
EndpointInput?: EndpointInput;
|
|
1796
1934
|
BatchTransformInput?: BatchTransformInput;
|
|
1797
1935
|
}
|
|
1798
|
-
export declare
|
|
1799
|
-
CONTINUOUS
|
|
1800
|
-
END_OF_JOB
|
|
1801
|
-
}
|
|
1936
|
+
export declare const ProcessingS3UploadMode: {
|
|
1937
|
+
readonly CONTINUOUS: "Continuous";
|
|
1938
|
+
readonly END_OF_JOB: "EndOfJob";
|
|
1939
|
+
};
|
|
1940
|
+
export type ProcessingS3UploadMode =
|
|
1941
|
+
(typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
|
|
1802
1942
|
export interface MonitoringS3Output {
|
|
1803
1943
|
S3Uri: string | undefined;
|
|
1804
1944
|
LocalPath: string | undefined;
|
|
@@ -1811,52 +1951,54 @@ export interface MonitoringOutputConfig {
|
|
|
1811
1951
|
MonitoringOutputs: MonitoringOutput[] | undefined;
|
|
1812
1952
|
KmsKeyId?: string;
|
|
1813
1953
|
}
|
|
1814
|
-
export declare
|
|
1815
|
-
ML_C4_2XLARGE
|
|
1816
|
-
ML_C4_4XLARGE
|
|
1817
|
-
ML_C4_8XLARGE
|
|
1818
|
-
ML_C4_XLARGE
|
|
1819
|
-
ML_C5_18XLARGE
|
|
1820
|
-
ML_C5_2XLARGE
|
|
1821
|
-
ML_C5_4XLARGE
|
|
1822
|
-
ML_C5_9XLARGE
|
|
1823
|
-
ML_C5_XLARGE
|
|
1824
|
-
ML_G4DN_12XLARGE
|
|
1825
|
-
ML_G4DN_16XLARGE
|
|
1826
|
-
ML_G4DN_2XLARGE
|
|
1827
|
-
ML_G4DN_4XLARGE
|
|
1828
|
-
ML_G4DN_8XLARGE
|
|
1829
|
-
ML_G4DN_XLARGE
|
|
1830
|
-
ML_M4_10XLARGE
|
|
1831
|
-
ML_M4_16XLARGE
|
|
1832
|
-
ML_M4_2XLARGE
|
|
1833
|
-
ML_M4_4XLARGE
|
|
1834
|
-
ML_M4_XLARGE
|
|
1835
|
-
ML_M5_12XLARGE
|
|
1836
|
-
ML_M5_24XLARGE
|
|
1837
|
-
ML_M5_2XLARGE
|
|
1838
|
-
ML_M5_4XLARGE
|
|
1839
|
-
ML_M5_LARGE
|
|
1840
|
-
ML_M5_XLARGE
|
|
1841
|
-
ML_P2_16XLARGE
|
|
1842
|
-
ML_P2_8XLARGE
|
|
1843
|
-
ML_P2_XLARGE
|
|
1844
|
-
ML_P3_16XLARGE
|
|
1845
|
-
ML_P3_2XLARGE
|
|
1846
|
-
ML_P3_8XLARGE
|
|
1847
|
-
ML_R5_12XLARGE
|
|
1848
|
-
ML_R5_16XLARGE
|
|
1849
|
-
ML_R5_24XLARGE
|
|
1850
|
-
ML_R5_2XLARGE
|
|
1851
|
-
ML_R5_4XLARGE
|
|
1852
|
-
ML_R5_8XLARGE
|
|
1853
|
-
ML_R5_LARGE
|
|
1854
|
-
ML_R5_XLARGE
|
|
1855
|
-
ML_T3_2XLARGE
|
|
1856
|
-
ML_T3_LARGE
|
|
1857
|
-
ML_T3_MEDIUM
|
|
1858
|
-
ML_T3_XLARGE
|
|
1859
|
-
}
|
|
1954
|
+
export declare const ProcessingInstanceType: {
|
|
1955
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
1956
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
1957
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
1958
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
1959
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
1960
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
1961
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
1962
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
1963
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
1964
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
1965
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
1966
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
1967
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
1968
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
1969
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
1970
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
1971
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
1972
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
1973
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
1974
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
1975
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
1976
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
1977
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
1978
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
1979
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
1980
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
1981
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
1982
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
1983
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
1984
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
1985
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
1986
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
1987
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
1988
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
1989
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
1990
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
1991
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
1992
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
1993
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
1994
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
1995
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
1996
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
1997
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
1998
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
1999
|
+
};
|
|
2000
|
+
export type ProcessingInstanceType =
|
|
2001
|
+
(typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
|
|
1860
2002
|
export interface MonitoringClusterConfig {
|
|
1861
2003
|
InstanceCount: number | undefined;
|
|
1862
2004
|
InstanceType: ProcessingInstanceType | string | undefined;
|
|
@@ -1889,9 +2031,11 @@ export interface CreateDataQualityJobDefinitionRequest {
|
|
|
1889
2031
|
export interface CreateDataQualityJobDefinitionResponse {
|
|
1890
2032
|
JobDefinitionArn: string | undefined;
|
|
1891
2033
|
}
|
|
1892
|
-
export declare
|
|
1893
|
-
GreengrassV2Component
|
|
1894
|
-
}
|
|
2034
|
+
export declare const EdgePresetDeploymentType: {
|
|
2035
|
+
readonly GreengrassV2Component: "GreengrassV2Component";
|
|
2036
|
+
};
|
|
2037
|
+
export type EdgePresetDeploymentType =
|
|
2038
|
+
(typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
|
|
1895
2039
|
export interface EdgeOutputConfig {
|
|
1896
2040
|
S3OutputLocation: string | undefined;
|
|
1897
2041
|
KmsKeyId?: string;
|
|
@@ -1931,22 +2075,28 @@ export interface RSessionAppSettings {
|
|
|
1931
2075
|
DefaultResourceSpec?: ResourceSpec;
|
|
1932
2076
|
CustomImages?: CustomImage[];
|
|
1933
2077
|
}
|
|
1934
|
-
export declare
|
|
1935
|
-
Disabled
|
|
1936
|
-
Enabled
|
|
1937
|
-
}
|
|
1938
|
-
export
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
2078
|
+
export declare const RStudioServerProAccessStatus: {
|
|
2079
|
+
readonly Disabled: "DISABLED";
|
|
2080
|
+
readonly Enabled: "ENABLED";
|
|
2081
|
+
};
|
|
2082
|
+
export type RStudioServerProAccessStatus =
|
|
2083
|
+
(typeof RStudioServerProAccessStatus)[keyof typeof RStudioServerProAccessStatus];
|
|
2084
|
+
export declare const RStudioServerProUserGroup: {
|
|
2085
|
+
readonly Admin: "R_STUDIO_ADMIN";
|
|
2086
|
+
readonly User: "R_STUDIO_USER";
|
|
2087
|
+
};
|
|
2088
|
+
export type RStudioServerProUserGroup =
|
|
2089
|
+
(typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
|
|
1942
2090
|
export interface RStudioServerProAppSettings {
|
|
1943
2091
|
AccessStatus?: RStudioServerProAccessStatus | string;
|
|
1944
2092
|
UserGroup?: RStudioServerProUserGroup | string;
|
|
1945
2093
|
}
|
|
1946
|
-
export declare
|
|
1947
|
-
Allowed
|
|
1948
|
-
Disabled
|
|
1949
|
-
}
|
|
2094
|
+
export declare const NotebookOutputOption: {
|
|
2095
|
+
readonly Allowed: "Allowed";
|
|
2096
|
+
readonly Disabled: "Disabled";
|
|
2097
|
+
};
|
|
2098
|
+
export type NotebookOutputOption =
|
|
2099
|
+
(typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
|
|
1950
2100
|
export interface SharingSettings {
|
|
1951
2101
|
NotebookOutputOption?: NotebookOutputOption | string;
|
|
1952
2102
|
S3OutputPath?: string;
|
|
@@ -1966,10 +2116,12 @@ export interface UserSettings {
|
|
|
1966
2116
|
RSessionAppSettings?: RSessionAppSettings;
|
|
1967
2117
|
CanvasAppSettings?: CanvasAppSettings;
|
|
1968
2118
|
}
|
|
1969
|
-
export declare
|
|
1970
|
-
DISABLED
|
|
1971
|
-
USER_PROFILE_NAME
|
|
1972
|
-
}
|
|
2119
|
+
export declare const ExecutionRoleIdentityConfig: {
|
|
2120
|
+
readonly DISABLED: "DISABLED";
|
|
2121
|
+
readonly USER_PROFILE_NAME: "USER_PROFILE_NAME";
|
|
2122
|
+
};
|
|
2123
|
+
export type ExecutionRoleIdentityConfig =
|
|
2124
|
+
(typeof ExecutionRoleIdentityConfig)[keyof typeof ExecutionRoleIdentityConfig];
|
|
1973
2125
|
export interface RStudioServerProDomainSettings {
|
|
1974
2126
|
DomainExecutionRoleArn: string | undefined;
|
|
1975
2127
|
RStudioConnectUrl?: string;
|
|
@@ -2003,18 +2155,22 @@ export interface EdgeDeploymentModelConfig {
|
|
|
2003
2155
|
ModelHandle: string | undefined;
|
|
2004
2156
|
EdgePackagingJobName: string | undefined;
|
|
2005
2157
|
}
|
|
2006
|
-
export declare
|
|
2007
|
-
DoNothing
|
|
2008
|
-
RollbackOnFailure
|
|
2009
|
-
}
|
|
2158
|
+
export declare const FailureHandlingPolicy: {
|
|
2159
|
+
readonly DoNothing: "DO_NOTHING";
|
|
2160
|
+
readonly RollbackOnFailure: "ROLLBACK_ON_FAILURE";
|
|
2161
|
+
};
|
|
2162
|
+
export type FailureHandlingPolicy =
|
|
2163
|
+
(typeof FailureHandlingPolicy)[keyof typeof FailureHandlingPolicy];
|
|
2010
2164
|
export interface EdgeDeploymentConfig {
|
|
2011
2165
|
FailureHandlingPolicy: FailureHandlingPolicy | string | undefined;
|
|
2012
2166
|
}
|
|
2013
|
-
export declare
|
|
2014
|
-
NameContains
|
|
2015
|
-
Percentage
|
|
2016
|
-
Selection
|
|
2017
|
-
}
|
|
2167
|
+
export declare const DeviceSubsetType: {
|
|
2168
|
+
readonly NameContains: "NAMECONTAINS";
|
|
2169
|
+
readonly Percentage: "PERCENTAGE";
|
|
2170
|
+
readonly Selection: "SELECTION";
|
|
2171
|
+
};
|
|
2172
|
+
export type DeviceSubsetType =
|
|
2173
|
+
(typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
|
|
2018
2174
|
export interface DeviceSelectionConfig {
|
|
2019
2175
|
DeviceSubsetType: DeviceSubsetType | string | undefined;
|
|
2020
2176
|
Percentage?: number;
|