@aws-sdk/client-sagemaker 3.301.0 → 3.306.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 +876 -960
- 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-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/models/models_0.js +874 -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-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SageMaker.d.ts +3 -9
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1379 -966
- package/dist-types/models/models_1.d.ts +429 -245
- package/dist-types/models/models_2.d.ts +693 -464
- package/dist-types/models/models_3.d.ts +550 -248
- package/dist-types/models/models_4.d.ts +26 -9
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
- package/dist-types/ts3.4/models/models_1.d.ts +292 -230
- package/dist-types/ts3.4/models/models_2.d.ts +504 -415
- package/dist-types/ts3.4/models/models_3.d.ts +341 -238
- package/dist-types/ts3.4/models/models_4.d.ts +13 -6
- 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;
|
|
@@ -711,31 +756,43 @@ export interface AssociationSummary {
|
|
|
711
756
|
export interface AsyncInferenceClientConfig {
|
|
712
757
|
MaxConcurrentInvocationsPerInstance?: number;
|
|
713
758
|
}
|
|
759
|
+
export declare const AsyncNotificationTopicTypes: {
|
|
760
|
+
readonly ERROR_NOTIFICATION_TOPIC: "ERROR_NOTIFICATION_TOPIC";
|
|
761
|
+
readonly SUCCESS_NOTIFICATION_TOPIC: "SUCCESS_NOTIFICATION_TOPIC";
|
|
762
|
+
};
|
|
763
|
+
export type AsyncNotificationTopicTypes =
|
|
764
|
+
(typeof AsyncNotificationTopicTypes)[keyof typeof AsyncNotificationTopicTypes];
|
|
714
765
|
export interface AsyncInferenceNotificationConfig {
|
|
715
766
|
SuccessTopic?: string;
|
|
716
767
|
ErrorTopic?: string;
|
|
768
|
+
IncludeInferenceResponseIn?: (AsyncNotificationTopicTypes | string)[];
|
|
717
769
|
}
|
|
718
770
|
export interface AsyncInferenceOutputConfig {
|
|
719
771
|
KmsKeyId?: string;
|
|
720
|
-
S3OutputPath
|
|
772
|
+
S3OutputPath?: string;
|
|
721
773
|
NotificationConfig?: AsyncInferenceNotificationConfig;
|
|
774
|
+
S3FailurePath?: string;
|
|
722
775
|
}
|
|
723
776
|
export interface AsyncInferenceConfig {
|
|
724
777
|
ClientConfig?: AsyncInferenceClientConfig;
|
|
725
778
|
OutputConfig: AsyncInferenceOutputConfig | undefined;
|
|
726
779
|
}
|
|
727
|
-
export declare
|
|
728
|
-
GZIP
|
|
729
|
-
SNAPPY
|
|
730
|
-
ZLIB
|
|
731
|
-
}
|
|
732
|
-
export
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
780
|
+
export declare const AthenaResultCompressionType: {
|
|
781
|
+
readonly GZIP: "GZIP";
|
|
782
|
+
readonly SNAPPY: "SNAPPY";
|
|
783
|
+
readonly ZLIB: "ZLIB";
|
|
784
|
+
};
|
|
785
|
+
export type AthenaResultCompressionType =
|
|
786
|
+
(typeof AthenaResultCompressionType)[keyof typeof AthenaResultCompressionType];
|
|
787
|
+
export declare const AthenaResultFormat: {
|
|
788
|
+
readonly AVRO: "AVRO";
|
|
789
|
+
readonly JSON: "JSON";
|
|
790
|
+
readonly ORC: "ORC";
|
|
791
|
+
readonly PARQUET: "PARQUET";
|
|
792
|
+
readonly TEXTFILE: "TEXTFILE";
|
|
793
|
+
};
|
|
794
|
+
export type AthenaResultFormat =
|
|
795
|
+
(typeof AthenaResultFormat)[keyof typeof AthenaResultFormat];
|
|
739
796
|
export interface AthenaDatasetDefinition {
|
|
740
797
|
Catalog: string | undefined;
|
|
741
798
|
Database: string | undefined;
|
|
@@ -746,21 +803,24 @@ export interface AthenaDatasetDefinition {
|
|
|
746
803
|
OutputFormat: AthenaResultFormat | string | undefined;
|
|
747
804
|
OutputCompression?: AthenaResultCompressionType | string;
|
|
748
805
|
}
|
|
749
|
-
export declare
|
|
750
|
-
IAM
|
|
751
|
-
SSO
|
|
752
|
-
}
|
|
753
|
-
export
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
806
|
+
export declare const AuthMode: {
|
|
807
|
+
readonly IAM: "IAM";
|
|
808
|
+
readonly SSO: "SSO";
|
|
809
|
+
};
|
|
810
|
+
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
811
|
+
export declare const AutoMLAlgorithm: {
|
|
812
|
+
readonly CATBOOST: "catboost";
|
|
813
|
+
readonly EXTRA_TREES: "extra-trees";
|
|
814
|
+
readonly FASTAI: "fastai";
|
|
815
|
+
readonly LIGHTGBM: "lightgbm";
|
|
816
|
+
readonly LINEAR_LEARNER: "linear-learner";
|
|
817
|
+
readonly MLP: "mlp";
|
|
818
|
+
readonly NN_TORCH: "nn-torch";
|
|
819
|
+
readonly RANDOMFOREST: "randomforest";
|
|
820
|
+
readonly XGBOOST: "xgboost";
|
|
821
|
+
};
|
|
822
|
+
export type AutoMLAlgorithm =
|
|
823
|
+
(typeof AutoMLAlgorithm)[keyof typeof AutoMLAlgorithm];
|
|
764
824
|
export interface AutoMLAlgorithmConfig {
|
|
765
825
|
AutoMLAlgorithms: (AutoMLAlgorithm | string)[] | undefined;
|
|
766
826
|
}
|
|
@@ -768,43 +828,49 @@ export interface CandidateArtifactLocations {
|
|
|
768
828
|
Explainability: string | undefined;
|
|
769
829
|
ModelInsights?: string;
|
|
770
830
|
}
|
|
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
|
-
|
|
831
|
+
export declare const AutoMLMetricEnum: {
|
|
832
|
+
readonly ACCURACY: "Accuracy";
|
|
833
|
+
readonly AUC: "AUC";
|
|
834
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
835
|
+
readonly F1: "F1";
|
|
836
|
+
readonly F1_MACRO: "F1macro";
|
|
837
|
+
readonly MAE: "MAE";
|
|
838
|
+
readonly MSE: "MSE";
|
|
839
|
+
readonly PRECISION: "Precision";
|
|
840
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
841
|
+
readonly R2: "R2";
|
|
842
|
+
readonly RECALL: "Recall";
|
|
843
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
844
|
+
readonly RMSE: "RMSE";
|
|
845
|
+
};
|
|
846
|
+
export type AutoMLMetricEnum =
|
|
847
|
+
(typeof AutoMLMetricEnum)[keyof typeof AutoMLMetricEnum];
|
|
848
|
+
export declare const MetricSetSource: {
|
|
849
|
+
readonly TEST: "Test";
|
|
850
|
+
readonly TRAIN: "Train";
|
|
851
|
+
readonly VALIDATION: "Validation";
|
|
852
|
+
};
|
|
853
|
+
export type MetricSetSource =
|
|
854
|
+
(typeof MetricSetSource)[keyof typeof MetricSetSource];
|
|
855
|
+
export declare const AutoMLMetricExtendedEnum: {
|
|
856
|
+
readonly ACCURACY: "Accuracy";
|
|
857
|
+
readonly AUC: "AUC";
|
|
858
|
+
readonly BALANCED_ACCURACY: "BalancedAccuracy";
|
|
859
|
+
readonly F1: "F1";
|
|
860
|
+
readonly F1_MACRO: "F1macro";
|
|
861
|
+
readonly INFERENCE_LATENCY: "InferenceLatency";
|
|
862
|
+
readonly LogLoss: "LogLoss";
|
|
863
|
+
readonly MAE: "MAE";
|
|
864
|
+
readonly MSE: "MSE";
|
|
865
|
+
readonly PRECISION: "Precision";
|
|
866
|
+
readonly PRECISION_MACRO: "PrecisionMacro";
|
|
867
|
+
readonly R2: "R2";
|
|
868
|
+
readonly RECALL: "Recall";
|
|
869
|
+
readonly RECALL_MACRO: "RecallMacro";
|
|
870
|
+
readonly RMSE: "RMSE";
|
|
871
|
+
};
|
|
872
|
+
export type AutoMLMetricExtendedEnum =
|
|
873
|
+
(typeof AutoMLMetricExtendedEnum)[keyof typeof AutoMLMetricExtendedEnum];
|
|
808
874
|
export interface MetricDatum {
|
|
809
875
|
MetricName?: AutoMLMetricEnum | string;
|
|
810
876
|
Value?: number;
|
|
@@ -815,47 +881,57 @@ export interface CandidateProperties {
|
|
|
815
881
|
CandidateArtifactLocations?: CandidateArtifactLocations;
|
|
816
882
|
CandidateMetrics?: MetricDatum[];
|
|
817
883
|
}
|
|
818
|
-
export declare
|
|
819
|
-
COMPLETED
|
|
820
|
-
FAILED
|
|
821
|
-
IN_PROGRESS
|
|
822
|
-
STOPPED
|
|
823
|
-
STOPPING
|
|
824
|
-
}
|
|
825
|
-
export
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
884
|
+
export declare const CandidateStatus: {
|
|
885
|
+
readonly COMPLETED: "Completed";
|
|
886
|
+
readonly FAILED: "Failed";
|
|
887
|
+
readonly IN_PROGRESS: "InProgress";
|
|
888
|
+
readonly STOPPED: "Stopped";
|
|
889
|
+
readonly STOPPING: "Stopping";
|
|
890
|
+
};
|
|
891
|
+
export type CandidateStatus =
|
|
892
|
+
(typeof CandidateStatus)[keyof typeof CandidateStatus];
|
|
893
|
+
export declare const CandidateStepType: {
|
|
894
|
+
readonly PROCESSING: "AWS::SageMaker::ProcessingJob";
|
|
895
|
+
readonly TRAINING: "AWS::SageMaker::TrainingJob";
|
|
896
|
+
readonly TRANSFORM: "AWS::SageMaker::TransformJob";
|
|
897
|
+
};
|
|
898
|
+
export type CandidateStepType =
|
|
899
|
+
(typeof CandidateStepType)[keyof typeof CandidateStepType];
|
|
830
900
|
export interface AutoMLCandidateStep {
|
|
831
901
|
CandidateStepType: CandidateStepType | string | undefined;
|
|
832
902
|
CandidateStepArn: string | undefined;
|
|
833
903
|
CandidateStepName: string | undefined;
|
|
834
904
|
}
|
|
835
|
-
export declare
|
|
836
|
-
MAXIMIZE
|
|
837
|
-
MINIMIZE
|
|
838
|
-
}
|
|
905
|
+
export declare const AutoMLJobObjectiveType: {
|
|
906
|
+
readonly MAXIMIZE: "Maximize";
|
|
907
|
+
readonly MINIMIZE: "Minimize";
|
|
908
|
+
};
|
|
909
|
+
export type AutoMLJobObjectiveType =
|
|
910
|
+
(typeof AutoMLJobObjectiveType)[keyof typeof AutoMLJobObjectiveType];
|
|
839
911
|
export interface FinalAutoMLJobObjectiveMetric {
|
|
840
912
|
Type?: AutoMLJobObjectiveType | string;
|
|
841
913
|
MetricName: AutoMLMetricEnum | string | undefined;
|
|
842
914
|
Value: number | undefined;
|
|
843
915
|
StandardMetricName?: AutoMLMetricEnum | string;
|
|
844
916
|
}
|
|
845
|
-
export declare
|
|
846
|
-
CPU
|
|
847
|
-
GPU
|
|
848
|
-
}
|
|
917
|
+
export declare const AutoMLProcessingUnit: {
|
|
918
|
+
readonly CPU: "CPU";
|
|
919
|
+
readonly GPU: "GPU";
|
|
920
|
+
};
|
|
921
|
+
export type AutoMLProcessingUnit =
|
|
922
|
+
(typeof AutoMLProcessingUnit)[keyof typeof AutoMLProcessingUnit];
|
|
849
923
|
export interface AutoMLContainerDefinition {
|
|
850
924
|
Image: string | undefined;
|
|
851
925
|
ModelDataUrl: string | undefined;
|
|
852
926
|
Environment?: Record<string, string>;
|
|
853
927
|
}
|
|
854
|
-
export declare
|
|
855
|
-
Failed
|
|
856
|
-
Pending
|
|
857
|
-
Succeeded
|
|
858
|
-
}
|
|
928
|
+
export declare const ObjectiveStatus: {
|
|
929
|
+
readonly Failed: "Failed";
|
|
930
|
+
readonly Pending: "Pending";
|
|
931
|
+
readonly Succeeded: "Succeeded";
|
|
932
|
+
};
|
|
933
|
+
export type ObjectiveStatus =
|
|
934
|
+
(typeof ObjectiveStatus)[keyof typeof ObjectiveStatus];
|
|
859
935
|
export interface AutoMLCandidate {
|
|
860
936
|
CandidateName: string | undefined;
|
|
861
937
|
FinalAutoMLJobObjectiveMetric?: FinalAutoMLJobObjectiveMetric;
|
|
@@ -874,15 +950,19 @@ export interface AutoMLCandidateGenerationConfig {
|
|
|
874
950
|
FeatureSpecificationS3Uri?: string;
|
|
875
951
|
AlgorithmsConfig?: AutoMLAlgorithmConfig[];
|
|
876
952
|
}
|
|
877
|
-
export declare
|
|
878
|
-
TRAINING
|
|
879
|
-
VALIDATION
|
|
880
|
-
}
|
|
881
|
-
export
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
953
|
+
export declare const AutoMLChannelType: {
|
|
954
|
+
readonly TRAINING: "training";
|
|
955
|
+
readonly VALIDATION: "validation";
|
|
956
|
+
};
|
|
957
|
+
export type AutoMLChannelType =
|
|
958
|
+
(typeof AutoMLChannelType)[keyof typeof AutoMLChannelType];
|
|
959
|
+
export declare const AutoMLS3DataType: {
|
|
960
|
+
readonly AUGMENTED_MANIFEST_FILE: "AugmentedManifestFile";
|
|
961
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
962
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
963
|
+
};
|
|
964
|
+
export type AutoMLS3DataType =
|
|
965
|
+
(typeof AutoMLS3DataType)[keyof typeof AutoMLS3DataType];
|
|
886
966
|
export interface AutoMLS3DataSource {
|
|
887
967
|
S3DataType: AutoMLS3DataType | string | undefined;
|
|
888
968
|
S3Uri: string | undefined;
|
|
@@ -915,11 +995,12 @@ export interface AutoMLJobCompletionCriteria {
|
|
|
915
995
|
MaxRuntimePerTrainingJobInSeconds?: number;
|
|
916
996
|
MaxAutoMLJobRuntimeInSeconds?: number;
|
|
917
997
|
}
|
|
918
|
-
export declare
|
|
919
|
-
AUTO
|
|
920
|
-
ENSEMBLING
|
|
921
|
-
HYPERPARAMETER_TUNING
|
|
922
|
-
}
|
|
998
|
+
export declare const AutoMLMode: {
|
|
999
|
+
readonly AUTO: "AUTO";
|
|
1000
|
+
readonly ENSEMBLING: "ENSEMBLING";
|
|
1001
|
+
readonly HYPERPARAMETER_TUNING: "HYPERPARAMETER_TUNING";
|
|
1002
|
+
};
|
|
1003
|
+
export type AutoMLMode = (typeof AutoMLMode)[keyof typeof AutoMLMode];
|
|
923
1004
|
export interface VpcConfig {
|
|
924
1005
|
SecurityGroupIds: string[] | undefined;
|
|
925
1006
|
Subnets: string[] | undefined;
|
|
@@ -939,33 +1020,37 @@ export interface AutoMLJobConfig {
|
|
|
939
1020
|
export interface AutoMLJobObjective {
|
|
940
1021
|
MetricName: AutoMLMetricEnum | string | undefined;
|
|
941
1022
|
}
|
|
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
|
-
|
|
1023
|
+
export declare const AutoMLJobSecondaryStatus: {
|
|
1024
|
+
readonly ANALYZING_DATA: "AnalyzingData";
|
|
1025
|
+
readonly CANDIDATE_DEFINITIONS_GENERATED: "CandidateDefinitionsGenerated";
|
|
1026
|
+
readonly COMPLETED: "Completed";
|
|
1027
|
+
readonly DEPLOYING_MODEL: "DeployingModel";
|
|
1028
|
+
readonly EXPLAINABILITY_ERROR: "ExplainabilityError";
|
|
1029
|
+
readonly FAILED: "Failed";
|
|
1030
|
+
readonly FEATURE_ENGINEERING: "FeatureEngineering";
|
|
1031
|
+
readonly GENERATING_EXPLAINABILITY_REPORT: "GeneratingExplainabilityReport";
|
|
1032
|
+
readonly GENERATING_MODEL_INSIGHTS_REPORT: "GeneratingModelInsightsReport";
|
|
1033
|
+
readonly MAX_AUTO_ML_JOB_RUNTIME_REACHED: "MaxAutoMLJobRuntimeReached";
|
|
1034
|
+
readonly MAX_CANDIDATES_REACHED: "MaxCandidatesReached";
|
|
1035
|
+
readonly MODEL_DEPLOYMENT_ERROR: "ModelDeploymentError";
|
|
1036
|
+
readonly MODEL_INSIGHTS_ERROR: "ModelInsightsError";
|
|
1037
|
+
readonly MODEL_TUNING: "ModelTuning";
|
|
1038
|
+
readonly STARTING: "Starting";
|
|
1039
|
+
readonly STOPPED: "Stopped";
|
|
1040
|
+
readonly STOPPING: "Stopping";
|
|
1041
|
+
readonly TRAINING_MODELS: "TrainingModels";
|
|
1042
|
+
};
|
|
1043
|
+
export type AutoMLJobSecondaryStatus =
|
|
1044
|
+
(typeof AutoMLJobSecondaryStatus)[keyof typeof AutoMLJobSecondaryStatus];
|
|
1045
|
+
export declare const AutoMLJobStatus: {
|
|
1046
|
+
readonly COMPLETED: "Completed";
|
|
1047
|
+
readonly FAILED: "Failed";
|
|
1048
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1049
|
+
readonly STOPPED: "Stopped";
|
|
1050
|
+
readonly STOPPING: "Stopping";
|
|
1051
|
+
};
|
|
1052
|
+
export type AutoMLJobStatus =
|
|
1053
|
+
(typeof AutoMLJobStatus)[keyof typeof AutoMLJobStatus];
|
|
969
1054
|
export interface AutoMLJobStepMetadata {
|
|
970
1055
|
Arn?: string;
|
|
971
1056
|
}
|
|
@@ -1022,22 +1107,27 @@ export declare namespace AutoMLProblemTypeConfig {
|
|
|
1022
1107
|
}
|
|
1023
1108
|
const visit: <T>(value: AutoMLProblemTypeConfig, visitor: Visitor<T>) => T;
|
|
1024
1109
|
}
|
|
1025
|
-
export declare
|
|
1026
|
-
CREATION_TIME
|
|
1027
|
-
NAME
|
|
1028
|
-
STATUS
|
|
1029
|
-
}
|
|
1030
|
-
export
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1110
|
+
export declare const AutoMLSortBy: {
|
|
1111
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1112
|
+
readonly NAME: "Name";
|
|
1113
|
+
readonly STATUS: "Status";
|
|
1114
|
+
};
|
|
1115
|
+
export type AutoMLSortBy = (typeof AutoMLSortBy)[keyof typeof AutoMLSortBy];
|
|
1116
|
+
export declare const AutoMLSortOrder: {
|
|
1117
|
+
readonly ASCENDING: "Ascending";
|
|
1118
|
+
readonly DESCENDING: "Descending";
|
|
1119
|
+
};
|
|
1120
|
+
export type AutoMLSortOrder =
|
|
1121
|
+
(typeof AutoMLSortOrder)[keyof typeof AutoMLSortOrder];
|
|
1034
1122
|
export interface AutoRollbackConfig {
|
|
1035
1123
|
Alarms?: Alarm[];
|
|
1036
1124
|
}
|
|
1037
|
-
export declare
|
|
1038
|
-
REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3
|
|
1039
|
-
TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1
|
|
1040
|
-
}
|
|
1125
|
+
export declare const AwsManagedHumanLoopRequestSource: {
|
|
1126
|
+
readonly REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3: "AWS/Rekognition/DetectModerationLabels/Image/V3";
|
|
1127
|
+
readonly TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1";
|
|
1128
|
+
};
|
|
1129
|
+
export type AwsManagedHumanLoopRequestSource =
|
|
1130
|
+
(typeof AwsManagedHumanLoopRequestSource)[keyof typeof AwsManagedHumanLoopRequestSource];
|
|
1041
1131
|
export interface BatchDataCaptureConfig {
|
|
1042
1132
|
DestinationS3Uri: string | undefined;
|
|
1043
1133
|
KmsKeyId?: string;
|
|
@@ -1060,18 +1150,22 @@ export interface InferenceSpecification {
|
|
|
1060
1150
|
SupportedContentTypes: string[] | undefined;
|
|
1061
1151
|
SupportedResponseMIMETypes: string[] | undefined;
|
|
1062
1152
|
}
|
|
1063
|
-
export declare
|
|
1064
|
-
APPROVED
|
|
1065
|
-
PENDING_MANUAL_APPROVAL
|
|
1066
|
-
REJECTED
|
|
1067
|
-
}
|
|
1068
|
-
export
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1153
|
+
export declare const ModelApprovalStatus: {
|
|
1154
|
+
readonly APPROVED: "Approved";
|
|
1155
|
+
readonly PENDING_MANUAL_APPROVAL: "PendingManualApproval";
|
|
1156
|
+
readonly REJECTED: "Rejected";
|
|
1157
|
+
};
|
|
1158
|
+
export type ModelApprovalStatus =
|
|
1159
|
+
(typeof ModelApprovalStatus)[keyof typeof ModelApprovalStatus];
|
|
1160
|
+
export declare const ModelPackageStatus: {
|
|
1161
|
+
readonly COMPLETED: "Completed";
|
|
1162
|
+
readonly DELETING: "Deleting";
|
|
1163
|
+
readonly FAILED: "Failed";
|
|
1164
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1165
|
+
readonly PENDING: "Pending";
|
|
1166
|
+
};
|
|
1167
|
+
export type ModelPackageStatus =
|
|
1168
|
+
(typeof ModelPackageStatus)[keyof typeof ModelPackageStatus];
|
|
1075
1169
|
export interface BatchDescribeModelPackageSummary {
|
|
1076
1170
|
ModelPackageGroupName: string | undefined;
|
|
1077
1171
|
ModelPackageVersion?: number;
|
|
@@ -1101,14 +1195,18 @@ export interface MonitoringDatasetFormat {
|
|
|
1101
1195
|
Json?: MonitoringJsonDatasetFormat;
|
|
1102
1196
|
Parquet?: MonitoringParquetDatasetFormat;
|
|
1103
1197
|
}
|
|
1104
|
-
export declare
|
|
1105
|
-
FULLYREPLICATED
|
|
1106
|
-
SHARDEDBYS3KEY
|
|
1107
|
-
}
|
|
1108
|
-
export
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1198
|
+
export declare const ProcessingS3DataDistributionType: {
|
|
1199
|
+
readonly FULLYREPLICATED: "FullyReplicated";
|
|
1200
|
+
readonly SHARDEDBYS3KEY: "ShardedByS3Key";
|
|
1201
|
+
};
|
|
1202
|
+
export type ProcessingS3DataDistributionType =
|
|
1203
|
+
(typeof ProcessingS3DataDistributionType)[keyof typeof ProcessingS3DataDistributionType];
|
|
1204
|
+
export declare const ProcessingS3InputMode: {
|
|
1205
|
+
readonly FILE: "File";
|
|
1206
|
+
readonly PIPE: "Pipe";
|
|
1207
|
+
};
|
|
1208
|
+
export type ProcessingS3InputMode =
|
|
1209
|
+
(typeof ProcessingS3InputMode)[keyof typeof ProcessingS3InputMode];
|
|
1112
1210
|
export interface BatchTransformInput {
|
|
1113
1211
|
DataCapturedDestinationS3Uri: string | undefined;
|
|
1114
1212
|
DatasetFormat: MonitoringDatasetFormat | undefined;
|
|
@@ -1135,19 +1233,23 @@ export interface Bias {
|
|
|
1135
1233
|
PreTrainingReport?: MetricsSource;
|
|
1136
1234
|
PostTrainingReport?: MetricsSource;
|
|
1137
1235
|
}
|
|
1138
|
-
export declare
|
|
1139
|
-
CAPACITY_PERCENT
|
|
1140
|
-
INSTANCE_COUNT
|
|
1141
|
-
}
|
|
1236
|
+
export declare const CapacitySizeType: {
|
|
1237
|
+
readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
|
|
1238
|
+
readonly INSTANCE_COUNT: "INSTANCE_COUNT";
|
|
1239
|
+
};
|
|
1240
|
+
export type CapacitySizeType =
|
|
1241
|
+
(typeof CapacitySizeType)[keyof typeof CapacitySizeType];
|
|
1142
1242
|
export interface CapacitySize {
|
|
1143
1243
|
Type: CapacitySizeType | string | undefined;
|
|
1144
1244
|
Value: number | undefined;
|
|
1145
1245
|
}
|
|
1146
|
-
export declare
|
|
1147
|
-
ALL_AT_ONCE
|
|
1148
|
-
CANARY
|
|
1149
|
-
LINEAR
|
|
1150
|
-
}
|
|
1246
|
+
export declare const TrafficRoutingConfigType: {
|
|
1247
|
+
readonly ALL_AT_ONCE: "ALL_AT_ONCE";
|
|
1248
|
+
readonly CANARY: "CANARY";
|
|
1249
|
+
readonly LINEAR: "LINEAR";
|
|
1250
|
+
};
|
|
1251
|
+
export type TrafficRoutingConfigType =
|
|
1252
|
+
(typeof TrafficRoutingConfigType)[keyof typeof TrafficRoutingConfigType];
|
|
1151
1253
|
export interface TrafficRoutingConfig {
|
|
1152
1254
|
Type: TrafficRoutingConfigType | string | undefined;
|
|
1153
1255
|
WaitIntervalInSeconds: number | undefined;
|
|
@@ -1159,10 +1261,12 @@ export interface BlueGreenUpdatePolicy {
|
|
|
1159
1261
|
TerminationWaitInSeconds?: number;
|
|
1160
1262
|
MaximumExecutionTimeoutInSeconds?: number;
|
|
1161
1263
|
}
|
|
1162
|
-
export declare
|
|
1163
|
-
AND
|
|
1164
|
-
OR
|
|
1165
|
-
}
|
|
1264
|
+
export declare const BooleanOperator: {
|
|
1265
|
+
readonly AND: "And";
|
|
1266
|
+
readonly OR: "Or";
|
|
1267
|
+
};
|
|
1268
|
+
export type BooleanOperator =
|
|
1269
|
+
(typeof BooleanOperator)[keyof typeof BooleanOperator];
|
|
1166
1270
|
export interface CacheHitResult {
|
|
1167
1271
|
SourcePipelineExecutionArn?: string;
|
|
1168
1272
|
}
|
|
@@ -1175,15 +1279,18 @@ export interface CallbackStepMetadata {
|
|
|
1175
1279
|
SqsQueueUrl?: string;
|
|
1176
1280
|
OutputParameters?: OutputParameter[];
|
|
1177
1281
|
}
|
|
1178
|
-
export declare
|
|
1179
|
-
CreationTime
|
|
1180
|
-
FinalObjectiveMetricValue
|
|
1181
|
-
Status
|
|
1182
|
-
}
|
|
1183
|
-
export
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1282
|
+
export declare const CandidateSortBy: {
|
|
1283
|
+
readonly CreationTime: "CreationTime";
|
|
1284
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
1285
|
+
readonly Status: "Status";
|
|
1286
|
+
};
|
|
1287
|
+
export type CandidateSortBy =
|
|
1288
|
+
(typeof CandidateSortBy)[keyof typeof CandidateSortBy];
|
|
1289
|
+
export declare const FeatureStatus: {
|
|
1290
|
+
readonly Disabled: "DISABLED";
|
|
1291
|
+
readonly Enabled: "ENABLED";
|
|
1292
|
+
};
|
|
1293
|
+
export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
|
|
1187
1294
|
export interface TimeSeriesForecastingSettings {
|
|
1188
1295
|
Status?: FeatureStatus | string;
|
|
1189
1296
|
AmazonForecastRoleArn?: string;
|
|
@@ -1195,17 +1302,19 @@ export interface CaptureContentTypeHeader {
|
|
|
1195
1302
|
CsvContentTypes?: string[];
|
|
1196
1303
|
JsonContentTypes?: string[];
|
|
1197
1304
|
}
|
|
1198
|
-
export declare
|
|
1199
|
-
INPUT
|
|
1200
|
-
OUTPUT
|
|
1201
|
-
}
|
|
1305
|
+
export declare const CaptureMode: {
|
|
1306
|
+
readonly INPUT: "Input";
|
|
1307
|
+
readonly OUTPUT: "Output";
|
|
1308
|
+
};
|
|
1309
|
+
export type CaptureMode = (typeof CaptureMode)[keyof typeof CaptureMode];
|
|
1202
1310
|
export interface CaptureOption {
|
|
1203
1311
|
CaptureMode: CaptureMode | string | undefined;
|
|
1204
1312
|
}
|
|
1205
|
-
export declare
|
|
1206
|
-
STARTED
|
|
1207
|
-
STOPPED
|
|
1208
|
-
}
|
|
1313
|
+
export declare const CaptureStatus: {
|
|
1314
|
+
readonly STARTED: "Started";
|
|
1315
|
+
readonly STOPPED: "Stopped";
|
|
1316
|
+
};
|
|
1317
|
+
export type CaptureStatus = (typeof CaptureStatus)[keyof typeof CaptureStatus];
|
|
1209
1318
|
export interface CategoricalParameter {
|
|
1210
1319
|
Name: string | undefined;
|
|
1211
1320
|
Value: string[] | undefined;
|
|
@@ -1239,11 +1348,13 @@ export interface ClarifyCheckStepMetadata {
|
|
|
1239
1348
|
SkipCheck?: boolean;
|
|
1240
1349
|
RegisterNewBaseline?: boolean;
|
|
1241
1350
|
}
|
|
1242
|
-
export declare
|
|
1243
|
-
CATEGORICAL
|
|
1244
|
-
NUMERICAL
|
|
1245
|
-
TEXT
|
|
1246
|
-
}
|
|
1351
|
+
export declare const ClarifyFeatureType: {
|
|
1352
|
+
readonly CATEGORICAL: "categorical";
|
|
1353
|
+
readonly NUMERICAL: "numerical";
|
|
1354
|
+
readonly TEXT: "text";
|
|
1355
|
+
};
|
|
1356
|
+
export type ClarifyFeatureType =
|
|
1357
|
+
(typeof ClarifyFeatureType)[keyof typeof ClarifyFeatureType];
|
|
1247
1358
|
export interface ClarifyInferenceConfig {
|
|
1248
1359
|
FeaturesAttribute?: string;
|
|
1249
1360
|
ContentTemplate?: string;
|
|
@@ -1262,73 +1373,77 @@ export interface ClarifyShapBaselineConfig {
|
|
|
1262
1373
|
ShapBaseline?: string;
|
|
1263
1374
|
ShapBaselineUri?: string;
|
|
1264
1375
|
}
|
|
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
|
-
|
|
1376
|
+
export declare const ClarifyTextGranularity: {
|
|
1377
|
+
readonly PARAGRAPH: "paragraph";
|
|
1378
|
+
readonly SENTENCE: "sentence";
|
|
1379
|
+
readonly TOKEN: "token";
|
|
1380
|
+
};
|
|
1381
|
+
export type ClarifyTextGranularity =
|
|
1382
|
+
(typeof ClarifyTextGranularity)[keyof typeof ClarifyTextGranularity];
|
|
1383
|
+
export declare const ClarifyTextLanguage: {
|
|
1384
|
+
readonly AFRIKAANS: "af";
|
|
1385
|
+
readonly ALBANIAN: "sq";
|
|
1386
|
+
readonly ARABIC: "ar";
|
|
1387
|
+
readonly ARMENIAN: "hy";
|
|
1388
|
+
readonly BASQUE: "eu";
|
|
1389
|
+
readonly BENGALI: "bn";
|
|
1390
|
+
readonly BULGARIAN: "bg";
|
|
1391
|
+
readonly CATALAN: "ca";
|
|
1392
|
+
readonly CHINESE: "zh";
|
|
1393
|
+
readonly CROATIAN: "hr";
|
|
1394
|
+
readonly CZECH: "cs";
|
|
1395
|
+
readonly DANISH: "da";
|
|
1396
|
+
readonly DUTCH: "nl";
|
|
1397
|
+
readonly ENGLISH: "en";
|
|
1398
|
+
readonly ESTONIAN: "et";
|
|
1399
|
+
readonly FINNISH: "fi";
|
|
1400
|
+
readonly FRENCH: "fr";
|
|
1401
|
+
readonly GERMAN: "de";
|
|
1402
|
+
readonly GREEK: "el";
|
|
1403
|
+
readonly GUJARATI: "gu";
|
|
1404
|
+
readonly HEBREW: "he";
|
|
1405
|
+
readonly HINDI: "hi";
|
|
1406
|
+
readonly HUNGARIAN: "hu";
|
|
1407
|
+
readonly ICELANDIC: "is";
|
|
1408
|
+
readonly INDONESIAN: "id";
|
|
1409
|
+
readonly IRISH: "ga";
|
|
1410
|
+
readonly ITALIAN: "it";
|
|
1411
|
+
readonly KANNADA: "kn";
|
|
1412
|
+
readonly KYRGYZ: "ky";
|
|
1413
|
+
readonly LATVIAN: "lv";
|
|
1414
|
+
readonly LIGURIAN: "lij";
|
|
1415
|
+
readonly LITHUANIAN: "lt";
|
|
1416
|
+
readonly LUXEMBOURGISH: "lb";
|
|
1417
|
+
readonly MACEDONIAN: "mk";
|
|
1418
|
+
readonly MALAYALAM: "ml";
|
|
1419
|
+
readonly MARATHI: "mr";
|
|
1420
|
+
readonly MULTI_LANGUAGE: "xx";
|
|
1421
|
+
readonly NEPALI: "ne";
|
|
1422
|
+
readonly NORWEGIAN_BOKMAL: "nb";
|
|
1423
|
+
readonly PERSIAN: "fa";
|
|
1424
|
+
readonly POLISH: "pl";
|
|
1425
|
+
readonly PORTUGUESE: "pt";
|
|
1426
|
+
readonly ROMANIAN: "ro";
|
|
1427
|
+
readonly RUSSIAN: "ru";
|
|
1428
|
+
readonly SANSKRIT: "sa";
|
|
1429
|
+
readonly SERBIAN: "sr";
|
|
1430
|
+
readonly SETSWANA: "tn";
|
|
1431
|
+
readonly SINHALA: "si";
|
|
1432
|
+
readonly SLOVAK: "sk";
|
|
1433
|
+
readonly SLOVENIAN: "sl";
|
|
1434
|
+
readonly SPANISH: "es";
|
|
1435
|
+
readonly SWEDISH: "sv";
|
|
1436
|
+
readonly TAGALOG: "tl";
|
|
1437
|
+
readonly TAMIL: "ta";
|
|
1438
|
+
readonly TATAR: "tt";
|
|
1439
|
+
readonly TELUGU: "te";
|
|
1440
|
+
readonly TURKISH: "tr";
|
|
1441
|
+
readonly UKRAINIAN: "uk";
|
|
1442
|
+
readonly URDU: "ur";
|
|
1443
|
+
readonly YORUBA: "yo";
|
|
1444
|
+
};
|
|
1445
|
+
export type ClarifyTextLanguage =
|
|
1446
|
+
(typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
|
|
1332
1447
|
export interface ClarifyTextConfig {
|
|
1333
1448
|
Language: ClarifyTextLanguage | string | undefined;
|
|
1334
1449
|
Granularity: ClarifyTextGranularity | string | undefined;
|
|
@@ -1348,15 +1463,19 @@ export interface ClarifyExplainerConfig {
|
|
|
1348
1463
|
export interface CodeRepository {
|
|
1349
1464
|
RepositoryUrl: string | undefined;
|
|
1350
1465
|
}
|
|
1351
|
-
export declare
|
|
1352
|
-
CREATION_TIME
|
|
1353
|
-
LAST_MODIFIED_TIME
|
|
1354
|
-
NAME
|
|
1355
|
-
}
|
|
1356
|
-
export
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1466
|
+
export declare const CodeRepositorySortBy: {
|
|
1467
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1468
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
1469
|
+
readonly NAME: "Name";
|
|
1470
|
+
};
|
|
1471
|
+
export type CodeRepositorySortBy =
|
|
1472
|
+
(typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
|
|
1473
|
+
export declare const CodeRepositorySortOrder: {
|
|
1474
|
+
readonly ASCENDING: "Ascending";
|
|
1475
|
+
readonly DESCENDING: "Descending";
|
|
1476
|
+
};
|
|
1477
|
+
export type CodeRepositorySortOrder =
|
|
1478
|
+
(typeof CodeRepositorySortOrder)[keyof typeof CodeRepositorySortOrder];
|
|
1360
1479
|
export interface GitConfig {
|
|
1361
1480
|
RepositoryUrl: string | undefined;
|
|
1362
1481
|
Branch?: string;
|
|
@@ -1382,65 +1501,74 @@ export interface CollectionConfiguration {
|
|
|
1382
1501
|
CollectionName?: string;
|
|
1383
1502
|
CollectionParameters?: Record<string, string>;
|
|
1384
1503
|
}
|
|
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
|
-
|
|
1504
|
+
export declare const CompilationJobStatus: {
|
|
1505
|
+
readonly COMPLETED: "COMPLETED";
|
|
1506
|
+
readonly FAILED: "FAILED";
|
|
1507
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
1508
|
+
readonly STARTING: "STARTING";
|
|
1509
|
+
readonly STOPPED: "STOPPED";
|
|
1510
|
+
readonly STOPPING: "STOPPING";
|
|
1511
|
+
};
|
|
1512
|
+
export type CompilationJobStatus =
|
|
1513
|
+
(typeof CompilationJobStatus)[keyof typeof CompilationJobStatus];
|
|
1514
|
+
export declare const TargetDevice: {
|
|
1515
|
+
readonly AISAGE: "aisage";
|
|
1516
|
+
readonly AMBA_CV2: "amba_cv2";
|
|
1517
|
+
readonly AMBA_CV22: "amba_cv22";
|
|
1518
|
+
readonly AMBA_CV25: "amba_cv25";
|
|
1519
|
+
readonly COREML: "coreml";
|
|
1520
|
+
readonly DEEPLENS: "deeplens";
|
|
1521
|
+
readonly IMX8MPLUS: "imx8mplus";
|
|
1522
|
+
readonly IMX8QM: "imx8qm";
|
|
1523
|
+
readonly JACINTO_TDA4VM: "jacinto_tda4vm";
|
|
1524
|
+
readonly JETSON_NANO: "jetson_nano";
|
|
1525
|
+
readonly JETSON_TX1: "jetson_tx1";
|
|
1526
|
+
readonly JETSON_TX2: "jetson_tx2";
|
|
1527
|
+
readonly JETSON_XAVIER: "jetson_xavier";
|
|
1528
|
+
readonly LAMBDA: "lambda";
|
|
1529
|
+
readonly ML_C4: "ml_c4";
|
|
1530
|
+
readonly ML_C5: "ml_c5";
|
|
1531
|
+
readonly ML_EIA2: "ml_eia2";
|
|
1532
|
+
readonly ML_G4DN: "ml_g4dn";
|
|
1533
|
+
readonly ML_INF1: "ml_inf1";
|
|
1534
|
+
readonly ML_M4: "ml_m4";
|
|
1535
|
+
readonly ML_M5: "ml_m5";
|
|
1536
|
+
readonly ML_P2: "ml_p2";
|
|
1537
|
+
readonly ML_P3: "ml_p3";
|
|
1538
|
+
readonly QCS603: "qcs603";
|
|
1539
|
+
readonly QCS605: "qcs605";
|
|
1540
|
+
readonly RASP3B: "rasp3b";
|
|
1541
|
+
readonly RK3288: "rk3288";
|
|
1542
|
+
readonly RK3399: "rk3399";
|
|
1543
|
+
readonly SBE_C: "sbe_c";
|
|
1544
|
+
readonly SITARA_AM57X: "sitara_am57x";
|
|
1545
|
+
readonly X86_WIN32: "x86_win32";
|
|
1546
|
+
readonly X86_WIN64: "x86_win64";
|
|
1547
|
+
};
|
|
1548
|
+
export type TargetDevice = (typeof TargetDevice)[keyof typeof TargetDevice];
|
|
1549
|
+
export declare const TargetPlatformAccelerator: {
|
|
1550
|
+
readonly INTEL_GRAPHICS: "INTEL_GRAPHICS";
|
|
1551
|
+
readonly MALI: "MALI";
|
|
1552
|
+
readonly NNA: "NNA";
|
|
1553
|
+
readonly NVIDIA: "NVIDIA";
|
|
1554
|
+
};
|
|
1555
|
+
export type TargetPlatformAccelerator =
|
|
1556
|
+
(typeof TargetPlatformAccelerator)[keyof typeof TargetPlatformAccelerator];
|
|
1557
|
+
export declare const TargetPlatformArch: {
|
|
1558
|
+
readonly ARM64: "ARM64";
|
|
1559
|
+
readonly ARM_EABI: "ARM_EABI";
|
|
1560
|
+
readonly ARM_EABIHF: "ARM_EABIHF";
|
|
1561
|
+
readonly X86: "X86";
|
|
1562
|
+
readonly X86_64: "X86_64";
|
|
1563
|
+
};
|
|
1564
|
+
export type TargetPlatformArch =
|
|
1565
|
+
(typeof TargetPlatformArch)[keyof typeof TargetPlatformArch];
|
|
1566
|
+
export declare const TargetPlatformOs: {
|
|
1567
|
+
readonly ANDROID: "ANDROID";
|
|
1568
|
+
readonly LINUX: "LINUX";
|
|
1569
|
+
};
|
|
1570
|
+
export type TargetPlatformOs =
|
|
1571
|
+
(typeof TargetPlatformOs)[keyof typeof TargetPlatformOs];
|
|
1444
1572
|
export interface CompilationJobSummary {
|
|
1445
1573
|
CompilationJobName: string | undefined;
|
|
1446
1574
|
CompilationJobArn: string | undefined;
|
|
@@ -1454,14 +1582,18 @@ export interface CompilationJobSummary {
|
|
|
1454
1582
|
LastModifiedTime?: Date;
|
|
1455
1583
|
CompilationJobStatus: CompilationJobStatus | string | undefined;
|
|
1456
1584
|
}
|
|
1457
|
-
export declare
|
|
1458
|
-
DISABLED
|
|
1459
|
-
ENABLED
|
|
1460
|
-
}
|
|
1461
|
-
export
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1585
|
+
export declare const CompleteOnConvergence: {
|
|
1586
|
+
readonly DISABLED: "Disabled";
|
|
1587
|
+
readonly ENABLED: "Enabled";
|
|
1588
|
+
};
|
|
1589
|
+
export type CompleteOnConvergence =
|
|
1590
|
+
(typeof CompleteOnConvergence)[keyof typeof CompleteOnConvergence];
|
|
1591
|
+
export declare const ConditionOutcome: {
|
|
1592
|
+
readonly FALSE: "False";
|
|
1593
|
+
readonly TRUE: "True";
|
|
1594
|
+
};
|
|
1595
|
+
export type ConditionOutcome =
|
|
1596
|
+
(typeof ConditionOutcome)[keyof typeof ConditionOutcome];
|
|
1465
1597
|
export interface ConditionStepMetadata {
|
|
1466
1598
|
Outcome?: ConditionOutcome | string;
|
|
1467
1599
|
}
|
|
@@ -1471,10 +1603,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
1471
1603
|
Message?: string;
|
|
1472
1604
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1473
1605
|
}
|
|
1474
|
-
export declare
|
|
1475
|
-
PLATFORM
|
|
1476
|
-
VPC
|
|
1477
|
-
}
|
|
1606
|
+
export declare const RepositoryAccessMode: {
|
|
1607
|
+
readonly PLATFORM: "Platform";
|
|
1608
|
+
readonly VPC: "Vpc";
|
|
1609
|
+
};
|
|
1610
|
+
export type RepositoryAccessMode =
|
|
1611
|
+
(typeof RepositoryAccessMode)[keyof typeof RepositoryAccessMode];
|
|
1478
1612
|
export interface RepositoryAuthConfig {
|
|
1479
1613
|
RepositoryCredentialsProviderArn: string | undefined;
|
|
1480
1614
|
}
|
|
@@ -1482,14 +1616,17 @@ export interface ImageConfig {
|
|
|
1482
1616
|
RepositoryAccessMode: RepositoryAccessMode | string | undefined;
|
|
1483
1617
|
RepositoryAuthConfig?: RepositoryAuthConfig;
|
|
1484
1618
|
}
|
|
1485
|
-
export declare
|
|
1486
|
-
MULTI_MODEL
|
|
1487
|
-
SINGLE_MODEL
|
|
1488
|
-
}
|
|
1489
|
-
export
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1619
|
+
export declare const ContainerMode: {
|
|
1620
|
+
readonly MULTI_MODEL: "MultiModel";
|
|
1621
|
+
readonly SINGLE_MODEL: "SingleModel";
|
|
1622
|
+
};
|
|
1623
|
+
export type ContainerMode = (typeof ContainerMode)[keyof typeof ContainerMode];
|
|
1624
|
+
export declare const ModelCacheSetting: {
|
|
1625
|
+
readonly DISABLED: "Disabled";
|
|
1626
|
+
readonly ENABLED: "Enabled";
|
|
1627
|
+
};
|
|
1628
|
+
export type ModelCacheSetting =
|
|
1629
|
+
(typeof ModelCacheSetting)[keyof typeof ModelCacheSetting];
|
|
1493
1630
|
export interface MultiModelConfig {
|
|
1494
1631
|
ModelCacheSetting?: ModelCacheSetting | string;
|
|
1495
1632
|
}
|
|
@@ -1504,10 +1641,12 @@ export interface ContainerDefinition {
|
|
|
1504
1641
|
InferenceSpecificationName?: string;
|
|
1505
1642
|
MultiModelConfig?: MultiModelConfig;
|
|
1506
1643
|
}
|
|
1507
|
-
export declare
|
|
1508
|
-
FREE_OF_ADULT_CONTENT
|
|
1509
|
-
FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION
|
|
1510
|
-
}
|
|
1644
|
+
export declare const ContentClassifier: {
|
|
1645
|
+
readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent";
|
|
1646
|
+
readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation";
|
|
1647
|
+
};
|
|
1648
|
+
export type ContentClassifier =
|
|
1649
|
+
(typeof ContentClassifier)[keyof typeof ContentClassifier];
|
|
1511
1650
|
export interface ContextSource {
|
|
1512
1651
|
SourceUri: string | undefined;
|
|
1513
1652
|
SourceType?: string;
|
|
@@ -1521,12 +1660,14 @@ export interface ContextSummary {
|
|
|
1521
1660
|
CreationTime?: Date;
|
|
1522
1661
|
LastModifiedTime?: Date;
|
|
1523
1662
|
}
|
|
1524
|
-
export declare
|
|
1525
|
-
AUTO
|
|
1526
|
-
LINEAR
|
|
1527
|
-
LOGARITHMIC
|
|
1528
|
-
REVERSE_LOGARITHMIC
|
|
1529
|
-
}
|
|
1663
|
+
export declare const HyperParameterScalingType: {
|
|
1664
|
+
readonly AUTO: "Auto";
|
|
1665
|
+
readonly LINEAR: "Linear";
|
|
1666
|
+
readonly LOGARITHMIC: "Logarithmic";
|
|
1667
|
+
readonly REVERSE_LOGARITHMIC: "ReverseLogarithmic";
|
|
1668
|
+
};
|
|
1669
|
+
export type HyperParameterScalingType =
|
|
1670
|
+
(typeof HyperParameterScalingType)[keyof typeof HyperParameterScalingType];
|
|
1530
1671
|
export interface ContinuousParameterRange {
|
|
1531
1672
|
Name: string | undefined;
|
|
1532
1673
|
MinValue: string | undefined;
|
|
@@ -1568,12 +1709,13 @@ export interface ParameterRange {
|
|
|
1568
1709
|
ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification;
|
|
1569
1710
|
CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification;
|
|
1570
1711
|
}
|
|
1571
|
-
export declare
|
|
1572
|
-
CATEGORICAL
|
|
1573
|
-
CONTINUOUS
|
|
1574
|
-
FREE_TEXT
|
|
1575
|
-
INTEGER
|
|
1576
|
-
}
|
|
1712
|
+
export declare const ParameterType: {
|
|
1713
|
+
readonly CATEGORICAL: "Categorical";
|
|
1714
|
+
readonly CONTINUOUS: "Continuous";
|
|
1715
|
+
readonly FREE_TEXT: "FreeText";
|
|
1716
|
+
readonly INTEGER: "Integer";
|
|
1717
|
+
};
|
|
1718
|
+
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
1577
1719
|
export interface HyperParameterSpecification {
|
|
1578
1720
|
Name: string | undefined;
|
|
1579
1721
|
Description?: string;
|
|
@@ -1583,10 +1725,12 @@ export interface HyperParameterSpecification {
|
|
|
1583
1725
|
IsRequired?: boolean;
|
|
1584
1726
|
DefaultValue?: string;
|
|
1585
1727
|
}
|
|
1586
|
-
export declare
|
|
1587
|
-
MAXIMIZE
|
|
1588
|
-
MINIMIZE
|
|
1589
|
-
}
|
|
1728
|
+
export declare const HyperParameterTuningJobObjectiveType: {
|
|
1729
|
+
readonly MAXIMIZE: "Maximize";
|
|
1730
|
+
readonly MINIMIZE: "Minimize";
|
|
1731
|
+
};
|
|
1732
|
+
export type HyperParameterTuningJobObjectiveType =
|
|
1733
|
+
(typeof HyperParameterTuningJobObjectiveType)[keyof typeof HyperParameterTuningJobObjectiveType];
|
|
1590
1734
|
export interface HyperParameterTuningJobObjective {
|
|
1591
1735
|
Type: HyperParameterTuningJobObjectiveType | string | undefined;
|
|
1592
1736
|
MetricName: string | undefined;
|
|
@@ -1660,11 +1804,12 @@ export interface ModelDeployConfig {
|
|
|
1660
1804
|
AutoGenerateEndpointName?: boolean;
|
|
1661
1805
|
EndpointName?: string;
|
|
1662
1806
|
}
|
|
1663
|
-
export declare
|
|
1664
|
-
BINARY_CLASSIFICATION
|
|
1665
|
-
MULTICLASS_CLASSIFICATION
|
|
1666
|
-
REGRESSION
|
|
1667
|
-
}
|
|
1807
|
+
export declare const ProblemType: {
|
|
1808
|
+
readonly BINARY_CLASSIFICATION: "BinaryClassification";
|
|
1809
|
+
readonly MULTICLASS_CLASSIFICATION: "MulticlassClassification";
|
|
1810
|
+
readonly REGRESSION: "Regression";
|
|
1811
|
+
};
|
|
1812
|
+
export type ProblemType = (typeof ProblemType)[keyof typeof ProblemType];
|
|
1668
1813
|
export interface CreateAutoMLJobRequest {
|
|
1669
1814
|
AutoMLJobName: string | undefined;
|
|
1670
1815
|
InputDataConfig: AutoMLChannel[] | undefined;
|
|
@@ -1703,17 +1848,18 @@ export interface CreateCodeRepositoryInput {
|
|
|
1703
1848
|
export interface CreateCodeRepositoryOutput {
|
|
1704
1849
|
CodeRepositoryArn: string | undefined;
|
|
1705
1850
|
}
|
|
1706
|
-
export declare
|
|
1707
|
-
DARKNET
|
|
1708
|
-
KERAS
|
|
1709
|
-
MXNET
|
|
1710
|
-
ONNX
|
|
1711
|
-
PYTORCH
|
|
1712
|
-
SKLEARN
|
|
1713
|
-
TENSORFLOW
|
|
1714
|
-
TFLITE
|
|
1715
|
-
XGBOOST
|
|
1716
|
-
}
|
|
1851
|
+
export declare const Framework: {
|
|
1852
|
+
readonly DARKNET: "DARKNET";
|
|
1853
|
+
readonly KERAS: "KERAS";
|
|
1854
|
+
readonly MXNET: "MXNET";
|
|
1855
|
+
readonly ONNX: "ONNX";
|
|
1856
|
+
readonly PYTORCH: "PYTORCH";
|
|
1857
|
+
readonly SKLEARN: "SKLEARN";
|
|
1858
|
+
readonly TENSORFLOW: "TENSORFLOW";
|
|
1859
|
+
readonly TFLITE: "TFLITE";
|
|
1860
|
+
readonly XGBOOST: "XGBOOST";
|
|
1861
|
+
};
|
|
1862
|
+
export type Framework = (typeof Framework)[keyof typeof Framework];
|
|
1717
1863
|
export interface InputConfig {
|
|
1718
1864
|
S3Uri: string | undefined;
|
|
1719
1865
|
DataInputConfig: string | undefined;
|
|
@@ -1795,10 +1941,12 @@ export interface DataQualityJobInput {
|
|
|
1795
1941
|
EndpointInput?: EndpointInput;
|
|
1796
1942
|
BatchTransformInput?: BatchTransformInput;
|
|
1797
1943
|
}
|
|
1798
|
-
export declare
|
|
1799
|
-
CONTINUOUS
|
|
1800
|
-
END_OF_JOB
|
|
1801
|
-
}
|
|
1944
|
+
export declare const ProcessingS3UploadMode: {
|
|
1945
|
+
readonly CONTINUOUS: "Continuous";
|
|
1946
|
+
readonly END_OF_JOB: "EndOfJob";
|
|
1947
|
+
};
|
|
1948
|
+
export type ProcessingS3UploadMode =
|
|
1949
|
+
(typeof ProcessingS3UploadMode)[keyof typeof ProcessingS3UploadMode];
|
|
1802
1950
|
export interface MonitoringS3Output {
|
|
1803
1951
|
S3Uri: string | undefined;
|
|
1804
1952
|
LocalPath: string | undefined;
|
|
@@ -1811,52 +1959,54 @@ export interface MonitoringOutputConfig {
|
|
|
1811
1959
|
MonitoringOutputs: MonitoringOutput[] | undefined;
|
|
1812
1960
|
KmsKeyId?: string;
|
|
1813
1961
|
}
|
|
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
|
-
}
|
|
1962
|
+
export declare const ProcessingInstanceType: {
|
|
1963
|
+
readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
|
|
1964
|
+
readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
|
|
1965
|
+
readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
|
|
1966
|
+
readonly ML_C4_XLARGE: "ml.c4.xlarge";
|
|
1967
|
+
readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
|
|
1968
|
+
readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
|
|
1969
|
+
readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
|
|
1970
|
+
readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
|
|
1971
|
+
readonly ML_C5_XLARGE: "ml.c5.xlarge";
|
|
1972
|
+
readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
|
|
1973
|
+
readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
|
|
1974
|
+
readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
|
|
1975
|
+
readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
|
|
1976
|
+
readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
|
|
1977
|
+
readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
|
|
1978
|
+
readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
|
|
1979
|
+
readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
|
|
1980
|
+
readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
|
|
1981
|
+
readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
|
|
1982
|
+
readonly ML_M4_XLARGE: "ml.m4.xlarge";
|
|
1983
|
+
readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
|
|
1984
|
+
readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
|
|
1985
|
+
readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
|
|
1986
|
+
readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
|
|
1987
|
+
readonly ML_M5_LARGE: "ml.m5.large";
|
|
1988
|
+
readonly ML_M5_XLARGE: "ml.m5.xlarge";
|
|
1989
|
+
readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
|
|
1990
|
+
readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
|
|
1991
|
+
readonly ML_P2_XLARGE: "ml.p2.xlarge";
|
|
1992
|
+
readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
|
|
1993
|
+
readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
|
|
1994
|
+
readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
|
|
1995
|
+
readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
|
|
1996
|
+
readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
|
|
1997
|
+
readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
|
|
1998
|
+
readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
|
|
1999
|
+
readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
|
|
2000
|
+
readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
|
|
2001
|
+
readonly ML_R5_LARGE: "ml.r5.large";
|
|
2002
|
+
readonly ML_R5_XLARGE: "ml.r5.xlarge";
|
|
2003
|
+
readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
|
|
2004
|
+
readonly ML_T3_LARGE: "ml.t3.large";
|
|
2005
|
+
readonly ML_T3_MEDIUM: "ml.t3.medium";
|
|
2006
|
+
readonly ML_T3_XLARGE: "ml.t3.xlarge";
|
|
2007
|
+
};
|
|
2008
|
+
export type ProcessingInstanceType =
|
|
2009
|
+
(typeof ProcessingInstanceType)[keyof typeof ProcessingInstanceType];
|
|
1860
2010
|
export interface MonitoringClusterConfig {
|
|
1861
2011
|
InstanceCount: number | undefined;
|
|
1862
2012
|
InstanceType: ProcessingInstanceType | string | undefined;
|
|
@@ -1889,9 +2039,11 @@ export interface CreateDataQualityJobDefinitionRequest {
|
|
|
1889
2039
|
export interface CreateDataQualityJobDefinitionResponse {
|
|
1890
2040
|
JobDefinitionArn: string | undefined;
|
|
1891
2041
|
}
|
|
1892
|
-
export declare
|
|
1893
|
-
GreengrassV2Component
|
|
1894
|
-
}
|
|
2042
|
+
export declare const EdgePresetDeploymentType: {
|
|
2043
|
+
readonly GreengrassV2Component: "GreengrassV2Component";
|
|
2044
|
+
};
|
|
2045
|
+
export type EdgePresetDeploymentType =
|
|
2046
|
+
(typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
|
|
1895
2047
|
export interface EdgeOutputConfig {
|
|
1896
2048
|
S3OutputLocation: string | undefined;
|
|
1897
2049
|
KmsKeyId?: string;
|
|
@@ -1931,22 +2083,28 @@ export interface RSessionAppSettings {
|
|
|
1931
2083
|
DefaultResourceSpec?: ResourceSpec;
|
|
1932
2084
|
CustomImages?: CustomImage[];
|
|
1933
2085
|
}
|
|
1934
|
-
export declare
|
|
1935
|
-
Disabled
|
|
1936
|
-
Enabled
|
|
1937
|
-
}
|
|
1938
|
-
export
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
2086
|
+
export declare const RStudioServerProAccessStatus: {
|
|
2087
|
+
readonly Disabled: "DISABLED";
|
|
2088
|
+
readonly Enabled: "ENABLED";
|
|
2089
|
+
};
|
|
2090
|
+
export type RStudioServerProAccessStatus =
|
|
2091
|
+
(typeof RStudioServerProAccessStatus)[keyof typeof RStudioServerProAccessStatus];
|
|
2092
|
+
export declare const RStudioServerProUserGroup: {
|
|
2093
|
+
readonly Admin: "R_STUDIO_ADMIN";
|
|
2094
|
+
readonly User: "R_STUDIO_USER";
|
|
2095
|
+
};
|
|
2096
|
+
export type RStudioServerProUserGroup =
|
|
2097
|
+
(typeof RStudioServerProUserGroup)[keyof typeof RStudioServerProUserGroup];
|
|
1942
2098
|
export interface RStudioServerProAppSettings {
|
|
1943
2099
|
AccessStatus?: RStudioServerProAccessStatus | string;
|
|
1944
2100
|
UserGroup?: RStudioServerProUserGroup | string;
|
|
1945
2101
|
}
|
|
1946
|
-
export declare
|
|
1947
|
-
Allowed
|
|
1948
|
-
Disabled
|
|
1949
|
-
}
|
|
2102
|
+
export declare const NotebookOutputOption: {
|
|
2103
|
+
readonly Allowed: "Allowed";
|
|
2104
|
+
readonly Disabled: "Disabled";
|
|
2105
|
+
};
|
|
2106
|
+
export type NotebookOutputOption =
|
|
2107
|
+
(typeof NotebookOutputOption)[keyof typeof NotebookOutputOption];
|
|
1950
2108
|
export interface SharingSettings {
|
|
1951
2109
|
NotebookOutputOption?: NotebookOutputOption | string;
|
|
1952
2110
|
S3OutputPath?: string;
|
|
@@ -1966,10 +2124,12 @@ export interface UserSettings {
|
|
|
1966
2124
|
RSessionAppSettings?: RSessionAppSettings;
|
|
1967
2125
|
CanvasAppSettings?: CanvasAppSettings;
|
|
1968
2126
|
}
|
|
1969
|
-
export declare
|
|
1970
|
-
DISABLED
|
|
1971
|
-
USER_PROFILE_NAME
|
|
1972
|
-
}
|
|
2127
|
+
export declare const ExecutionRoleIdentityConfig: {
|
|
2128
|
+
readonly DISABLED: "DISABLED";
|
|
2129
|
+
readonly USER_PROFILE_NAME: "USER_PROFILE_NAME";
|
|
2130
|
+
};
|
|
2131
|
+
export type ExecutionRoleIdentityConfig =
|
|
2132
|
+
(typeof ExecutionRoleIdentityConfig)[keyof typeof ExecutionRoleIdentityConfig];
|
|
1973
2133
|
export interface RStudioServerProDomainSettings {
|
|
1974
2134
|
DomainExecutionRoleArn: string | undefined;
|
|
1975
2135
|
RStudioConnectUrl?: string;
|
|
@@ -2003,18 +2163,22 @@ export interface EdgeDeploymentModelConfig {
|
|
|
2003
2163
|
ModelHandle: string | undefined;
|
|
2004
2164
|
EdgePackagingJobName: string | undefined;
|
|
2005
2165
|
}
|
|
2006
|
-
export declare
|
|
2007
|
-
DoNothing
|
|
2008
|
-
RollbackOnFailure
|
|
2009
|
-
}
|
|
2166
|
+
export declare const FailureHandlingPolicy: {
|
|
2167
|
+
readonly DoNothing: "DO_NOTHING";
|
|
2168
|
+
readonly RollbackOnFailure: "ROLLBACK_ON_FAILURE";
|
|
2169
|
+
};
|
|
2170
|
+
export type FailureHandlingPolicy =
|
|
2171
|
+
(typeof FailureHandlingPolicy)[keyof typeof FailureHandlingPolicy];
|
|
2010
2172
|
export interface EdgeDeploymentConfig {
|
|
2011
2173
|
FailureHandlingPolicy: FailureHandlingPolicy | string | undefined;
|
|
2012
2174
|
}
|
|
2013
|
-
export declare
|
|
2014
|
-
NameContains
|
|
2015
|
-
Percentage
|
|
2016
|
-
Selection
|
|
2017
|
-
}
|
|
2175
|
+
export declare const DeviceSubsetType: {
|
|
2176
|
+
readonly NameContains: "NAMECONTAINS";
|
|
2177
|
+
readonly Percentage: "PERCENTAGE";
|
|
2178
|
+
readonly Selection: "SELECTION";
|
|
2179
|
+
};
|
|
2180
|
+
export type DeviceSubsetType =
|
|
2181
|
+
(typeof DeviceSubsetType)[keyof typeof DeviceSubsetType];
|
|
2018
2182
|
export interface DeviceSelectionConfig {
|
|
2019
2183
|
DeviceSubsetType: DeviceSubsetType | string | undefined;
|
|
2020
2184
|
Percentage?: number;
|
|
@@ -2050,7 +2214,3 @@ export interface CreateEdgePackagingJobRequest {
|
|
|
2050
2214
|
ResourceKey?: string;
|
|
2051
2215
|
Tags?: Tag[];
|
|
2052
2216
|
}
|
|
2053
|
-
export interface DeploymentConfig {
|
|
2054
|
-
BlueGreenUpdatePolicy: BlueGreenUpdatePolicy | undefined;
|
|
2055
|
-
AutoRollbackConfiguration?: AutoRollbackConfig;
|
|
2056
|
-
}
|