@aws-sdk/client-sagemaker 3.686.0 → 3.691.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-types/models/models_0.d.ts +428 -428
- package/dist-types/models/models_1.d.ts +579 -579
- package/dist-types/models/models_2.d.ts +583 -583
- package/dist-types/models/models_3.d.ts +944 -944
- package/dist-types/models/models_4.d.ts +950 -950
- package/dist-types/models/models_5.d.ts +20 -20
- package/dist-types/ts3.4/models/models_0.d.ts +448 -433
- package/dist-types/ts3.4/models/models_1.d.ts +589 -579
- package/dist-types/ts3.4/models/models_2.d.ts +591 -583
- package/dist-types/ts3.4/models/models_3.d.ts +956 -944
- package/dist-types/ts3.4/models/models_4.d.ts +964 -950
- package/dist-types/ts3.4/models/models_5.d.ts +20 -20
- package/package.json +7 -7
|
@@ -178,41 +178,41 @@ export declare const SortTrackingServerBy: {
|
|
|
178
178
|
export type SortTrackingServerBy =
|
|
179
179
|
(typeof SortTrackingServerBy)[keyof typeof SortTrackingServerBy];
|
|
180
180
|
export interface ListMlflowTrackingServersRequest {
|
|
181
|
-
CreatedAfter?: Date;
|
|
182
|
-
CreatedBefore?: Date;
|
|
183
|
-
TrackingServerStatus?: TrackingServerStatus;
|
|
184
|
-
MlflowVersion?: string;
|
|
185
|
-
SortBy?: SortTrackingServerBy;
|
|
186
|
-
SortOrder?: SortOrder;
|
|
187
|
-
NextToken?: string;
|
|
188
|
-
MaxResults?: number;
|
|
181
|
+
CreatedAfter?: Date | undefined;
|
|
182
|
+
CreatedBefore?: Date | undefined;
|
|
183
|
+
TrackingServerStatus?: TrackingServerStatus | undefined;
|
|
184
|
+
MlflowVersion?: string | undefined;
|
|
185
|
+
SortBy?: SortTrackingServerBy | undefined;
|
|
186
|
+
SortOrder?: SortOrder | undefined;
|
|
187
|
+
NextToken?: string | undefined;
|
|
188
|
+
MaxResults?: number | undefined;
|
|
189
189
|
}
|
|
190
190
|
export interface TrackingServerSummary {
|
|
191
|
-
TrackingServerArn?: string;
|
|
192
|
-
TrackingServerName?: string;
|
|
193
|
-
CreationTime?: Date;
|
|
194
|
-
LastModifiedTime?: Date;
|
|
195
|
-
TrackingServerStatus?: TrackingServerStatus;
|
|
196
|
-
IsActive?: IsTrackingServerActive;
|
|
197
|
-
MlflowVersion?: string;
|
|
191
|
+
TrackingServerArn?: string | undefined;
|
|
192
|
+
TrackingServerName?: string | undefined;
|
|
193
|
+
CreationTime?: Date | undefined;
|
|
194
|
+
LastModifiedTime?: Date | undefined;
|
|
195
|
+
TrackingServerStatus?: TrackingServerStatus | undefined;
|
|
196
|
+
IsActive?: IsTrackingServerActive | undefined;
|
|
197
|
+
MlflowVersion?: string | undefined;
|
|
198
198
|
}
|
|
199
199
|
export interface ListMlflowTrackingServersResponse {
|
|
200
|
-
TrackingServerSummaries?: TrackingServerSummary[];
|
|
201
|
-
NextToken?: string;
|
|
200
|
+
TrackingServerSummaries?: TrackingServerSummary[] | undefined;
|
|
201
|
+
NextToken?: string | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface ListModelBiasJobDefinitionsRequest {
|
|
204
|
-
EndpointName?: string;
|
|
205
|
-
SortBy?: MonitoringJobDefinitionSortKey;
|
|
206
|
-
SortOrder?: SortOrder;
|
|
207
|
-
NextToken?: string;
|
|
208
|
-
MaxResults?: number;
|
|
209
|
-
NameContains?: string;
|
|
210
|
-
CreationTimeBefore?: Date;
|
|
211
|
-
CreationTimeAfter?: Date;
|
|
204
|
+
EndpointName?: string | undefined;
|
|
205
|
+
SortBy?: MonitoringJobDefinitionSortKey | undefined;
|
|
206
|
+
SortOrder?: SortOrder | undefined;
|
|
207
|
+
NextToken?: string | undefined;
|
|
208
|
+
MaxResults?: number | undefined;
|
|
209
|
+
NameContains?: string | undefined;
|
|
210
|
+
CreationTimeBefore?: Date | undefined;
|
|
211
|
+
CreationTimeAfter?: Date | undefined;
|
|
212
212
|
}
|
|
213
213
|
export interface ListModelBiasJobDefinitionsResponse {
|
|
214
214
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
215
|
-
NextToken?: string;
|
|
215
|
+
NextToken?: string | undefined;
|
|
216
216
|
}
|
|
217
217
|
export declare const ModelCardExportJobSortBy: {
|
|
218
218
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -229,15 +229,15 @@ export type ModelCardExportJobSortOrder =
|
|
|
229
229
|
(typeof ModelCardExportJobSortOrder)[keyof typeof ModelCardExportJobSortOrder];
|
|
230
230
|
export interface ListModelCardExportJobsRequest {
|
|
231
231
|
ModelCardName: string | undefined;
|
|
232
|
-
ModelCardVersion?: number;
|
|
233
|
-
CreationTimeAfter?: Date;
|
|
234
|
-
CreationTimeBefore?: Date;
|
|
235
|
-
ModelCardExportJobNameContains?: string;
|
|
236
|
-
StatusEquals?: ModelCardExportJobStatus;
|
|
237
|
-
SortBy?: ModelCardExportJobSortBy;
|
|
238
|
-
SortOrder?: ModelCardExportJobSortOrder;
|
|
239
|
-
NextToken?: string;
|
|
240
|
-
MaxResults?: number;
|
|
232
|
+
ModelCardVersion?: number | undefined;
|
|
233
|
+
CreationTimeAfter?: Date | undefined;
|
|
234
|
+
CreationTimeBefore?: Date | undefined;
|
|
235
|
+
ModelCardExportJobNameContains?: string | undefined;
|
|
236
|
+
StatusEquals?: ModelCardExportJobStatus | undefined;
|
|
237
|
+
SortBy?: ModelCardExportJobSortBy | undefined;
|
|
238
|
+
SortOrder?: ModelCardExportJobSortOrder | undefined;
|
|
239
|
+
NextToken?: string | undefined;
|
|
240
|
+
MaxResults?: number | undefined;
|
|
241
241
|
}
|
|
242
242
|
export interface ModelCardExportJobSummary {
|
|
243
243
|
ModelCardExportJobName: string | undefined;
|
|
@@ -250,7 +250,7 @@ export interface ModelCardExportJobSummary {
|
|
|
250
250
|
}
|
|
251
251
|
export interface ListModelCardExportJobsResponse {
|
|
252
252
|
ModelCardExportJobSummaries: ModelCardExportJobSummary[] | undefined;
|
|
253
|
-
NextToken?: string;
|
|
253
|
+
NextToken?: string | undefined;
|
|
254
254
|
}
|
|
255
255
|
export declare const ModelCardSortBy: {
|
|
256
256
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -265,25 +265,25 @@ export declare const ModelCardSortOrder: {
|
|
|
265
265
|
export type ModelCardSortOrder =
|
|
266
266
|
(typeof ModelCardSortOrder)[keyof typeof ModelCardSortOrder];
|
|
267
267
|
export interface ListModelCardsRequest {
|
|
268
|
-
CreationTimeAfter?: Date;
|
|
269
|
-
CreationTimeBefore?: Date;
|
|
270
|
-
MaxResults?: number;
|
|
271
|
-
NameContains?: string;
|
|
272
|
-
ModelCardStatus?: ModelCardStatus;
|
|
273
|
-
NextToken?: string;
|
|
274
|
-
SortBy?: ModelCardSortBy;
|
|
275
|
-
SortOrder?: ModelCardSortOrder;
|
|
268
|
+
CreationTimeAfter?: Date | undefined;
|
|
269
|
+
CreationTimeBefore?: Date | undefined;
|
|
270
|
+
MaxResults?: number | undefined;
|
|
271
|
+
NameContains?: string | undefined;
|
|
272
|
+
ModelCardStatus?: ModelCardStatus | undefined;
|
|
273
|
+
NextToken?: string | undefined;
|
|
274
|
+
SortBy?: ModelCardSortBy | undefined;
|
|
275
|
+
SortOrder?: ModelCardSortOrder | undefined;
|
|
276
276
|
}
|
|
277
277
|
export interface ModelCardSummary {
|
|
278
278
|
ModelCardName: string | undefined;
|
|
279
279
|
ModelCardArn: string | undefined;
|
|
280
280
|
ModelCardStatus: ModelCardStatus | undefined;
|
|
281
281
|
CreationTime: Date | undefined;
|
|
282
|
-
LastModifiedTime?: Date;
|
|
282
|
+
LastModifiedTime?: Date | undefined;
|
|
283
283
|
}
|
|
284
284
|
export interface ListModelCardsResponse {
|
|
285
285
|
ModelCardSummaries: ModelCardSummary[] | undefined;
|
|
286
|
-
NextToken?: string;
|
|
286
|
+
NextToken?: string | undefined;
|
|
287
287
|
}
|
|
288
288
|
export declare const ModelCardVersionSortBy: {
|
|
289
289
|
readonly VERSION: "Version";
|
|
@@ -291,14 +291,14 @@ export declare const ModelCardVersionSortBy: {
|
|
|
291
291
|
export type ModelCardVersionSortBy =
|
|
292
292
|
(typeof ModelCardVersionSortBy)[keyof typeof ModelCardVersionSortBy];
|
|
293
293
|
export interface ListModelCardVersionsRequest {
|
|
294
|
-
CreationTimeAfter?: Date;
|
|
295
|
-
CreationTimeBefore?: Date;
|
|
296
|
-
MaxResults?: number;
|
|
294
|
+
CreationTimeAfter?: Date | undefined;
|
|
295
|
+
CreationTimeBefore?: Date | undefined;
|
|
296
|
+
MaxResults?: number | undefined;
|
|
297
297
|
ModelCardName: string | undefined;
|
|
298
|
-
ModelCardStatus?: ModelCardStatus;
|
|
299
|
-
NextToken?: string;
|
|
300
|
-
SortBy?: ModelCardVersionSortBy;
|
|
301
|
-
SortOrder?: ModelCardSortOrder;
|
|
298
|
+
ModelCardStatus?: ModelCardStatus | undefined;
|
|
299
|
+
NextToken?: string | undefined;
|
|
300
|
+
SortBy?: ModelCardVersionSortBy | undefined;
|
|
301
|
+
SortOrder?: ModelCardSortOrder | undefined;
|
|
302
302
|
}
|
|
303
303
|
export interface ModelCardVersionSummary {
|
|
304
304
|
ModelCardName: string | undefined;
|
|
@@ -306,25 +306,25 @@ export interface ModelCardVersionSummary {
|
|
|
306
306
|
ModelCardStatus: ModelCardStatus | undefined;
|
|
307
307
|
ModelCardVersion: number | undefined;
|
|
308
308
|
CreationTime: Date | undefined;
|
|
309
|
-
LastModifiedTime?: Date;
|
|
309
|
+
LastModifiedTime?: Date | undefined;
|
|
310
310
|
}
|
|
311
311
|
export interface ListModelCardVersionsResponse {
|
|
312
312
|
ModelCardVersionSummaryList: ModelCardVersionSummary[] | undefined;
|
|
313
|
-
NextToken?: string;
|
|
313
|
+
NextToken?: string | undefined;
|
|
314
314
|
}
|
|
315
315
|
export interface ListModelExplainabilityJobDefinitionsRequest {
|
|
316
|
-
EndpointName?: string;
|
|
317
|
-
SortBy?: MonitoringJobDefinitionSortKey;
|
|
318
|
-
SortOrder?: SortOrder;
|
|
319
|
-
NextToken?: string;
|
|
320
|
-
MaxResults?: number;
|
|
321
|
-
NameContains?: string;
|
|
322
|
-
CreationTimeBefore?: Date;
|
|
323
|
-
CreationTimeAfter?: Date;
|
|
316
|
+
EndpointName?: string | undefined;
|
|
317
|
+
SortBy?: MonitoringJobDefinitionSortKey | undefined;
|
|
318
|
+
SortOrder?: SortOrder | undefined;
|
|
319
|
+
NextToken?: string | undefined;
|
|
320
|
+
MaxResults?: number | undefined;
|
|
321
|
+
NameContains?: string | undefined;
|
|
322
|
+
CreationTimeBefore?: Date | undefined;
|
|
323
|
+
CreationTimeAfter?: Date | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface ListModelExplainabilityJobDefinitionsResponse {
|
|
326
326
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
327
|
-
NextToken?: string;
|
|
327
|
+
NextToken?: string | undefined;
|
|
328
328
|
}
|
|
329
329
|
export declare const ModelMetadataFilterType: {
|
|
330
330
|
readonly DOMAIN: "Domain";
|
|
@@ -339,12 +339,12 @@ export interface ModelMetadataFilter {
|
|
|
339
339
|
Value: string | undefined;
|
|
340
340
|
}
|
|
341
341
|
export interface ModelMetadataSearchExpression {
|
|
342
|
-
Filters?: ModelMetadataFilter[];
|
|
342
|
+
Filters?: ModelMetadataFilter[] | undefined;
|
|
343
343
|
}
|
|
344
344
|
export interface ListModelMetadataRequest {
|
|
345
|
-
SearchExpression?: ModelMetadataSearchExpression;
|
|
346
|
-
NextToken?: string;
|
|
347
|
-
MaxResults?: number;
|
|
345
|
+
SearchExpression?: ModelMetadataSearchExpression | undefined;
|
|
346
|
+
NextToken?: string | undefined;
|
|
347
|
+
MaxResults?: number | undefined;
|
|
348
348
|
}
|
|
349
349
|
export interface ModelMetadataSummary {
|
|
350
350
|
Domain: string | undefined;
|
|
@@ -355,7 +355,7 @@ export interface ModelMetadataSummary {
|
|
|
355
355
|
}
|
|
356
356
|
export interface ListModelMetadataResponse {
|
|
357
357
|
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
358
|
-
NextToken?: string;
|
|
358
|
+
NextToken?: string | undefined;
|
|
359
359
|
}
|
|
360
360
|
export declare const ModelPackageGroupSortBy: {
|
|
361
361
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -364,25 +364,25 @@ export declare const ModelPackageGroupSortBy: {
|
|
|
364
364
|
export type ModelPackageGroupSortBy =
|
|
365
365
|
(typeof ModelPackageGroupSortBy)[keyof typeof ModelPackageGroupSortBy];
|
|
366
366
|
export interface ListModelPackageGroupsInput {
|
|
367
|
-
CreationTimeAfter?: Date;
|
|
368
|
-
CreationTimeBefore?: Date;
|
|
369
|
-
MaxResults?: number;
|
|
370
|
-
NameContains?: string;
|
|
371
|
-
NextToken?: string;
|
|
372
|
-
SortBy?: ModelPackageGroupSortBy;
|
|
373
|
-
SortOrder?: SortOrder;
|
|
374
|
-
CrossAccountFilterOption?: CrossAccountFilterOption;
|
|
367
|
+
CreationTimeAfter?: Date | undefined;
|
|
368
|
+
CreationTimeBefore?: Date | undefined;
|
|
369
|
+
MaxResults?: number | undefined;
|
|
370
|
+
NameContains?: string | undefined;
|
|
371
|
+
NextToken?: string | undefined;
|
|
372
|
+
SortBy?: ModelPackageGroupSortBy | undefined;
|
|
373
|
+
SortOrder?: SortOrder | undefined;
|
|
374
|
+
CrossAccountFilterOption?: CrossAccountFilterOption | undefined;
|
|
375
375
|
}
|
|
376
376
|
export interface ModelPackageGroupSummary {
|
|
377
377
|
ModelPackageGroupName: string | undefined;
|
|
378
378
|
ModelPackageGroupArn: string | undefined;
|
|
379
|
-
ModelPackageGroupDescription?: string;
|
|
379
|
+
ModelPackageGroupDescription?: string | undefined;
|
|
380
380
|
CreationTime: Date | undefined;
|
|
381
381
|
ModelPackageGroupStatus: ModelPackageGroupStatus | undefined;
|
|
382
382
|
}
|
|
383
383
|
export interface ListModelPackageGroupsOutput {
|
|
384
384
|
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
385
|
-
NextToken?: string;
|
|
385
|
+
NextToken?: string | undefined;
|
|
386
386
|
}
|
|
387
387
|
export declare const ModelPackageType: {
|
|
388
388
|
readonly BOTH: "Both";
|
|
@@ -398,44 +398,44 @@ export declare const ModelPackageSortBy: {
|
|
|
398
398
|
export type ModelPackageSortBy =
|
|
399
399
|
(typeof ModelPackageSortBy)[keyof typeof ModelPackageSortBy];
|
|
400
400
|
export interface ListModelPackagesInput {
|
|
401
|
-
CreationTimeAfter?: Date;
|
|
402
|
-
CreationTimeBefore?: Date;
|
|
403
|
-
MaxResults?: number;
|
|
404
|
-
NameContains?: string;
|
|
405
|
-
ModelApprovalStatus?: ModelApprovalStatus;
|
|
406
|
-
ModelPackageGroupName?: string;
|
|
407
|
-
ModelPackageType?: ModelPackageType;
|
|
408
|
-
NextToken?: string;
|
|
409
|
-
SortBy?: ModelPackageSortBy;
|
|
410
|
-
SortOrder?: SortOrder;
|
|
401
|
+
CreationTimeAfter?: Date | undefined;
|
|
402
|
+
CreationTimeBefore?: Date | undefined;
|
|
403
|
+
MaxResults?: number | undefined;
|
|
404
|
+
NameContains?: string | undefined;
|
|
405
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
406
|
+
ModelPackageGroupName?: string | undefined;
|
|
407
|
+
ModelPackageType?: ModelPackageType | undefined;
|
|
408
|
+
NextToken?: string | undefined;
|
|
409
|
+
SortBy?: ModelPackageSortBy | undefined;
|
|
410
|
+
SortOrder?: SortOrder | undefined;
|
|
411
411
|
}
|
|
412
412
|
export interface ModelPackageSummary {
|
|
413
|
-
ModelPackageName?: string;
|
|
414
|
-
ModelPackageGroupName?: string;
|
|
415
|
-
ModelPackageVersion?: number;
|
|
413
|
+
ModelPackageName?: string | undefined;
|
|
414
|
+
ModelPackageGroupName?: string | undefined;
|
|
415
|
+
ModelPackageVersion?: number | undefined;
|
|
416
416
|
ModelPackageArn: string | undefined;
|
|
417
|
-
ModelPackageDescription?: string;
|
|
417
|
+
ModelPackageDescription?: string | undefined;
|
|
418
418
|
CreationTime: Date | undefined;
|
|
419
419
|
ModelPackageStatus: ModelPackageStatus | undefined;
|
|
420
|
-
ModelApprovalStatus?: ModelApprovalStatus;
|
|
420
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
421
421
|
}
|
|
422
422
|
export interface ListModelPackagesOutput {
|
|
423
423
|
ModelPackageSummaryList: ModelPackageSummary[] | undefined;
|
|
424
|
-
NextToken?: string;
|
|
424
|
+
NextToken?: string | undefined;
|
|
425
425
|
}
|
|
426
426
|
export interface ListModelQualityJobDefinitionsRequest {
|
|
427
|
-
EndpointName?: string;
|
|
428
|
-
SortBy?: MonitoringJobDefinitionSortKey;
|
|
429
|
-
SortOrder?: SortOrder;
|
|
430
|
-
NextToken?: string;
|
|
431
|
-
MaxResults?: number;
|
|
432
|
-
NameContains?: string;
|
|
433
|
-
CreationTimeBefore?: Date;
|
|
434
|
-
CreationTimeAfter?: Date;
|
|
427
|
+
EndpointName?: string | undefined;
|
|
428
|
+
SortBy?: MonitoringJobDefinitionSortKey | undefined;
|
|
429
|
+
SortOrder?: SortOrder | undefined;
|
|
430
|
+
NextToken?: string | undefined;
|
|
431
|
+
MaxResults?: number | undefined;
|
|
432
|
+
NameContains?: string | undefined;
|
|
433
|
+
CreationTimeBefore?: Date | undefined;
|
|
434
|
+
CreationTimeAfter?: Date | undefined;
|
|
435
435
|
}
|
|
436
436
|
export interface ListModelQualityJobDefinitionsResponse {
|
|
437
437
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
438
|
-
NextToken?: string;
|
|
438
|
+
NextToken?: string | undefined;
|
|
439
439
|
}
|
|
440
440
|
export declare const ModelSortKey: {
|
|
441
441
|
readonly CreationTime: "CreationTime";
|
|
@@ -443,13 +443,13 @@ export declare const ModelSortKey: {
|
|
|
443
443
|
};
|
|
444
444
|
export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
|
|
445
445
|
export interface ListModelsInput {
|
|
446
|
-
SortBy?: ModelSortKey;
|
|
447
|
-
SortOrder?: OrderKey;
|
|
448
|
-
NextToken?: string;
|
|
449
|
-
MaxResults?: number;
|
|
450
|
-
NameContains?: string;
|
|
451
|
-
CreationTimeBefore?: Date;
|
|
452
|
-
CreationTimeAfter?: Date;
|
|
446
|
+
SortBy?: ModelSortKey | undefined;
|
|
447
|
+
SortOrder?: OrderKey | undefined;
|
|
448
|
+
NextToken?: string | undefined;
|
|
449
|
+
MaxResults?: number | undefined;
|
|
450
|
+
NameContains?: string | undefined;
|
|
451
|
+
CreationTimeBefore?: Date | undefined;
|
|
452
|
+
CreationTimeAfter?: Date | undefined;
|
|
453
453
|
}
|
|
454
454
|
export interface ModelSummary {
|
|
455
455
|
ModelName: string | undefined;
|
|
@@ -458,7 +458,7 @@ export interface ModelSummary {
|
|
|
458
458
|
}
|
|
459
459
|
export interface ListModelsOutput {
|
|
460
460
|
Models: ModelSummary[] | undefined;
|
|
461
|
-
NextToken?: string;
|
|
461
|
+
NextToken?: string | undefined;
|
|
462
462
|
}
|
|
463
463
|
export declare const MonitoringAlertHistorySortKey: {
|
|
464
464
|
readonly CreationTime: "CreationTime";
|
|
@@ -473,15 +473,15 @@ export declare const MonitoringAlertStatus: {
|
|
|
473
473
|
export type MonitoringAlertStatus =
|
|
474
474
|
(typeof MonitoringAlertStatus)[keyof typeof MonitoringAlertStatus];
|
|
475
475
|
export interface ListMonitoringAlertHistoryRequest {
|
|
476
|
-
MonitoringScheduleName?: string;
|
|
477
|
-
MonitoringAlertName?: string;
|
|
478
|
-
SortBy?: MonitoringAlertHistorySortKey;
|
|
479
|
-
SortOrder?: SortOrder;
|
|
480
|
-
NextToken?: string;
|
|
481
|
-
MaxResults?: number;
|
|
482
|
-
CreationTimeBefore?: Date;
|
|
483
|
-
CreationTimeAfter?: Date;
|
|
484
|
-
StatusEquals?: MonitoringAlertStatus;
|
|
476
|
+
MonitoringScheduleName?: string | undefined;
|
|
477
|
+
MonitoringAlertName?: string | undefined;
|
|
478
|
+
SortBy?: MonitoringAlertHistorySortKey | undefined;
|
|
479
|
+
SortOrder?: SortOrder | undefined;
|
|
480
|
+
NextToken?: string | undefined;
|
|
481
|
+
MaxResults?: number | undefined;
|
|
482
|
+
CreationTimeBefore?: Date | undefined;
|
|
483
|
+
CreationTimeAfter?: Date | undefined;
|
|
484
|
+
StatusEquals?: MonitoringAlertStatus | undefined;
|
|
485
485
|
}
|
|
486
486
|
export interface MonitoringAlertHistorySummary {
|
|
487
487
|
MonitoringScheduleName: string | undefined;
|
|
@@ -490,19 +490,19 @@ export interface MonitoringAlertHistorySummary {
|
|
|
490
490
|
AlertStatus: MonitoringAlertStatus | undefined;
|
|
491
491
|
}
|
|
492
492
|
export interface ListMonitoringAlertHistoryResponse {
|
|
493
|
-
MonitoringAlertHistory?: MonitoringAlertHistorySummary[];
|
|
494
|
-
NextToken?: string;
|
|
493
|
+
MonitoringAlertHistory?: MonitoringAlertHistorySummary[] | undefined;
|
|
494
|
+
NextToken?: string | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface ListMonitoringAlertsRequest {
|
|
497
497
|
MonitoringScheduleName: string | undefined;
|
|
498
|
-
NextToken?: string;
|
|
499
|
-
MaxResults?: number;
|
|
498
|
+
NextToken?: string | undefined;
|
|
499
|
+
MaxResults?: number | undefined;
|
|
500
500
|
}
|
|
501
501
|
export interface ModelDashboardIndicatorAction {
|
|
502
|
-
Enabled?: boolean;
|
|
502
|
+
Enabled?: boolean | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface MonitoringAlertActions {
|
|
505
|
-
ModelDashboardIndicator?: ModelDashboardIndicatorAction;
|
|
505
|
+
ModelDashboardIndicator?: ModelDashboardIndicatorAction | undefined;
|
|
506
506
|
}
|
|
507
507
|
export interface MonitoringAlertSummary {
|
|
508
508
|
MonitoringAlertName: string | undefined;
|
|
@@ -514,8 +514,8 @@ export interface MonitoringAlertSummary {
|
|
|
514
514
|
Actions: MonitoringAlertActions | undefined;
|
|
515
515
|
}
|
|
516
516
|
export interface ListMonitoringAlertsResponse {
|
|
517
|
-
MonitoringAlertSummaries?: MonitoringAlertSummary[];
|
|
518
|
-
NextToken?: string;
|
|
517
|
+
MonitoringAlertSummaries?: MonitoringAlertSummary[] | undefined;
|
|
518
|
+
NextToken?: string | undefined;
|
|
519
519
|
}
|
|
520
520
|
export declare const MonitoringExecutionSortKey: {
|
|
521
521
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -525,25 +525,25 @@ export declare const MonitoringExecutionSortKey: {
|
|
|
525
525
|
export type MonitoringExecutionSortKey =
|
|
526
526
|
(typeof MonitoringExecutionSortKey)[keyof typeof MonitoringExecutionSortKey];
|
|
527
527
|
export interface ListMonitoringExecutionsRequest {
|
|
528
|
-
MonitoringScheduleName?: string;
|
|
529
|
-
EndpointName?: string;
|
|
530
|
-
SortBy?: MonitoringExecutionSortKey;
|
|
531
|
-
SortOrder?: SortOrder;
|
|
532
|
-
NextToken?: string;
|
|
533
|
-
MaxResults?: number;
|
|
534
|
-
ScheduledTimeBefore?: Date;
|
|
535
|
-
ScheduledTimeAfter?: Date;
|
|
536
|
-
CreationTimeBefore?: Date;
|
|
537
|
-
CreationTimeAfter?: Date;
|
|
538
|
-
LastModifiedTimeBefore?: Date;
|
|
539
|
-
LastModifiedTimeAfter?: Date;
|
|
540
|
-
StatusEquals?: ExecutionStatus;
|
|
541
|
-
MonitoringJobDefinitionName?: string;
|
|
542
|
-
MonitoringTypeEquals?: MonitoringType;
|
|
528
|
+
MonitoringScheduleName?: string | undefined;
|
|
529
|
+
EndpointName?: string | undefined;
|
|
530
|
+
SortBy?: MonitoringExecutionSortKey | undefined;
|
|
531
|
+
SortOrder?: SortOrder | undefined;
|
|
532
|
+
NextToken?: string | undefined;
|
|
533
|
+
MaxResults?: number | undefined;
|
|
534
|
+
ScheduledTimeBefore?: Date | undefined;
|
|
535
|
+
ScheduledTimeAfter?: Date | undefined;
|
|
536
|
+
CreationTimeBefore?: Date | undefined;
|
|
537
|
+
CreationTimeAfter?: Date | undefined;
|
|
538
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
539
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
540
|
+
StatusEquals?: ExecutionStatus | undefined;
|
|
541
|
+
MonitoringJobDefinitionName?: string | undefined;
|
|
542
|
+
MonitoringTypeEquals?: MonitoringType | undefined;
|
|
543
543
|
}
|
|
544
544
|
export interface ListMonitoringExecutionsResponse {
|
|
545
545
|
MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
|
|
546
|
-
NextToken?: string;
|
|
546
|
+
NextToken?: string | undefined;
|
|
547
547
|
}
|
|
548
548
|
export declare const MonitoringScheduleSortKey: {
|
|
549
549
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -553,19 +553,19 @@ export declare const MonitoringScheduleSortKey: {
|
|
|
553
553
|
export type MonitoringScheduleSortKey =
|
|
554
554
|
(typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
|
|
555
555
|
export interface ListMonitoringSchedulesRequest {
|
|
556
|
-
EndpointName?: string;
|
|
557
|
-
SortBy?: MonitoringScheduleSortKey;
|
|
558
|
-
SortOrder?: SortOrder;
|
|
559
|
-
NextToken?: string;
|
|
560
|
-
MaxResults?: number;
|
|
561
|
-
NameContains?: string;
|
|
562
|
-
CreationTimeBefore?: Date;
|
|
563
|
-
CreationTimeAfter?: Date;
|
|
564
|
-
LastModifiedTimeBefore?: Date;
|
|
565
|
-
LastModifiedTimeAfter?: Date;
|
|
566
|
-
StatusEquals?: ScheduleStatus;
|
|
567
|
-
MonitoringJobDefinitionName?: string;
|
|
568
|
-
MonitoringTypeEquals?: MonitoringType;
|
|
556
|
+
EndpointName?: string | undefined;
|
|
557
|
+
SortBy?: MonitoringScheduleSortKey | undefined;
|
|
558
|
+
SortOrder?: SortOrder | undefined;
|
|
559
|
+
NextToken?: string | undefined;
|
|
560
|
+
MaxResults?: number | undefined;
|
|
561
|
+
NameContains?: string | undefined;
|
|
562
|
+
CreationTimeBefore?: Date | undefined;
|
|
563
|
+
CreationTimeAfter?: Date | undefined;
|
|
564
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
565
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
566
|
+
StatusEquals?: ScheduleStatus | undefined;
|
|
567
|
+
MonitoringJobDefinitionName?: string | undefined;
|
|
568
|
+
MonitoringTypeEquals?: MonitoringType | undefined;
|
|
569
569
|
}
|
|
570
570
|
export interface MonitoringScheduleSummary {
|
|
571
571
|
MonitoringScheduleName: string | undefined;
|
|
@@ -573,13 +573,13 @@ export interface MonitoringScheduleSummary {
|
|
|
573
573
|
CreationTime: Date | undefined;
|
|
574
574
|
LastModifiedTime: Date | undefined;
|
|
575
575
|
MonitoringScheduleStatus: ScheduleStatus | undefined;
|
|
576
|
-
EndpointName?: string;
|
|
577
|
-
MonitoringJobDefinitionName?: string;
|
|
578
|
-
MonitoringType?: MonitoringType;
|
|
576
|
+
EndpointName?: string | undefined;
|
|
577
|
+
MonitoringJobDefinitionName?: string | undefined;
|
|
578
|
+
MonitoringType?: MonitoringType | undefined;
|
|
579
579
|
}
|
|
580
580
|
export interface ListMonitoringSchedulesResponse {
|
|
581
581
|
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
582
|
-
NextToken?: string;
|
|
582
|
+
NextToken?: string | undefined;
|
|
583
583
|
}
|
|
584
584
|
export declare const NotebookInstanceLifecycleConfigSortKey: {
|
|
585
585
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -595,25 +595,27 @@ export declare const NotebookInstanceLifecycleConfigSortOrder: {
|
|
|
595
595
|
export type NotebookInstanceLifecycleConfigSortOrder =
|
|
596
596
|
(typeof NotebookInstanceLifecycleConfigSortOrder)[keyof typeof NotebookInstanceLifecycleConfigSortOrder];
|
|
597
597
|
export interface ListNotebookInstanceLifecycleConfigsInput {
|
|
598
|
-
NextToken?: string;
|
|
599
|
-
MaxResults?: number;
|
|
600
|
-
SortBy?: NotebookInstanceLifecycleConfigSortKey;
|
|
601
|
-
SortOrder?: NotebookInstanceLifecycleConfigSortOrder;
|
|
602
|
-
NameContains?: string;
|
|
603
|
-
CreationTimeBefore?: Date;
|
|
604
|
-
CreationTimeAfter?: Date;
|
|
605
|
-
LastModifiedTimeBefore?: Date;
|
|
606
|
-
LastModifiedTimeAfter?: Date;
|
|
598
|
+
NextToken?: string | undefined;
|
|
599
|
+
MaxResults?: number | undefined;
|
|
600
|
+
SortBy?: NotebookInstanceLifecycleConfigSortKey | undefined;
|
|
601
|
+
SortOrder?: NotebookInstanceLifecycleConfigSortOrder | undefined;
|
|
602
|
+
NameContains?: string | undefined;
|
|
603
|
+
CreationTimeBefore?: Date | undefined;
|
|
604
|
+
CreationTimeAfter?: Date | undefined;
|
|
605
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
606
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
607
607
|
}
|
|
608
608
|
export interface NotebookInstanceLifecycleConfigSummary {
|
|
609
609
|
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
610
610
|
NotebookInstanceLifecycleConfigArn: string | undefined;
|
|
611
|
-
CreationTime?: Date;
|
|
612
|
-
LastModifiedTime?: Date;
|
|
611
|
+
CreationTime?: Date | undefined;
|
|
612
|
+
LastModifiedTime?: Date | undefined;
|
|
613
613
|
}
|
|
614
614
|
export interface ListNotebookInstanceLifecycleConfigsOutput {
|
|
615
|
-
NextToken?: string;
|
|
616
|
-
NotebookInstanceLifecycleConfigs?:
|
|
615
|
+
NextToken?: string | undefined;
|
|
616
|
+
NotebookInstanceLifecycleConfigs?:
|
|
617
|
+
| NotebookInstanceLifecycleConfigSummary[]
|
|
618
|
+
| undefined;
|
|
617
619
|
}
|
|
618
620
|
export declare const NotebookInstanceSortKey: {
|
|
619
621
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -629,35 +631,35 @@ export declare const NotebookInstanceSortOrder: {
|
|
|
629
631
|
export type NotebookInstanceSortOrder =
|
|
630
632
|
(typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
|
|
631
633
|
export interface ListNotebookInstancesInput {
|
|
632
|
-
NextToken?: string;
|
|
633
|
-
MaxResults?: number;
|
|
634
|
-
SortBy?: NotebookInstanceSortKey;
|
|
635
|
-
SortOrder?: NotebookInstanceSortOrder;
|
|
636
|
-
NameContains?: string;
|
|
637
|
-
CreationTimeBefore?: Date;
|
|
638
|
-
CreationTimeAfter?: Date;
|
|
639
|
-
LastModifiedTimeBefore?: Date;
|
|
640
|
-
LastModifiedTimeAfter?: Date;
|
|
641
|
-
StatusEquals?: NotebookInstanceStatus;
|
|
642
|
-
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
643
|
-
DefaultCodeRepositoryContains?: string;
|
|
644
|
-
AdditionalCodeRepositoryEquals?: string;
|
|
634
|
+
NextToken?: string | undefined;
|
|
635
|
+
MaxResults?: number | undefined;
|
|
636
|
+
SortBy?: NotebookInstanceSortKey | undefined;
|
|
637
|
+
SortOrder?: NotebookInstanceSortOrder | undefined;
|
|
638
|
+
NameContains?: string | undefined;
|
|
639
|
+
CreationTimeBefore?: Date | undefined;
|
|
640
|
+
CreationTimeAfter?: Date | undefined;
|
|
641
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
642
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
643
|
+
StatusEquals?: NotebookInstanceStatus | undefined;
|
|
644
|
+
NotebookInstanceLifecycleConfigNameContains?: string | undefined;
|
|
645
|
+
DefaultCodeRepositoryContains?: string | undefined;
|
|
646
|
+
AdditionalCodeRepositoryEquals?: string | undefined;
|
|
645
647
|
}
|
|
646
648
|
export interface NotebookInstanceSummary {
|
|
647
649
|
NotebookInstanceName: string | undefined;
|
|
648
650
|
NotebookInstanceArn: string | undefined;
|
|
649
|
-
NotebookInstanceStatus?: NotebookInstanceStatus;
|
|
650
|
-
Url?: string;
|
|
651
|
-
InstanceType?: _InstanceType;
|
|
652
|
-
CreationTime?: Date;
|
|
653
|
-
LastModifiedTime?: Date;
|
|
654
|
-
NotebookInstanceLifecycleConfigName?: string;
|
|
655
|
-
DefaultCodeRepository?: string;
|
|
656
|
-
AdditionalCodeRepositories?: string[];
|
|
651
|
+
NotebookInstanceStatus?: NotebookInstanceStatus | undefined;
|
|
652
|
+
Url?: string | undefined;
|
|
653
|
+
InstanceType?: _InstanceType | undefined;
|
|
654
|
+
CreationTime?: Date | undefined;
|
|
655
|
+
LastModifiedTime?: Date | undefined;
|
|
656
|
+
NotebookInstanceLifecycleConfigName?: string | undefined;
|
|
657
|
+
DefaultCodeRepository?: string | undefined;
|
|
658
|
+
AdditionalCodeRepositories?: string[] | undefined;
|
|
657
659
|
}
|
|
658
660
|
export interface ListNotebookInstancesOutput {
|
|
659
|
-
NextToken?: string;
|
|
660
|
-
NotebookInstances?: NotebookInstanceSummary[];
|
|
661
|
+
NextToken?: string | undefined;
|
|
662
|
+
NotebookInstances?: NotebookInstanceSummary[] | undefined;
|
|
661
663
|
}
|
|
662
664
|
export declare const ListOptimizationJobsSortBy: {
|
|
663
665
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -667,32 +669,32 @@ export declare const ListOptimizationJobsSortBy: {
|
|
|
667
669
|
export type ListOptimizationJobsSortBy =
|
|
668
670
|
(typeof ListOptimizationJobsSortBy)[keyof typeof ListOptimizationJobsSortBy];
|
|
669
671
|
export interface ListOptimizationJobsRequest {
|
|
670
|
-
NextToken?: string;
|
|
671
|
-
MaxResults?: number;
|
|
672
|
-
CreationTimeAfter?: Date;
|
|
673
|
-
CreationTimeBefore?: Date;
|
|
674
|
-
LastModifiedTimeAfter?: Date;
|
|
675
|
-
LastModifiedTimeBefore?: Date;
|
|
676
|
-
OptimizationContains?: string;
|
|
677
|
-
NameContains?: string;
|
|
678
|
-
StatusEquals?: OptimizationJobStatus;
|
|
679
|
-
SortBy?: ListOptimizationJobsSortBy;
|
|
680
|
-
SortOrder?: SortOrder;
|
|
672
|
+
NextToken?: string | undefined;
|
|
673
|
+
MaxResults?: number | undefined;
|
|
674
|
+
CreationTimeAfter?: Date | undefined;
|
|
675
|
+
CreationTimeBefore?: Date | undefined;
|
|
676
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
677
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
678
|
+
OptimizationContains?: string | undefined;
|
|
679
|
+
NameContains?: string | undefined;
|
|
680
|
+
StatusEquals?: OptimizationJobStatus | undefined;
|
|
681
|
+
SortBy?: ListOptimizationJobsSortBy | undefined;
|
|
682
|
+
SortOrder?: SortOrder | undefined;
|
|
681
683
|
}
|
|
682
684
|
export interface OptimizationJobSummary {
|
|
683
685
|
OptimizationJobName: string | undefined;
|
|
684
686
|
OptimizationJobArn: string | undefined;
|
|
685
687
|
CreationTime: Date | undefined;
|
|
686
688
|
OptimizationJobStatus: OptimizationJobStatus | undefined;
|
|
687
|
-
OptimizationStartTime?: Date;
|
|
688
|
-
OptimizationEndTime?: Date;
|
|
689
|
-
LastModifiedTime?: Date;
|
|
689
|
+
OptimizationStartTime?: Date | undefined;
|
|
690
|
+
OptimizationEndTime?: Date | undefined;
|
|
691
|
+
LastModifiedTime?: Date | undefined;
|
|
690
692
|
DeploymentInstanceType: OptimizationJobDeploymentInstanceType | undefined;
|
|
691
693
|
OptimizationTypes: string[] | undefined;
|
|
692
694
|
}
|
|
693
695
|
export interface ListOptimizationJobsResponse {
|
|
694
696
|
OptimizationJobSummaries: OptimizationJobSummary[] | undefined;
|
|
695
|
-
NextToken?: string;
|
|
697
|
+
NextToken?: string | undefined;
|
|
696
698
|
}
|
|
697
699
|
export declare const SortPipelineExecutionsBy: {
|
|
698
700
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -702,81 +704,81 @@ export type SortPipelineExecutionsBy =
|
|
|
702
704
|
(typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
|
|
703
705
|
export interface ListPipelineExecutionsRequest {
|
|
704
706
|
PipelineName: string | undefined;
|
|
705
|
-
CreatedAfter?: Date;
|
|
706
|
-
CreatedBefore?: Date;
|
|
707
|
-
SortBy?: SortPipelineExecutionsBy;
|
|
708
|
-
SortOrder?: SortOrder;
|
|
709
|
-
NextToken?: string;
|
|
710
|
-
MaxResults?: number;
|
|
707
|
+
CreatedAfter?: Date | undefined;
|
|
708
|
+
CreatedBefore?: Date | undefined;
|
|
709
|
+
SortBy?: SortPipelineExecutionsBy | undefined;
|
|
710
|
+
SortOrder?: SortOrder | undefined;
|
|
711
|
+
NextToken?: string | undefined;
|
|
712
|
+
MaxResults?: number | undefined;
|
|
711
713
|
}
|
|
712
714
|
export interface PipelineExecutionSummary {
|
|
713
|
-
PipelineExecutionArn?: string;
|
|
714
|
-
StartTime?: Date;
|
|
715
|
-
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
716
|
-
PipelineExecutionDescription?: string;
|
|
717
|
-
PipelineExecutionDisplayName?: string;
|
|
718
|
-
PipelineExecutionFailureReason?: string;
|
|
715
|
+
PipelineExecutionArn?: string | undefined;
|
|
716
|
+
StartTime?: Date | undefined;
|
|
717
|
+
PipelineExecutionStatus?: PipelineExecutionStatus | undefined;
|
|
718
|
+
PipelineExecutionDescription?: string | undefined;
|
|
719
|
+
PipelineExecutionDisplayName?: string | undefined;
|
|
720
|
+
PipelineExecutionFailureReason?: string | undefined;
|
|
719
721
|
}
|
|
720
722
|
export interface ListPipelineExecutionsResponse {
|
|
721
|
-
PipelineExecutionSummaries?: PipelineExecutionSummary[];
|
|
722
|
-
NextToken?: string;
|
|
723
|
+
PipelineExecutionSummaries?: PipelineExecutionSummary[] | undefined;
|
|
724
|
+
NextToken?: string | undefined;
|
|
723
725
|
}
|
|
724
726
|
export interface ListPipelineExecutionStepsRequest {
|
|
725
|
-
PipelineExecutionArn?: string;
|
|
726
|
-
NextToken?: string;
|
|
727
|
-
MaxResults?: number;
|
|
728
|
-
SortOrder?: SortOrder;
|
|
727
|
+
PipelineExecutionArn?: string | undefined;
|
|
728
|
+
NextToken?: string | undefined;
|
|
729
|
+
MaxResults?: number | undefined;
|
|
730
|
+
SortOrder?: SortOrder | undefined;
|
|
729
731
|
}
|
|
730
732
|
export interface ModelStepMetadata {
|
|
731
|
-
Arn?: string;
|
|
733
|
+
Arn?: string | undefined;
|
|
732
734
|
}
|
|
733
735
|
export interface ProcessingJobStepMetadata {
|
|
734
|
-
Arn?: string;
|
|
736
|
+
Arn?: string | undefined;
|
|
735
737
|
}
|
|
736
738
|
export interface QualityCheckStepMetadata {
|
|
737
|
-
CheckType?: string;
|
|
738
|
-
BaselineUsedForDriftCheckStatistics?: string;
|
|
739
|
-
BaselineUsedForDriftCheckConstraints?: string;
|
|
740
|
-
CalculatedBaselineStatistics?: string;
|
|
741
|
-
CalculatedBaselineConstraints?: string;
|
|
742
|
-
ModelPackageGroupName?: string;
|
|
743
|
-
ViolationReport?: string;
|
|
744
|
-
CheckJobArn?: string;
|
|
745
|
-
SkipCheck?: boolean;
|
|
746
|
-
RegisterNewBaseline?: boolean;
|
|
739
|
+
CheckType?: string | undefined;
|
|
740
|
+
BaselineUsedForDriftCheckStatistics?: string | undefined;
|
|
741
|
+
BaselineUsedForDriftCheckConstraints?: string | undefined;
|
|
742
|
+
CalculatedBaselineStatistics?: string | undefined;
|
|
743
|
+
CalculatedBaselineConstraints?: string | undefined;
|
|
744
|
+
ModelPackageGroupName?: string | undefined;
|
|
745
|
+
ViolationReport?: string | undefined;
|
|
746
|
+
CheckJobArn?: string | undefined;
|
|
747
|
+
SkipCheck?: boolean | undefined;
|
|
748
|
+
RegisterNewBaseline?: boolean | undefined;
|
|
747
749
|
}
|
|
748
750
|
export interface RegisterModelStepMetadata {
|
|
749
|
-
Arn?: string;
|
|
751
|
+
Arn?: string | undefined;
|
|
750
752
|
}
|
|
751
753
|
export interface TrainingJobStepMetadata {
|
|
752
|
-
Arn?: string;
|
|
754
|
+
Arn?: string | undefined;
|
|
753
755
|
}
|
|
754
756
|
export interface TransformJobStepMetadata {
|
|
755
|
-
Arn?: string;
|
|
757
|
+
Arn?: string | undefined;
|
|
756
758
|
}
|
|
757
759
|
export interface TuningJobStepMetaData {
|
|
758
|
-
Arn?: string;
|
|
760
|
+
Arn?: string | undefined;
|
|
759
761
|
}
|
|
760
762
|
export interface PipelineExecutionStepMetadata {
|
|
761
|
-
TrainingJob?: TrainingJobStepMetadata;
|
|
762
|
-
ProcessingJob?: ProcessingJobStepMetadata;
|
|
763
|
-
TransformJob?: TransformJobStepMetadata;
|
|
764
|
-
TuningJob?: TuningJobStepMetaData;
|
|
765
|
-
Model?: ModelStepMetadata;
|
|
766
|
-
RegisterModel?: RegisterModelStepMetadata;
|
|
767
|
-
Condition?: ConditionStepMetadata;
|
|
768
|
-
Callback?: CallbackStepMetadata;
|
|
769
|
-
Lambda?: LambdaStepMetadata;
|
|
770
|
-
EMR?: EMRStepMetadata;
|
|
771
|
-
QualityCheck?: QualityCheckStepMetadata;
|
|
772
|
-
ClarifyCheck?: ClarifyCheckStepMetadata;
|
|
773
|
-
Fail?: FailStepMetadata;
|
|
774
|
-
AutoMLJob?: AutoMLJobStepMetadata;
|
|
775
|
-
Endpoint?: EndpointStepMetadata;
|
|
776
|
-
EndpointConfig?: EndpointConfigStepMetadata;
|
|
763
|
+
TrainingJob?: TrainingJobStepMetadata | undefined;
|
|
764
|
+
ProcessingJob?: ProcessingJobStepMetadata | undefined;
|
|
765
|
+
TransformJob?: TransformJobStepMetadata | undefined;
|
|
766
|
+
TuningJob?: TuningJobStepMetaData | undefined;
|
|
767
|
+
Model?: ModelStepMetadata | undefined;
|
|
768
|
+
RegisterModel?: RegisterModelStepMetadata | undefined;
|
|
769
|
+
Condition?: ConditionStepMetadata | undefined;
|
|
770
|
+
Callback?: CallbackStepMetadata | undefined;
|
|
771
|
+
Lambda?: LambdaStepMetadata | undefined;
|
|
772
|
+
EMR?: EMRStepMetadata | undefined;
|
|
773
|
+
QualityCheck?: QualityCheckStepMetadata | undefined;
|
|
774
|
+
ClarifyCheck?: ClarifyCheckStepMetadata | undefined;
|
|
775
|
+
Fail?: FailStepMetadata | undefined;
|
|
776
|
+
AutoMLJob?: AutoMLJobStepMetadata | undefined;
|
|
777
|
+
Endpoint?: EndpointStepMetadata | undefined;
|
|
778
|
+
EndpointConfig?: EndpointConfigStepMetadata | undefined;
|
|
777
779
|
}
|
|
778
780
|
export interface SelectiveExecutionResult {
|
|
779
|
-
SourcePipelineExecutionArn?: string;
|
|
781
|
+
SourcePipelineExecutionArn?: string | undefined;
|
|
780
782
|
}
|
|
781
783
|
export declare const StepStatus: {
|
|
782
784
|
readonly EXECUTING: "Executing";
|
|
@@ -788,34 +790,34 @@ export declare const StepStatus: {
|
|
|
788
790
|
};
|
|
789
791
|
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
790
792
|
export interface PipelineExecutionStep {
|
|
791
|
-
StepName?: string;
|
|
792
|
-
StepDisplayName?: string;
|
|
793
|
-
StepDescription?: string;
|
|
794
|
-
StartTime?: Date;
|
|
795
|
-
EndTime?: Date;
|
|
796
|
-
StepStatus?: StepStatus;
|
|
797
|
-
CacheHitResult?: CacheHitResult;
|
|
798
|
-
FailureReason?: string;
|
|
799
|
-
Metadata?: PipelineExecutionStepMetadata;
|
|
800
|
-
AttemptCount?: number;
|
|
801
|
-
SelectiveExecutionResult?: SelectiveExecutionResult;
|
|
793
|
+
StepName?: string | undefined;
|
|
794
|
+
StepDisplayName?: string | undefined;
|
|
795
|
+
StepDescription?: string | undefined;
|
|
796
|
+
StartTime?: Date | undefined;
|
|
797
|
+
EndTime?: Date | undefined;
|
|
798
|
+
StepStatus?: StepStatus | undefined;
|
|
799
|
+
CacheHitResult?: CacheHitResult | undefined;
|
|
800
|
+
FailureReason?: string | undefined;
|
|
801
|
+
Metadata?: PipelineExecutionStepMetadata | undefined;
|
|
802
|
+
AttemptCount?: number | undefined;
|
|
803
|
+
SelectiveExecutionResult?: SelectiveExecutionResult | undefined;
|
|
802
804
|
}
|
|
803
805
|
export interface ListPipelineExecutionStepsResponse {
|
|
804
|
-
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
805
|
-
NextToken?: string;
|
|
806
|
+
PipelineExecutionSteps?: PipelineExecutionStep[] | undefined;
|
|
807
|
+
NextToken?: string | undefined;
|
|
806
808
|
}
|
|
807
809
|
export interface ListPipelineParametersForExecutionRequest {
|
|
808
810
|
PipelineExecutionArn: string | undefined;
|
|
809
|
-
NextToken?: string;
|
|
810
|
-
MaxResults?: number;
|
|
811
|
+
NextToken?: string | undefined;
|
|
812
|
+
MaxResults?: number | undefined;
|
|
811
813
|
}
|
|
812
814
|
export interface Parameter {
|
|
813
815
|
Name: string | undefined;
|
|
814
816
|
Value: string | undefined;
|
|
815
817
|
}
|
|
816
818
|
export interface ListPipelineParametersForExecutionResponse {
|
|
817
|
-
PipelineParameters?: Parameter[];
|
|
818
|
-
NextToken?: string;
|
|
819
|
+
PipelineParameters?: Parameter[] | undefined;
|
|
820
|
+
NextToken?: string | undefined;
|
|
819
821
|
}
|
|
820
822
|
export declare const SortPipelinesBy: {
|
|
821
823
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -824,53 +826,53 @@ export declare const SortPipelinesBy: {
|
|
|
824
826
|
export type SortPipelinesBy =
|
|
825
827
|
(typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
826
828
|
export interface ListPipelinesRequest {
|
|
827
|
-
PipelineNamePrefix?: string;
|
|
828
|
-
CreatedAfter?: Date;
|
|
829
|
-
CreatedBefore?: Date;
|
|
830
|
-
SortBy?: SortPipelinesBy;
|
|
831
|
-
SortOrder?: SortOrder;
|
|
832
|
-
NextToken?: string;
|
|
833
|
-
MaxResults?: number;
|
|
829
|
+
PipelineNamePrefix?: string | undefined;
|
|
830
|
+
CreatedAfter?: Date | undefined;
|
|
831
|
+
CreatedBefore?: Date | undefined;
|
|
832
|
+
SortBy?: SortPipelinesBy | undefined;
|
|
833
|
+
SortOrder?: SortOrder | undefined;
|
|
834
|
+
NextToken?: string | undefined;
|
|
835
|
+
MaxResults?: number | undefined;
|
|
834
836
|
}
|
|
835
837
|
export interface PipelineSummary {
|
|
836
|
-
PipelineArn?: string;
|
|
837
|
-
PipelineName?: string;
|
|
838
|
-
PipelineDisplayName?: string;
|
|
839
|
-
PipelineDescription?: string;
|
|
840
|
-
RoleArn?: string;
|
|
841
|
-
CreationTime?: Date;
|
|
842
|
-
LastModifiedTime?: Date;
|
|
843
|
-
LastExecutionTime?: Date;
|
|
838
|
+
PipelineArn?: string | undefined;
|
|
839
|
+
PipelineName?: string | undefined;
|
|
840
|
+
PipelineDisplayName?: string | undefined;
|
|
841
|
+
PipelineDescription?: string | undefined;
|
|
842
|
+
RoleArn?: string | undefined;
|
|
843
|
+
CreationTime?: Date | undefined;
|
|
844
|
+
LastModifiedTime?: Date | undefined;
|
|
845
|
+
LastExecutionTime?: Date | undefined;
|
|
844
846
|
}
|
|
845
847
|
export interface ListPipelinesResponse {
|
|
846
|
-
PipelineSummaries?: PipelineSummary[];
|
|
847
|
-
NextToken?: string;
|
|
848
|
+
PipelineSummaries?: PipelineSummary[] | undefined;
|
|
849
|
+
NextToken?: string | undefined;
|
|
848
850
|
}
|
|
849
851
|
export interface ListProcessingJobsRequest {
|
|
850
|
-
CreationTimeAfter?: Date;
|
|
851
|
-
CreationTimeBefore?: Date;
|
|
852
|
-
LastModifiedTimeAfter?: Date;
|
|
853
|
-
LastModifiedTimeBefore?: Date;
|
|
854
|
-
NameContains?: string;
|
|
855
|
-
StatusEquals?: ProcessingJobStatus;
|
|
856
|
-
SortBy?: SortBy;
|
|
857
|
-
SortOrder?: SortOrder;
|
|
858
|
-
NextToken?: string;
|
|
859
|
-
MaxResults?: number;
|
|
852
|
+
CreationTimeAfter?: Date | undefined;
|
|
853
|
+
CreationTimeBefore?: Date | undefined;
|
|
854
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
855
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
856
|
+
NameContains?: string | undefined;
|
|
857
|
+
StatusEquals?: ProcessingJobStatus | undefined;
|
|
858
|
+
SortBy?: SortBy | undefined;
|
|
859
|
+
SortOrder?: SortOrder | undefined;
|
|
860
|
+
NextToken?: string | undefined;
|
|
861
|
+
MaxResults?: number | undefined;
|
|
860
862
|
}
|
|
861
863
|
export interface ProcessingJobSummary {
|
|
862
864
|
ProcessingJobName: string | undefined;
|
|
863
865
|
ProcessingJobArn: string | undefined;
|
|
864
866
|
CreationTime: Date | undefined;
|
|
865
|
-
ProcessingEndTime?: Date;
|
|
866
|
-
LastModifiedTime?: Date;
|
|
867
|
+
ProcessingEndTime?: Date | undefined;
|
|
868
|
+
LastModifiedTime?: Date | undefined;
|
|
867
869
|
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
868
|
-
FailureReason?: string;
|
|
869
|
-
ExitMessage?: string;
|
|
870
|
+
FailureReason?: string | undefined;
|
|
871
|
+
ExitMessage?: string | undefined;
|
|
870
872
|
}
|
|
871
873
|
export interface ListProcessingJobsResponse {
|
|
872
874
|
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
873
|
-
NextToken?: string;
|
|
875
|
+
NextToken?: string | undefined;
|
|
874
876
|
}
|
|
875
877
|
export declare const ProjectSortBy: {
|
|
876
878
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -884,17 +886,17 @@ export declare const ProjectSortOrder: {
|
|
|
884
886
|
export type ProjectSortOrder =
|
|
885
887
|
(typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
886
888
|
export interface ListProjectsInput {
|
|
887
|
-
CreationTimeAfter?: Date;
|
|
888
|
-
CreationTimeBefore?: Date;
|
|
889
|
-
MaxResults?: number;
|
|
890
|
-
NameContains?: string;
|
|
891
|
-
NextToken?: string;
|
|
892
|
-
SortBy?: ProjectSortBy;
|
|
893
|
-
SortOrder?: ProjectSortOrder;
|
|
889
|
+
CreationTimeAfter?: Date | undefined;
|
|
890
|
+
CreationTimeBefore?: Date | undefined;
|
|
891
|
+
MaxResults?: number | undefined;
|
|
892
|
+
NameContains?: string | undefined;
|
|
893
|
+
NextToken?: string | undefined;
|
|
894
|
+
SortBy?: ProjectSortBy | undefined;
|
|
895
|
+
SortOrder?: ProjectSortOrder | undefined;
|
|
894
896
|
}
|
|
895
897
|
export interface ProjectSummary {
|
|
896
898
|
ProjectName: string | undefined;
|
|
897
|
-
ProjectDescription?: string;
|
|
899
|
+
ProjectDescription?: string | undefined;
|
|
898
900
|
ProjectArn: string | undefined;
|
|
899
901
|
ProjectId: string | undefined;
|
|
900
902
|
CreationTime: Date | undefined;
|
|
@@ -902,7 +904,7 @@ export interface ProjectSummary {
|
|
|
902
904
|
}
|
|
903
905
|
export interface ListProjectsOutput {
|
|
904
906
|
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
905
|
-
NextToken?: string;
|
|
907
|
+
NextToken?: string | undefined;
|
|
906
908
|
}
|
|
907
909
|
export declare const ResourceCatalogSortBy: {
|
|
908
910
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -916,13 +918,13 @@ export declare const ResourceCatalogSortOrder: {
|
|
|
916
918
|
export type ResourceCatalogSortOrder =
|
|
917
919
|
(typeof ResourceCatalogSortOrder)[keyof typeof ResourceCatalogSortOrder];
|
|
918
920
|
export interface ListResourceCatalogsRequest {
|
|
919
|
-
NameContains?: string;
|
|
920
|
-
CreationTimeAfter?: Date;
|
|
921
|
-
CreationTimeBefore?: Date;
|
|
922
|
-
SortOrder?: ResourceCatalogSortOrder;
|
|
923
|
-
SortBy?: ResourceCatalogSortBy;
|
|
924
|
-
MaxResults?: number;
|
|
925
|
-
NextToken?: string;
|
|
921
|
+
NameContains?: string | undefined;
|
|
922
|
+
CreationTimeAfter?: Date | undefined;
|
|
923
|
+
CreationTimeBefore?: Date | undefined;
|
|
924
|
+
SortOrder?: ResourceCatalogSortOrder | undefined;
|
|
925
|
+
SortBy?: ResourceCatalogSortBy | undefined;
|
|
926
|
+
MaxResults?: number | undefined;
|
|
927
|
+
NextToken?: string | undefined;
|
|
926
928
|
}
|
|
927
929
|
export interface ResourceCatalog {
|
|
928
930
|
ResourceCatalogArn: string | undefined;
|
|
@@ -931,8 +933,8 @@ export interface ResourceCatalog {
|
|
|
931
933
|
CreationTime: Date | undefined;
|
|
932
934
|
}
|
|
933
935
|
export interface ListResourceCatalogsResponse {
|
|
934
|
-
ResourceCatalogs?: ResourceCatalog[];
|
|
935
|
-
NextToken?: string;
|
|
936
|
+
ResourceCatalogs?: ResourceCatalog[] | undefined;
|
|
937
|
+
NextToken?: string | undefined;
|
|
936
938
|
}
|
|
937
939
|
export declare const SpaceSortKey: {
|
|
938
940
|
readonly CreationTime: "CreationTime";
|
|
@@ -940,48 +942,48 @@ export declare const SpaceSortKey: {
|
|
|
940
942
|
};
|
|
941
943
|
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
942
944
|
export interface ListSpacesRequest {
|
|
943
|
-
NextToken?: string;
|
|
944
|
-
MaxResults?: number;
|
|
945
|
-
SortOrder?: SortOrder;
|
|
946
|
-
SortBy?: SpaceSortKey;
|
|
947
|
-
DomainIdEquals?: string;
|
|
948
|
-
SpaceNameContains?: string;
|
|
945
|
+
NextToken?: string | undefined;
|
|
946
|
+
MaxResults?: number | undefined;
|
|
947
|
+
SortOrder?: SortOrder | undefined;
|
|
948
|
+
SortBy?: SpaceSortKey | undefined;
|
|
949
|
+
DomainIdEquals?: string | undefined;
|
|
950
|
+
SpaceNameContains?: string | undefined;
|
|
949
951
|
}
|
|
950
952
|
export interface OwnershipSettingsSummary {
|
|
951
|
-
OwnerUserProfileName?: string;
|
|
953
|
+
OwnerUserProfileName?: string | undefined;
|
|
952
954
|
}
|
|
953
955
|
export interface SpaceSettingsSummary {
|
|
954
|
-
AppType?: AppType;
|
|
955
|
-
SpaceStorageSettings?: SpaceStorageSettings;
|
|
956
|
+
AppType?: AppType | undefined;
|
|
957
|
+
SpaceStorageSettings?: SpaceStorageSettings | undefined;
|
|
956
958
|
}
|
|
957
959
|
export interface SpaceSharingSettingsSummary {
|
|
958
|
-
SharingType?: SharingType;
|
|
960
|
+
SharingType?: SharingType | undefined;
|
|
959
961
|
}
|
|
960
962
|
export interface SpaceDetails {
|
|
961
|
-
DomainId?: string;
|
|
962
|
-
SpaceName?: string;
|
|
963
|
-
Status?: SpaceStatus;
|
|
964
|
-
CreationTime?: Date;
|
|
965
|
-
LastModifiedTime?: Date;
|
|
966
|
-
SpaceSettingsSummary?: SpaceSettingsSummary;
|
|
967
|
-
SpaceSharingSettingsSummary?: SpaceSharingSettingsSummary;
|
|
968
|
-
OwnershipSettingsSummary?: OwnershipSettingsSummary;
|
|
969
|
-
SpaceDisplayName?: string;
|
|
963
|
+
DomainId?: string | undefined;
|
|
964
|
+
SpaceName?: string | undefined;
|
|
965
|
+
Status?: SpaceStatus | undefined;
|
|
966
|
+
CreationTime?: Date | undefined;
|
|
967
|
+
LastModifiedTime?: Date | undefined;
|
|
968
|
+
SpaceSettingsSummary?: SpaceSettingsSummary | undefined;
|
|
969
|
+
SpaceSharingSettingsSummary?: SpaceSharingSettingsSummary | undefined;
|
|
970
|
+
OwnershipSettingsSummary?: OwnershipSettingsSummary | undefined;
|
|
971
|
+
SpaceDisplayName?: string | undefined;
|
|
970
972
|
}
|
|
971
973
|
export interface ListSpacesResponse {
|
|
972
|
-
Spaces?: SpaceDetails[];
|
|
973
|
-
NextToken?: string;
|
|
974
|
+
Spaces?: SpaceDetails[] | undefined;
|
|
975
|
+
NextToken?: string | undefined;
|
|
974
976
|
}
|
|
975
977
|
export interface ListStageDevicesRequest {
|
|
976
|
-
NextToken?: string;
|
|
977
|
-
MaxResults?: number;
|
|
978
|
+
NextToken?: string | undefined;
|
|
979
|
+
MaxResults?: number | undefined;
|
|
978
980
|
EdgeDeploymentPlanName: string | undefined;
|
|
979
|
-
ExcludeDevicesDeployedInOtherStage?: boolean;
|
|
981
|
+
ExcludeDevicesDeployedInOtherStage?: boolean | undefined;
|
|
980
982
|
StageName: string | undefined;
|
|
981
983
|
}
|
|
982
984
|
export interface ListStageDevicesResponse {
|
|
983
985
|
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
984
|
-
NextToken?: string;
|
|
986
|
+
NextToken?: string | undefined;
|
|
985
987
|
}
|
|
986
988
|
export declare const StudioLifecycleConfigSortKey: {
|
|
987
989
|
readonly CreationTime: "CreationTime";
|
|
@@ -991,72 +993,72 @@ export declare const StudioLifecycleConfigSortKey: {
|
|
|
991
993
|
export type StudioLifecycleConfigSortKey =
|
|
992
994
|
(typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
993
995
|
export interface ListStudioLifecycleConfigsRequest {
|
|
994
|
-
MaxResults?: number;
|
|
995
|
-
NextToken?: string;
|
|
996
|
-
NameContains?: string;
|
|
997
|
-
AppTypeEquals?: StudioLifecycleConfigAppType;
|
|
998
|
-
CreationTimeBefore?: Date;
|
|
999
|
-
CreationTimeAfter?: Date;
|
|
1000
|
-
ModifiedTimeBefore?: Date;
|
|
1001
|
-
ModifiedTimeAfter?: Date;
|
|
1002
|
-
SortBy?: StudioLifecycleConfigSortKey;
|
|
1003
|
-
SortOrder?: SortOrder;
|
|
996
|
+
MaxResults?: number | undefined;
|
|
997
|
+
NextToken?: string | undefined;
|
|
998
|
+
NameContains?: string | undefined;
|
|
999
|
+
AppTypeEquals?: StudioLifecycleConfigAppType | undefined;
|
|
1000
|
+
CreationTimeBefore?: Date | undefined;
|
|
1001
|
+
CreationTimeAfter?: Date | undefined;
|
|
1002
|
+
ModifiedTimeBefore?: Date | undefined;
|
|
1003
|
+
ModifiedTimeAfter?: Date | undefined;
|
|
1004
|
+
SortBy?: StudioLifecycleConfigSortKey | undefined;
|
|
1005
|
+
SortOrder?: SortOrder | undefined;
|
|
1004
1006
|
}
|
|
1005
1007
|
export interface StudioLifecycleConfigDetails {
|
|
1006
|
-
StudioLifecycleConfigArn?: string;
|
|
1007
|
-
StudioLifecycleConfigName?: string;
|
|
1008
|
-
CreationTime?: Date;
|
|
1009
|
-
LastModifiedTime?: Date;
|
|
1010
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
1008
|
+
StudioLifecycleConfigArn?: string | undefined;
|
|
1009
|
+
StudioLifecycleConfigName?: string | undefined;
|
|
1010
|
+
CreationTime?: Date | undefined;
|
|
1011
|
+
LastModifiedTime?: Date | undefined;
|
|
1012
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType | undefined;
|
|
1011
1013
|
}
|
|
1012
1014
|
export interface ListStudioLifecycleConfigsResponse {
|
|
1013
|
-
NextToken?: string;
|
|
1014
|
-
StudioLifecycleConfigs?: StudioLifecycleConfigDetails[];
|
|
1015
|
+
NextToken?: string | undefined;
|
|
1016
|
+
StudioLifecycleConfigs?: StudioLifecycleConfigDetails[] | undefined;
|
|
1015
1017
|
}
|
|
1016
1018
|
export interface ListSubscribedWorkteamsRequest {
|
|
1017
|
-
NameContains?: string;
|
|
1018
|
-
NextToken?: string;
|
|
1019
|
-
MaxResults?: number;
|
|
1019
|
+
NameContains?: string | undefined;
|
|
1020
|
+
NextToken?: string | undefined;
|
|
1021
|
+
MaxResults?: number | undefined;
|
|
1020
1022
|
}
|
|
1021
1023
|
export interface ListSubscribedWorkteamsResponse {
|
|
1022
1024
|
SubscribedWorkteams: SubscribedWorkteam[] | undefined;
|
|
1023
|
-
NextToken?: string;
|
|
1025
|
+
NextToken?: string | undefined;
|
|
1024
1026
|
}
|
|
1025
1027
|
export interface ListTagsInput {
|
|
1026
1028
|
ResourceArn: string | undefined;
|
|
1027
|
-
NextToken?: string;
|
|
1028
|
-
MaxResults?: number;
|
|
1029
|
+
NextToken?: string | undefined;
|
|
1030
|
+
MaxResults?: number | undefined;
|
|
1029
1031
|
}
|
|
1030
1032
|
export interface ListTagsOutput {
|
|
1031
|
-
Tags?: Tag[];
|
|
1032
|
-
NextToken?: string;
|
|
1033
|
+
Tags?: Tag[] | undefined;
|
|
1034
|
+
NextToken?: string | undefined;
|
|
1033
1035
|
}
|
|
1034
1036
|
export interface ListTrainingJobsRequest {
|
|
1035
|
-
NextToken?: string;
|
|
1036
|
-
MaxResults?: number;
|
|
1037
|
-
CreationTimeAfter?: Date;
|
|
1038
|
-
CreationTimeBefore?: Date;
|
|
1039
|
-
LastModifiedTimeAfter?: Date;
|
|
1040
|
-
LastModifiedTimeBefore?: Date;
|
|
1041
|
-
NameContains?: string;
|
|
1042
|
-
StatusEquals?: TrainingJobStatus;
|
|
1043
|
-
SortBy?: SortBy;
|
|
1044
|
-
SortOrder?: SortOrder;
|
|
1045
|
-
WarmPoolStatusEquals?: WarmPoolResourceStatus;
|
|
1037
|
+
NextToken?: string | undefined;
|
|
1038
|
+
MaxResults?: number | undefined;
|
|
1039
|
+
CreationTimeAfter?: Date | undefined;
|
|
1040
|
+
CreationTimeBefore?: Date | undefined;
|
|
1041
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
1042
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
1043
|
+
NameContains?: string | undefined;
|
|
1044
|
+
StatusEquals?: TrainingJobStatus | undefined;
|
|
1045
|
+
SortBy?: SortBy | undefined;
|
|
1046
|
+
SortOrder?: SortOrder | undefined;
|
|
1047
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus | undefined;
|
|
1046
1048
|
}
|
|
1047
1049
|
export interface TrainingJobSummary {
|
|
1048
1050
|
TrainingJobName: string | undefined;
|
|
1049
1051
|
TrainingJobArn: string | undefined;
|
|
1050
1052
|
CreationTime: Date | undefined;
|
|
1051
|
-
TrainingEndTime?: Date;
|
|
1052
|
-
LastModifiedTime?: Date;
|
|
1053
|
+
TrainingEndTime?: Date | undefined;
|
|
1054
|
+
LastModifiedTime?: Date | undefined;
|
|
1053
1055
|
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
1054
|
-
SecondaryStatus?: SecondaryStatus;
|
|
1055
|
-
WarmPoolStatus?: WarmPoolStatus;
|
|
1056
|
+
SecondaryStatus?: SecondaryStatus | undefined;
|
|
1057
|
+
WarmPoolStatus?: WarmPoolStatus | undefined;
|
|
1056
1058
|
}
|
|
1057
1059
|
export interface ListTrainingJobsResponse {
|
|
1058
1060
|
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
1059
|
-
NextToken?: string;
|
|
1061
|
+
NextToken?: string | undefined;
|
|
1060
1062
|
}
|
|
1061
1063
|
export declare const TrainingJobSortByOptions: {
|
|
1062
1064
|
readonly CreationTime: "CreationTime";
|
|
@@ -1068,40 +1070,40 @@ export type TrainingJobSortByOptions =
|
|
|
1068
1070
|
(typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
1069
1071
|
export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
1070
1072
|
HyperParameterTuningJobName: string | undefined;
|
|
1071
|
-
NextToken?: string;
|
|
1072
|
-
MaxResults?: number;
|
|
1073
|
-
StatusEquals?: TrainingJobStatus;
|
|
1074
|
-
SortBy?: TrainingJobSortByOptions;
|
|
1075
|
-
SortOrder?: SortOrder;
|
|
1073
|
+
NextToken?: string | undefined;
|
|
1074
|
+
MaxResults?: number | undefined;
|
|
1075
|
+
StatusEquals?: TrainingJobStatus | undefined;
|
|
1076
|
+
SortBy?: TrainingJobSortByOptions | undefined;
|
|
1077
|
+
SortOrder?: SortOrder | undefined;
|
|
1076
1078
|
}
|
|
1077
1079
|
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
1078
1080
|
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
1079
|
-
NextToken?: string;
|
|
1081
|
+
NextToken?: string | undefined;
|
|
1080
1082
|
}
|
|
1081
1083
|
export interface ListTransformJobsRequest {
|
|
1082
|
-
CreationTimeAfter?: Date;
|
|
1083
|
-
CreationTimeBefore?: Date;
|
|
1084
|
-
LastModifiedTimeAfter?: Date;
|
|
1085
|
-
LastModifiedTimeBefore?: Date;
|
|
1086
|
-
NameContains?: string;
|
|
1087
|
-
StatusEquals?: TransformJobStatus;
|
|
1088
|
-
SortBy?: SortBy;
|
|
1089
|
-
SortOrder?: SortOrder;
|
|
1090
|
-
NextToken?: string;
|
|
1091
|
-
MaxResults?: number;
|
|
1084
|
+
CreationTimeAfter?: Date | undefined;
|
|
1085
|
+
CreationTimeBefore?: Date | undefined;
|
|
1086
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
1087
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
1088
|
+
NameContains?: string | undefined;
|
|
1089
|
+
StatusEquals?: TransformJobStatus | undefined;
|
|
1090
|
+
SortBy?: SortBy | undefined;
|
|
1091
|
+
SortOrder?: SortOrder | undefined;
|
|
1092
|
+
NextToken?: string | undefined;
|
|
1093
|
+
MaxResults?: number | undefined;
|
|
1092
1094
|
}
|
|
1093
1095
|
export interface TransformJobSummary {
|
|
1094
1096
|
TransformJobName: string | undefined;
|
|
1095
1097
|
TransformJobArn: string | undefined;
|
|
1096
1098
|
CreationTime: Date | undefined;
|
|
1097
|
-
TransformEndTime?: Date;
|
|
1098
|
-
LastModifiedTime?: Date;
|
|
1099
|
+
TransformEndTime?: Date | undefined;
|
|
1100
|
+
LastModifiedTime?: Date | undefined;
|
|
1099
1101
|
TransformJobStatus: TransformJobStatus | undefined;
|
|
1100
|
-
FailureReason?: string;
|
|
1102
|
+
FailureReason?: string | undefined;
|
|
1101
1103
|
}
|
|
1102
1104
|
export interface ListTransformJobsResponse {
|
|
1103
1105
|
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
1104
|
-
NextToken?: string;
|
|
1106
|
+
NextToken?: string | undefined;
|
|
1105
1107
|
}
|
|
1106
1108
|
export declare const SortTrialComponentsBy: {
|
|
1107
1109
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -1110,32 +1112,32 @@ export declare const SortTrialComponentsBy: {
|
|
|
1110
1112
|
export type SortTrialComponentsBy =
|
|
1111
1113
|
(typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
1112
1114
|
export interface ListTrialComponentsRequest {
|
|
1113
|
-
ExperimentName?: string;
|
|
1114
|
-
TrialName?: string;
|
|
1115
|
-
SourceArn?: string;
|
|
1116
|
-
CreatedAfter?: Date;
|
|
1117
|
-
CreatedBefore?: Date;
|
|
1118
|
-
SortBy?: SortTrialComponentsBy;
|
|
1119
|
-
SortOrder?: SortOrder;
|
|
1120
|
-
MaxResults?: number;
|
|
1121
|
-
NextToken?: string;
|
|
1115
|
+
ExperimentName?: string | undefined;
|
|
1116
|
+
TrialName?: string | undefined;
|
|
1117
|
+
SourceArn?: string | undefined;
|
|
1118
|
+
CreatedAfter?: Date | undefined;
|
|
1119
|
+
CreatedBefore?: Date | undefined;
|
|
1120
|
+
SortBy?: SortTrialComponentsBy | undefined;
|
|
1121
|
+
SortOrder?: SortOrder | undefined;
|
|
1122
|
+
MaxResults?: number | undefined;
|
|
1123
|
+
NextToken?: string | undefined;
|
|
1122
1124
|
}
|
|
1123
1125
|
export interface TrialComponentSummary {
|
|
1124
|
-
TrialComponentName?: string;
|
|
1125
|
-
TrialComponentArn?: string;
|
|
1126
|
-
DisplayName?: string;
|
|
1127
|
-
TrialComponentSource?: TrialComponentSource;
|
|
1128
|
-
Status?: TrialComponentStatus;
|
|
1129
|
-
StartTime?: Date;
|
|
1130
|
-
EndTime?: Date;
|
|
1131
|
-
CreationTime?: Date;
|
|
1132
|
-
CreatedBy?: UserContext;
|
|
1133
|
-
LastModifiedTime?: Date;
|
|
1134
|
-
LastModifiedBy?: UserContext;
|
|
1126
|
+
TrialComponentName?: string | undefined;
|
|
1127
|
+
TrialComponentArn?: string | undefined;
|
|
1128
|
+
DisplayName?: string | undefined;
|
|
1129
|
+
TrialComponentSource?: TrialComponentSource | undefined;
|
|
1130
|
+
Status?: TrialComponentStatus | undefined;
|
|
1131
|
+
StartTime?: Date | undefined;
|
|
1132
|
+
EndTime?: Date | undefined;
|
|
1133
|
+
CreationTime?: Date | undefined;
|
|
1134
|
+
CreatedBy?: UserContext | undefined;
|
|
1135
|
+
LastModifiedTime?: Date | undefined;
|
|
1136
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1135
1137
|
}
|
|
1136
1138
|
export interface ListTrialComponentsResponse {
|
|
1137
|
-
TrialComponentSummaries?: TrialComponentSummary[];
|
|
1138
|
-
NextToken?: string;
|
|
1139
|
+
TrialComponentSummaries?: TrialComponentSummary[] | undefined;
|
|
1140
|
+
NextToken?: string | undefined;
|
|
1139
1141
|
}
|
|
1140
1142
|
export declare const SortTrialsBy: {
|
|
1141
1143
|
readonly CREATION_TIME: "CreationTime";
|
|
@@ -1143,26 +1145,26 @@ export declare const SortTrialsBy: {
|
|
|
1143
1145
|
};
|
|
1144
1146
|
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
1145
1147
|
export interface ListTrialsRequest {
|
|
1146
|
-
ExperimentName?: string;
|
|
1147
|
-
TrialComponentName?: string;
|
|
1148
|
-
CreatedAfter?: Date;
|
|
1149
|
-
CreatedBefore?: Date;
|
|
1150
|
-
SortBy?: SortTrialsBy;
|
|
1151
|
-
SortOrder?: SortOrder;
|
|
1152
|
-
MaxResults?: number;
|
|
1153
|
-
NextToken?: string;
|
|
1148
|
+
ExperimentName?: string | undefined;
|
|
1149
|
+
TrialComponentName?: string | undefined;
|
|
1150
|
+
CreatedAfter?: Date | undefined;
|
|
1151
|
+
CreatedBefore?: Date | undefined;
|
|
1152
|
+
SortBy?: SortTrialsBy | undefined;
|
|
1153
|
+
SortOrder?: SortOrder | undefined;
|
|
1154
|
+
MaxResults?: number | undefined;
|
|
1155
|
+
NextToken?: string | undefined;
|
|
1154
1156
|
}
|
|
1155
1157
|
export interface TrialSummary {
|
|
1156
|
-
TrialArn?: string;
|
|
1157
|
-
TrialName?: string;
|
|
1158
|
-
DisplayName?: string;
|
|
1159
|
-
TrialSource?: TrialSource;
|
|
1160
|
-
CreationTime?: Date;
|
|
1161
|
-
LastModifiedTime?: Date;
|
|
1158
|
+
TrialArn?: string | undefined;
|
|
1159
|
+
TrialName?: string | undefined;
|
|
1160
|
+
DisplayName?: string | undefined;
|
|
1161
|
+
TrialSource?: TrialSource | undefined;
|
|
1162
|
+
CreationTime?: Date | undefined;
|
|
1163
|
+
LastModifiedTime?: Date | undefined;
|
|
1162
1164
|
}
|
|
1163
1165
|
export interface ListTrialsResponse {
|
|
1164
|
-
TrialSummaries?: TrialSummary[];
|
|
1165
|
-
NextToken?: string;
|
|
1166
|
+
TrialSummaries?: TrialSummary[] | undefined;
|
|
1167
|
+
NextToken?: string | undefined;
|
|
1166
1168
|
}
|
|
1167
1169
|
export declare const UserProfileSortKey: {
|
|
1168
1170
|
readonly CreationTime: "CreationTime";
|
|
@@ -1171,23 +1173,23 @@ export declare const UserProfileSortKey: {
|
|
|
1171
1173
|
export type UserProfileSortKey =
|
|
1172
1174
|
(typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
1173
1175
|
export interface ListUserProfilesRequest {
|
|
1174
|
-
NextToken?: string;
|
|
1175
|
-
MaxResults?: number;
|
|
1176
|
-
SortOrder?: SortOrder;
|
|
1177
|
-
SortBy?: UserProfileSortKey;
|
|
1178
|
-
DomainIdEquals?: string;
|
|
1179
|
-
UserProfileNameContains?: string;
|
|
1176
|
+
NextToken?: string | undefined;
|
|
1177
|
+
MaxResults?: number | undefined;
|
|
1178
|
+
SortOrder?: SortOrder | undefined;
|
|
1179
|
+
SortBy?: UserProfileSortKey | undefined;
|
|
1180
|
+
DomainIdEquals?: string | undefined;
|
|
1181
|
+
UserProfileNameContains?: string | undefined;
|
|
1180
1182
|
}
|
|
1181
1183
|
export interface UserProfileDetails {
|
|
1182
|
-
DomainId?: string;
|
|
1183
|
-
UserProfileName?: string;
|
|
1184
|
-
Status?: UserProfileStatus;
|
|
1185
|
-
CreationTime?: Date;
|
|
1186
|
-
LastModifiedTime?: Date;
|
|
1184
|
+
DomainId?: string | undefined;
|
|
1185
|
+
UserProfileName?: string | undefined;
|
|
1186
|
+
Status?: UserProfileStatus | undefined;
|
|
1187
|
+
CreationTime?: Date | undefined;
|
|
1188
|
+
LastModifiedTime?: Date | undefined;
|
|
1187
1189
|
}
|
|
1188
1190
|
export interface ListUserProfilesResponse {
|
|
1189
|
-
UserProfiles?: UserProfileDetails[];
|
|
1190
|
-
NextToken?: string;
|
|
1191
|
+
UserProfiles?: UserProfileDetails[] | undefined;
|
|
1192
|
+
NextToken?: string | undefined;
|
|
1191
1193
|
}
|
|
1192
1194
|
export declare const ListWorkforcesSortByOptions: {
|
|
1193
1195
|
readonly CreateDate: "CreateDate";
|
|
@@ -1196,15 +1198,15 @@ export declare const ListWorkforcesSortByOptions: {
|
|
|
1196
1198
|
export type ListWorkforcesSortByOptions =
|
|
1197
1199
|
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
1198
1200
|
export interface ListWorkforcesRequest {
|
|
1199
|
-
SortBy?: ListWorkforcesSortByOptions;
|
|
1200
|
-
SortOrder?: SortOrder;
|
|
1201
|
-
NameContains?: string;
|
|
1202
|
-
NextToken?: string;
|
|
1203
|
-
MaxResults?: number;
|
|
1201
|
+
SortBy?: ListWorkforcesSortByOptions | undefined;
|
|
1202
|
+
SortOrder?: SortOrder | undefined;
|
|
1203
|
+
NameContains?: string | undefined;
|
|
1204
|
+
NextToken?: string | undefined;
|
|
1205
|
+
MaxResults?: number | undefined;
|
|
1204
1206
|
}
|
|
1205
1207
|
export interface ListWorkforcesResponse {
|
|
1206
1208
|
Workforces: Workforce[] | undefined;
|
|
1207
|
-
NextToken?: string;
|
|
1209
|
+
NextToken?: string | undefined;
|
|
1208
1210
|
}
|
|
1209
1211
|
export declare const ListWorkteamsSortByOptions: {
|
|
1210
1212
|
readonly CreateDate: "CreateDate";
|
|
@@ -1213,44 +1215,44 @@ export declare const ListWorkteamsSortByOptions: {
|
|
|
1213
1215
|
export type ListWorkteamsSortByOptions =
|
|
1214
1216
|
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
1215
1217
|
export interface ListWorkteamsRequest {
|
|
1216
|
-
SortBy?: ListWorkteamsSortByOptions;
|
|
1217
|
-
SortOrder?: SortOrder;
|
|
1218
|
-
NameContains?: string;
|
|
1219
|
-
NextToken?: string;
|
|
1220
|
-
MaxResults?: number;
|
|
1218
|
+
SortBy?: ListWorkteamsSortByOptions | undefined;
|
|
1219
|
+
SortOrder?: SortOrder | undefined;
|
|
1220
|
+
NameContains?: string | undefined;
|
|
1221
|
+
NextToken?: string | undefined;
|
|
1222
|
+
MaxResults?: number | undefined;
|
|
1221
1223
|
}
|
|
1222
1224
|
export interface ListWorkteamsResponse {
|
|
1223
1225
|
Workteams: Workteam[] | undefined;
|
|
1224
|
-
NextToken?: string;
|
|
1226
|
+
NextToken?: string | undefined;
|
|
1225
1227
|
}
|
|
1226
1228
|
export interface Model {
|
|
1227
|
-
ModelName?: string;
|
|
1228
|
-
PrimaryContainer?: ContainerDefinition;
|
|
1229
|
-
Containers?: ContainerDefinition[];
|
|
1230
|
-
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
1231
|
-
ExecutionRoleArn?: string;
|
|
1232
|
-
VpcConfig?: VpcConfig;
|
|
1233
|
-
CreationTime?: Date;
|
|
1234
|
-
ModelArn?: string;
|
|
1235
|
-
EnableNetworkIsolation?: boolean;
|
|
1236
|
-
Tags?: Tag[];
|
|
1237
|
-
DeploymentRecommendation?: DeploymentRecommendation;
|
|
1229
|
+
ModelName?: string | undefined;
|
|
1230
|
+
PrimaryContainer?: ContainerDefinition | undefined;
|
|
1231
|
+
Containers?: ContainerDefinition[] | undefined;
|
|
1232
|
+
InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
|
|
1233
|
+
ExecutionRoleArn?: string | undefined;
|
|
1234
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1235
|
+
CreationTime?: Date | undefined;
|
|
1236
|
+
ModelArn?: string | undefined;
|
|
1237
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
1238
|
+
Tags?: Tag[] | undefined;
|
|
1239
|
+
DeploymentRecommendation?: DeploymentRecommendation | undefined;
|
|
1238
1240
|
}
|
|
1239
1241
|
export interface ModelCard {
|
|
1240
|
-
ModelCardArn?: string;
|
|
1241
|
-
ModelCardName?: string;
|
|
1242
|
-
ModelCardVersion?: number;
|
|
1243
|
-
Content?: string;
|
|
1244
|
-
ModelCardStatus?: ModelCardStatus;
|
|
1245
|
-
SecurityConfig?: ModelCardSecurityConfig;
|
|
1246
|
-
CreationTime?: Date;
|
|
1247
|
-
CreatedBy?: UserContext;
|
|
1248
|
-
LastModifiedTime?: Date;
|
|
1249
|
-
LastModifiedBy?: UserContext;
|
|
1250
|
-
Tags?: Tag[];
|
|
1251
|
-
ModelId?: string;
|
|
1252
|
-
RiskRating?: string;
|
|
1253
|
-
ModelPackageGroupName?: string;
|
|
1242
|
+
ModelCardArn?: string | undefined;
|
|
1243
|
+
ModelCardName?: string | undefined;
|
|
1244
|
+
ModelCardVersion?: number | undefined;
|
|
1245
|
+
Content?: string | undefined;
|
|
1246
|
+
ModelCardStatus?: ModelCardStatus | undefined;
|
|
1247
|
+
SecurityConfig?: ModelCardSecurityConfig | undefined;
|
|
1248
|
+
CreationTime?: Date | undefined;
|
|
1249
|
+
CreatedBy?: UserContext | undefined;
|
|
1250
|
+
LastModifiedTime?: Date | undefined;
|
|
1251
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1252
|
+
Tags?: Tag[] | undefined;
|
|
1253
|
+
ModelId?: string | undefined;
|
|
1254
|
+
RiskRating?: string | undefined;
|
|
1255
|
+
ModelPackageGroupName?: string | undefined;
|
|
1254
1256
|
}
|
|
1255
1257
|
export interface ModelDashboardEndpoint {
|
|
1256
1258
|
EndpointName: string | undefined;
|
|
@@ -1260,105 +1262,107 @@ export interface ModelDashboardEndpoint {
|
|
|
1260
1262
|
EndpointStatus: EndpointStatus | undefined;
|
|
1261
1263
|
}
|
|
1262
1264
|
export interface TransformJob {
|
|
1263
|
-
TransformJobName?: string;
|
|
1264
|
-
TransformJobArn?: string;
|
|
1265
|
-
TransformJobStatus?: TransformJobStatus;
|
|
1266
|
-
FailureReason?: string;
|
|
1267
|
-
ModelName?: string;
|
|
1268
|
-
MaxConcurrentTransforms?: number;
|
|
1269
|
-
ModelClientConfig?: ModelClientConfig;
|
|
1270
|
-
MaxPayloadInMB?: number;
|
|
1271
|
-
BatchStrategy?: BatchStrategy;
|
|
1272
|
-
Environment?: Record<string, string
|
|
1273
|
-
TransformInput?: TransformInput;
|
|
1274
|
-
TransformOutput?: TransformOutput;
|
|
1275
|
-
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
1276
|
-
TransformResources?: TransformResources;
|
|
1277
|
-
CreationTime?: Date;
|
|
1278
|
-
TransformStartTime?: Date;
|
|
1279
|
-
TransformEndTime?: Date;
|
|
1280
|
-
LabelingJobArn?: string;
|
|
1281
|
-
AutoMLJobArn?: string;
|
|
1282
|
-
DataProcessing?: DataProcessing;
|
|
1283
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1284
|
-
Tags?: Tag[];
|
|
1265
|
+
TransformJobName?: string | undefined;
|
|
1266
|
+
TransformJobArn?: string | undefined;
|
|
1267
|
+
TransformJobStatus?: TransformJobStatus | undefined;
|
|
1268
|
+
FailureReason?: string | undefined;
|
|
1269
|
+
ModelName?: string | undefined;
|
|
1270
|
+
MaxConcurrentTransforms?: number | undefined;
|
|
1271
|
+
ModelClientConfig?: ModelClientConfig | undefined;
|
|
1272
|
+
MaxPayloadInMB?: number | undefined;
|
|
1273
|
+
BatchStrategy?: BatchStrategy | undefined;
|
|
1274
|
+
Environment?: Record<string, string> | undefined;
|
|
1275
|
+
TransformInput?: TransformInput | undefined;
|
|
1276
|
+
TransformOutput?: TransformOutput | undefined;
|
|
1277
|
+
DataCaptureConfig?: BatchDataCaptureConfig | undefined;
|
|
1278
|
+
TransformResources?: TransformResources | undefined;
|
|
1279
|
+
CreationTime?: Date | undefined;
|
|
1280
|
+
TransformStartTime?: Date | undefined;
|
|
1281
|
+
TransformEndTime?: Date | undefined;
|
|
1282
|
+
LabelingJobArn?: string | undefined;
|
|
1283
|
+
AutoMLJobArn?: string | undefined;
|
|
1284
|
+
DataProcessing?: DataProcessing | undefined;
|
|
1285
|
+
ExperimentConfig?: ExperimentConfig | undefined;
|
|
1286
|
+
Tags?: Tag[] | undefined;
|
|
1285
1287
|
}
|
|
1286
1288
|
export interface ModelDashboardModelCard {
|
|
1287
|
-
ModelCardArn?: string;
|
|
1288
|
-
ModelCardName?: string;
|
|
1289
|
-
ModelCardVersion?: number;
|
|
1290
|
-
ModelCardStatus?: ModelCardStatus;
|
|
1291
|
-
SecurityConfig?: ModelCardSecurityConfig;
|
|
1292
|
-
CreationTime?: Date;
|
|
1293
|
-
CreatedBy?: UserContext;
|
|
1294
|
-
LastModifiedTime?: Date;
|
|
1295
|
-
LastModifiedBy?: UserContext;
|
|
1296
|
-
Tags?: Tag[];
|
|
1297
|
-
ModelId?: string;
|
|
1298
|
-
RiskRating?: string;
|
|
1289
|
+
ModelCardArn?: string | undefined;
|
|
1290
|
+
ModelCardName?: string | undefined;
|
|
1291
|
+
ModelCardVersion?: number | undefined;
|
|
1292
|
+
ModelCardStatus?: ModelCardStatus | undefined;
|
|
1293
|
+
SecurityConfig?: ModelCardSecurityConfig | undefined;
|
|
1294
|
+
CreationTime?: Date | undefined;
|
|
1295
|
+
CreatedBy?: UserContext | undefined;
|
|
1296
|
+
LastModifiedTime?: Date | undefined;
|
|
1297
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1298
|
+
Tags?: Tag[] | undefined;
|
|
1299
|
+
ModelId?: string | undefined;
|
|
1300
|
+
RiskRating?: string | undefined;
|
|
1299
1301
|
}
|
|
1300
1302
|
export interface ModelDashboardMonitoringSchedule {
|
|
1301
|
-
MonitoringScheduleArn?: string;
|
|
1302
|
-
MonitoringScheduleName?: string;
|
|
1303
|
-
MonitoringScheduleStatus?: ScheduleStatus;
|
|
1304
|
-
MonitoringType?: MonitoringType;
|
|
1305
|
-
FailureReason?: string;
|
|
1306
|
-
CreationTime?: Date;
|
|
1307
|
-
LastModifiedTime?: Date;
|
|
1308
|
-
MonitoringScheduleConfig?: MonitoringScheduleConfig;
|
|
1309
|
-
EndpointName?: string;
|
|
1310
|
-
MonitoringAlertSummaries?: MonitoringAlertSummary[];
|
|
1311
|
-
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
1312
|
-
BatchTransformInput?: BatchTransformInput;
|
|
1303
|
+
MonitoringScheduleArn?: string | undefined;
|
|
1304
|
+
MonitoringScheduleName?: string | undefined;
|
|
1305
|
+
MonitoringScheduleStatus?: ScheduleStatus | undefined;
|
|
1306
|
+
MonitoringType?: MonitoringType | undefined;
|
|
1307
|
+
FailureReason?: string | undefined;
|
|
1308
|
+
CreationTime?: Date | undefined;
|
|
1309
|
+
LastModifiedTime?: Date | undefined;
|
|
1310
|
+
MonitoringScheduleConfig?: MonitoringScheduleConfig | undefined;
|
|
1311
|
+
EndpointName?: string | undefined;
|
|
1312
|
+
MonitoringAlertSummaries?: MonitoringAlertSummary[] | undefined;
|
|
1313
|
+
LastMonitoringExecutionSummary?: MonitoringExecutionSummary | undefined;
|
|
1314
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
1313
1315
|
}
|
|
1314
1316
|
export interface ModelDashboardModel {
|
|
1315
|
-
Model?: Model;
|
|
1316
|
-
Endpoints?: ModelDashboardEndpoint[];
|
|
1317
|
-
LastBatchTransformJob?: TransformJob;
|
|
1318
|
-
MonitoringSchedules?: ModelDashboardMonitoringSchedule[];
|
|
1319
|
-
ModelCard?: ModelDashboardModelCard;
|
|
1317
|
+
Model?: Model | undefined;
|
|
1318
|
+
Endpoints?: ModelDashboardEndpoint[] | undefined;
|
|
1319
|
+
LastBatchTransformJob?: TransformJob | undefined;
|
|
1320
|
+
MonitoringSchedules?: ModelDashboardMonitoringSchedule[] | undefined;
|
|
1321
|
+
ModelCard?: ModelDashboardModelCard | undefined;
|
|
1320
1322
|
}
|
|
1321
1323
|
export interface ModelPackage {
|
|
1322
|
-
ModelPackageName?: string;
|
|
1323
|
-
ModelPackageGroupName?: string;
|
|
1324
|
-
ModelPackageVersion?: number;
|
|
1325
|
-
ModelPackageArn?: string;
|
|
1326
|
-
ModelPackageDescription?: string;
|
|
1327
|
-
CreationTime?: Date;
|
|
1328
|
-
InferenceSpecification?: InferenceSpecification;
|
|
1329
|
-
SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
|
|
1330
|
-
ValidationSpecification?: ModelPackageValidationSpecification;
|
|
1331
|
-
ModelPackageStatus?: ModelPackageStatus;
|
|
1332
|
-
ModelPackageStatusDetails?: ModelPackageStatusDetails;
|
|
1333
|
-
CertifyForMarketplace?: boolean;
|
|
1334
|
-
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1335
|
-
CreatedBy?: UserContext;
|
|
1336
|
-
MetadataProperties?: MetadataProperties;
|
|
1337
|
-
ModelMetrics?: ModelMetrics;
|
|
1338
|
-
LastModifiedTime?: Date;
|
|
1339
|
-
LastModifiedBy?: UserContext;
|
|
1340
|
-
ApprovalDescription?: string;
|
|
1341
|
-
Domain?: string;
|
|
1342
|
-
Task?: string;
|
|
1343
|
-
SamplePayloadUrl?: string;
|
|
1344
|
-
AdditionalInferenceSpecifications?:
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1324
|
+
ModelPackageName?: string | undefined;
|
|
1325
|
+
ModelPackageGroupName?: string | undefined;
|
|
1326
|
+
ModelPackageVersion?: number | undefined;
|
|
1327
|
+
ModelPackageArn?: string | undefined;
|
|
1328
|
+
ModelPackageDescription?: string | undefined;
|
|
1329
|
+
CreationTime?: Date | undefined;
|
|
1330
|
+
InferenceSpecification?: InferenceSpecification | undefined;
|
|
1331
|
+
SourceAlgorithmSpecification?: SourceAlgorithmSpecification | undefined;
|
|
1332
|
+
ValidationSpecification?: ModelPackageValidationSpecification | undefined;
|
|
1333
|
+
ModelPackageStatus?: ModelPackageStatus | undefined;
|
|
1334
|
+
ModelPackageStatusDetails?: ModelPackageStatusDetails | undefined;
|
|
1335
|
+
CertifyForMarketplace?: boolean | undefined;
|
|
1336
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
1337
|
+
CreatedBy?: UserContext | undefined;
|
|
1338
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
1339
|
+
ModelMetrics?: ModelMetrics | undefined;
|
|
1340
|
+
LastModifiedTime?: Date | undefined;
|
|
1341
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1342
|
+
ApprovalDescription?: string | undefined;
|
|
1343
|
+
Domain?: string | undefined;
|
|
1344
|
+
Task?: string | undefined;
|
|
1345
|
+
SamplePayloadUrl?: string | undefined;
|
|
1346
|
+
AdditionalInferenceSpecifications?:
|
|
1347
|
+
| AdditionalInferenceSpecificationDefinition[]
|
|
1348
|
+
| undefined;
|
|
1349
|
+
SourceUri?: string | undefined;
|
|
1350
|
+
SecurityConfig?: ModelPackageSecurityConfig | undefined;
|
|
1351
|
+
ModelCard?: ModelPackageModelCard | undefined;
|
|
1352
|
+
ModelLifeCycle?: ModelLifeCycle | undefined;
|
|
1353
|
+
Tags?: Tag[] | undefined;
|
|
1354
|
+
CustomerMetadataProperties?: Record<string, string> | undefined;
|
|
1355
|
+
DriftCheckBaselines?: DriftCheckBaselines | undefined;
|
|
1356
|
+
SkipModelValidation?: SkipModelValidation | undefined;
|
|
1353
1357
|
}
|
|
1354
1358
|
export interface ModelPackageGroup {
|
|
1355
|
-
ModelPackageGroupName?: string;
|
|
1356
|
-
ModelPackageGroupArn?: string;
|
|
1357
|
-
ModelPackageGroupDescription?: string;
|
|
1358
|
-
CreationTime?: Date;
|
|
1359
|
-
CreatedBy?: UserContext;
|
|
1360
|
-
ModelPackageGroupStatus?: ModelPackageGroupStatus;
|
|
1361
|
-
Tags?: Tag[];
|
|
1359
|
+
ModelPackageGroupName?: string | undefined;
|
|
1360
|
+
ModelPackageGroupArn?: string | undefined;
|
|
1361
|
+
ModelPackageGroupDescription?: string | undefined;
|
|
1362
|
+
CreationTime?: Date | undefined;
|
|
1363
|
+
CreatedBy?: UserContext | undefined;
|
|
1364
|
+
ModelPackageGroupStatus?: ModelPackageGroupStatus | undefined;
|
|
1365
|
+
Tags?: Tag[] | undefined;
|
|
1362
1366
|
}
|
|
1363
1367
|
export declare const ModelVariantAction: {
|
|
1364
1368
|
readonly PROMOTE: "Promote";
|
|
@@ -1372,86 +1376,90 @@ export interface NestedFilters {
|
|
|
1372
1376
|
Filters: Filter[] | undefined;
|
|
1373
1377
|
}
|
|
1374
1378
|
export interface OnlineStoreConfigUpdate {
|
|
1375
|
-
TtlDuration?: TtlDuration;
|
|
1379
|
+
TtlDuration?: TtlDuration | undefined;
|
|
1376
1380
|
}
|
|
1377
1381
|
export interface Parent {
|
|
1378
|
-
TrialName?: string;
|
|
1379
|
-
ExperimentName?: string;
|
|
1382
|
+
TrialName?: string | undefined;
|
|
1383
|
+
ExperimentName?: string | undefined;
|
|
1380
1384
|
}
|
|
1381
1385
|
export interface Pipeline {
|
|
1382
|
-
PipelineArn?: string;
|
|
1383
|
-
PipelineName?: string;
|
|
1384
|
-
PipelineDisplayName?: string;
|
|
1385
|
-
PipelineDescription?: string;
|
|
1386
|
-
RoleArn?: string;
|
|
1387
|
-
PipelineStatus?: PipelineStatus;
|
|
1388
|
-
CreationTime?: Date;
|
|
1389
|
-
LastModifiedTime?: Date;
|
|
1390
|
-
LastRunTime?: Date;
|
|
1391
|
-
CreatedBy?: UserContext;
|
|
1392
|
-
LastModifiedBy?: UserContext;
|
|
1393
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1394
|
-
Tags?: Tag[];
|
|
1386
|
+
PipelineArn?: string | undefined;
|
|
1387
|
+
PipelineName?: string | undefined;
|
|
1388
|
+
PipelineDisplayName?: string | undefined;
|
|
1389
|
+
PipelineDescription?: string | undefined;
|
|
1390
|
+
RoleArn?: string | undefined;
|
|
1391
|
+
PipelineStatus?: PipelineStatus | undefined;
|
|
1392
|
+
CreationTime?: Date | undefined;
|
|
1393
|
+
LastModifiedTime?: Date | undefined;
|
|
1394
|
+
LastRunTime?: Date | undefined;
|
|
1395
|
+
CreatedBy?: UserContext | undefined;
|
|
1396
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1397
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
1398
|
+
Tags?: Tag[] | undefined;
|
|
1395
1399
|
}
|
|
1396
1400
|
export interface PipelineExecution {
|
|
1397
|
-
PipelineArn?: string;
|
|
1398
|
-
PipelineExecutionArn?: string;
|
|
1399
|
-
PipelineExecutionDisplayName?: string;
|
|
1400
|
-
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
1401
|
-
PipelineExecutionDescription?: string;
|
|
1402
|
-
PipelineExperimentConfig?: PipelineExperimentConfig;
|
|
1403
|
-
FailureReason?: string;
|
|
1404
|
-
CreationTime?: Date;
|
|
1405
|
-
LastModifiedTime?: Date;
|
|
1406
|
-
CreatedBy?: UserContext;
|
|
1407
|
-
LastModifiedBy?: UserContext;
|
|
1408
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1409
|
-
SelectiveExecutionConfig?: SelectiveExecutionConfig;
|
|
1410
|
-
PipelineParameters?: Parameter[];
|
|
1401
|
+
PipelineArn?: string | undefined;
|
|
1402
|
+
PipelineExecutionArn?: string | undefined;
|
|
1403
|
+
PipelineExecutionDisplayName?: string | undefined;
|
|
1404
|
+
PipelineExecutionStatus?: PipelineExecutionStatus | undefined;
|
|
1405
|
+
PipelineExecutionDescription?: string | undefined;
|
|
1406
|
+
PipelineExperimentConfig?: PipelineExperimentConfig | undefined;
|
|
1407
|
+
FailureReason?: string | undefined;
|
|
1408
|
+
CreationTime?: Date | undefined;
|
|
1409
|
+
LastModifiedTime?: Date | undefined;
|
|
1410
|
+
CreatedBy?: UserContext | undefined;
|
|
1411
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1412
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
1413
|
+
SelectiveExecutionConfig?: SelectiveExecutionConfig | undefined;
|
|
1414
|
+
PipelineParameters?: Parameter[] | undefined;
|
|
1411
1415
|
}
|
|
1412
1416
|
export interface ProcessingJob {
|
|
1413
|
-
ProcessingInputs?: ProcessingInput[];
|
|
1414
|
-
ProcessingOutputConfig?: ProcessingOutputConfig;
|
|
1415
|
-
ProcessingJobName?: string;
|
|
1416
|
-
ProcessingResources?: ProcessingResources;
|
|
1417
|
-
StoppingCondition?: ProcessingStoppingCondition;
|
|
1418
|
-
AppSpecification?: AppSpecification;
|
|
1419
|
-
Environment?: Record<string, string
|
|
1420
|
-
NetworkConfig?: NetworkConfig;
|
|
1421
|
-
RoleArn?: string;
|
|
1422
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1423
|
-
ProcessingJobArn?: string;
|
|
1424
|
-
ProcessingJobStatus?: ProcessingJobStatus;
|
|
1425
|
-
ExitMessage?: string;
|
|
1426
|
-
FailureReason?: string;
|
|
1427
|
-
ProcessingEndTime?: Date;
|
|
1428
|
-
ProcessingStartTime?: Date;
|
|
1429
|
-
LastModifiedTime?: Date;
|
|
1430
|
-
CreationTime?: Date;
|
|
1431
|
-
MonitoringScheduleArn?: string;
|
|
1432
|
-
AutoMLJobArn?: string;
|
|
1433
|
-
TrainingJobArn?: string;
|
|
1434
|
-
Tags?: Tag[];
|
|
1417
|
+
ProcessingInputs?: ProcessingInput[] | undefined;
|
|
1418
|
+
ProcessingOutputConfig?: ProcessingOutputConfig | undefined;
|
|
1419
|
+
ProcessingJobName?: string | undefined;
|
|
1420
|
+
ProcessingResources?: ProcessingResources | undefined;
|
|
1421
|
+
StoppingCondition?: ProcessingStoppingCondition | undefined;
|
|
1422
|
+
AppSpecification?: AppSpecification | undefined;
|
|
1423
|
+
Environment?: Record<string, string> | undefined;
|
|
1424
|
+
NetworkConfig?: NetworkConfig | undefined;
|
|
1425
|
+
RoleArn?: string | undefined;
|
|
1426
|
+
ExperimentConfig?: ExperimentConfig | undefined;
|
|
1427
|
+
ProcessingJobArn?: string | undefined;
|
|
1428
|
+
ProcessingJobStatus?: ProcessingJobStatus | undefined;
|
|
1429
|
+
ExitMessage?: string | undefined;
|
|
1430
|
+
FailureReason?: string | undefined;
|
|
1431
|
+
ProcessingEndTime?: Date | undefined;
|
|
1432
|
+
ProcessingStartTime?: Date | undefined;
|
|
1433
|
+
LastModifiedTime?: Date | undefined;
|
|
1434
|
+
CreationTime?: Date | undefined;
|
|
1435
|
+
MonitoringScheduleArn?: string | undefined;
|
|
1436
|
+
AutoMLJobArn?: string | undefined;
|
|
1437
|
+
TrainingJobArn?: string | undefined;
|
|
1438
|
+
Tags?: Tag[] | undefined;
|
|
1435
1439
|
}
|
|
1436
1440
|
export interface ProfilerConfigForUpdate {
|
|
1437
|
-
S3OutputPath?: string;
|
|
1438
|
-
ProfilingIntervalInMilliseconds?: number;
|
|
1439
|
-
ProfilingParameters?: Record<string, string
|
|
1440
|
-
DisableProfiler?: boolean;
|
|
1441
|
+
S3OutputPath?: string | undefined;
|
|
1442
|
+
ProfilingIntervalInMilliseconds?: number | undefined;
|
|
1443
|
+
ProfilingParameters?: Record<string, string> | undefined;
|
|
1444
|
+
DisableProfiler?: boolean | undefined;
|
|
1441
1445
|
}
|
|
1442
1446
|
export interface Project {
|
|
1443
|
-
ProjectArn?: string;
|
|
1444
|
-
ProjectName?: string;
|
|
1445
|
-
ProjectId?: string;
|
|
1446
|
-
ProjectDescription?: string;
|
|
1447
|
-
ServiceCatalogProvisioningDetails?:
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1447
|
+
ProjectArn?: string | undefined;
|
|
1448
|
+
ProjectName?: string | undefined;
|
|
1449
|
+
ProjectId?: string | undefined;
|
|
1450
|
+
ProjectDescription?: string | undefined;
|
|
1451
|
+
ServiceCatalogProvisioningDetails?:
|
|
1452
|
+
| ServiceCatalogProvisioningDetails
|
|
1453
|
+
| undefined;
|
|
1454
|
+
ServiceCatalogProvisionedProductDetails?:
|
|
1455
|
+
| ServiceCatalogProvisionedProductDetails
|
|
1456
|
+
| undefined;
|
|
1457
|
+
ProjectStatus?: ProjectStatus | undefined;
|
|
1458
|
+
CreatedBy?: UserContext | undefined;
|
|
1459
|
+
CreationTime?: Date | undefined;
|
|
1460
|
+
Tags?: Tag[] | undefined;
|
|
1461
|
+
LastModifiedTime?: Date | undefined;
|
|
1462
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1455
1463
|
}
|
|
1456
1464
|
export interface PutModelPackageGroupPolicyInput {
|
|
1457
1465
|
ModelPackageGroupName: string | undefined;
|
|
@@ -1461,40 +1469,40 @@ export interface PutModelPackageGroupPolicyOutput {
|
|
|
1461
1469
|
ModelPackageGroupArn: string | undefined;
|
|
1462
1470
|
}
|
|
1463
1471
|
export interface QueryFilters {
|
|
1464
|
-
Types?: string[];
|
|
1465
|
-
LineageTypes?: LineageType[];
|
|
1466
|
-
CreatedBefore?: Date;
|
|
1467
|
-
CreatedAfter?: Date;
|
|
1468
|
-
ModifiedBefore?: Date;
|
|
1469
|
-
ModifiedAfter?: Date;
|
|
1470
|
-
Properties?: Record<string, string
|
|
1472
|
+
Types?: string[] | undefined;
|
|
1473
|
+
LineageTypes?: LineageType[] | undefined;
|
|
1474
|
+
CreatedBefore?: Date | undefined;
|
|
1475
|
+
CreatedAfter?: Date | undefined;
|
|
1476
|
+
ModifiedBefore?: Date | undefined;
|
|
1477
|
+
ModifiedAfter?: Date | undefined;
|
|
1478
|
+
Properties?: Record<string, string> | undefined;
|
|
1471
1479
|
}
|
|
1472
1480
|
export interface QueryLineageRequest {
|
|
1473
|
-
StartArns?: string[];
|
|
1474
|
-
Direction?: Direction;
|
|
1475
|
-
IncludeEdges?: boolean;
|
|
1476
|
-
Filters?: QueryFilters;
|
|
1477
|
-
MaxDepth?: number;
|
|
1478
|
-
MaxResults?: number;
|
|
1479
|
-
NextToken?: string;
|
|
1481
|
+
StartArns?: string[] | undefined;
|
|
1482
|
+
Direction?: Direction | undefined;
|
|
1483
|
+
IncludeEdges?: boolean | undefined;
|
|
1484
|
+
Filters?: QueryFilters | undefined;
|
|
1485
|
+
MaxDepth?: number | undefined;
|
|
1486
|
+
MaxResults?: number | undefined;
|
|
1487
|
+
NextToken?: string | undefined;
|
|
1480
1488
|
}
|
|
1481
1489
|
export interface Vertex {
|
|
1482
|
-
Arn?: string;
|
|
1483
|
-
Type?: string;
|
|
1484
|
-
LineageType?: LineageType;
|
|
1490
|
+
Arn?: string | undefined;
|
|
1491
|
+
Type?: string | undefined;
|
|
1492
|
+
LineageType?: LineageType | undefined;
|
|
1485
1493
|
}
|
|
1486
1494
|
export interface QueryLineageResponse {
|
|
1487
|
-
Vertices?: Vertex[];
|
|
1488
|
-
Edges?: Edge[];
|
|
1489
|
-
NextToken?: string;
|
|
1495
|
+
Vertices?: Vertex[] | undefined;
|
|
1496
|
+
Edges?: Edge[] | undefined;
|
|
1497
|
+
NextToken?: string | undefined;
|
|
1490
1498
|
}
|
|
1491
1499
|
export interface RegisterDevicesRequest {
|
|
1492
1500
|
DeviceFleetName: string | undefined;
|
|
1493
1501
|
Devices: Device[] | undefined;
|
|
1494
|
-
Tags?: Tag[];
|
|
1502
|
+
Tags?: Tag[] | undefined;
|
|
1495
1503
|
}
|
|
1496
1504
|
export interface RemoteDebugConfigForUpdate {
|
|
1497
|
-
EnableRemoteDebug?: boolean;
|
|
1505
|
+
EnableRemoteDebug?: boolean | undefined;
|
|
1498
1506
|
}
|
|
1499
1507
|
export interface RenderableTask {
|
|
1500
1508
|
Input: string | undefined;
|
|
@@ -1504,10 +1512,10 @@ export interface RenderingError {
|
|
|
1504
1512
|
Message: string | undefined;
|
|
1505
1513
|
}
|
|
1506
1514
|
export interface RenderUiTemplateRequest {
|
|
1507
|
-
UiTemplate?: UiTemplate;
|
|
1515
|
+
UiTemplate?: UiTemplate | undefined;
|
|
1508
1516
|
Task: RenderableTask | undefined;
|
|
1509
1517
|
RoleArn: string | undefined;
|
|
1510
|
-
HumanTaskUiArn?: string;
|
|
1518
|
+
HumanTaskUiArn?: string | undefined;
|
|
1511
1519
|
}
|
|
1512
1520
|
export interface RenderUiTemplateResponse {
|
|
1513
1521
|
RenderedContent: string | undefined;
|
|
@@ -1518,11 +1526,11 @@ export interface ResourceConfigForUpdate {
|
|
|
1518
1526
|
}
|
|
1519
1527
|
export interface RetryPipelineExecutionRequest {
|
|
1520
1528
|
PipelineExecutionArn: string | undefined;
|
|
1521
|
-
ClientRequestToken?: string;
|
|
1522
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1529
|
+
ClientRequestToken?: string | undefined;
|
|
1530
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
1523
1531
|
}
|
|
1524
1532
|
export interface RetryPipelineExecutionResponse {
|
|
1525
|
-
PipelineExecutionArn?: string;
|
|
1533
|
+
PipelineExecutionArn?: string | undefined;
|
|
1526
1534
|
}
|
|
1527
1535
|
export declare const SearchSortOrder: {
|
|
1528
1536
|
readonly ASCENDING: "Ascending";
|
|
@@ -1531,135 +1539,135 @@ export declare const SearchSortOrder: {
|
|
|
1531
1539
|
export type SearchSortOrder =
|
|
1532
1540
|
(typeof SearchSortOrder)[keyof typeof SearchSortOrder];
|
|
1533
1541
|
export interface VisibilityConditions {
|
|
1534
|
-
Key?: string;
|
|
1535
|
-
Value?: string;
|
|
1542
|
+
Key?: string | undefined;
|
|
1543
|
+
Value?: string | undefined;
|
|
1536
1544
|
}
|
|
1537
1545
|
export interface TrainingJob {
|
|
1538
|
-
TrainingJobName?: string;
|
|
1539
|
-
TrainingJobArn?: string;
|
|
1540
|
-
TuningJobArn?: string;
|
|
1541
|
-
LabelingJobArn?: string;
|
|
1542
|
-
AutoMLJobArn?: string;
|
|
1543
|
-
ModelArtifacts?: ModelArtifacts;
|
|
1544
|
-
TrainingJobStatus?: TrainingJobStatus;
|
|
1545
|
-
SecondaryStatus?: SecondaryStatus;
|
|
1546
|
-
FailureReason?: string;
|
|
1547
|
-
HyperParameters?: Record<string, string
|
|
1548
|
-
AlgorithmSpecification?: AlgorithmSpecification;
|
|
1549
|
-
RoleArn?: string;
|
|
1550
|
-
InputDataConfig?: Channel[];
|
|
1551
|
-
OutputDataConfig?: OutputDataConfig;
|
|
1552
|
-
ResourceConfig?: ResourceConfig;
|
|
1553
|
-
VpcConfig?: VpcConfig;
|
|
1554
|
-
StoppingCondition?: StoppingCondition;
|
|
1555
|
-
CreationTime?: Date;
|
|
1556
|
-
TrainingStartTime?: Date;
|
|
1557
|
-
TrainingEndTime?: Date;
|
|
1558
|
-
LastModifiedTime?: Date;
|
|
1559
|
-
SecondaryStatusTransitions?: SecondaryStatusTransition[];
|
|
1560
|
-
FinalMetricDataList?: MetricData[];
|
|
1561
|
-
EnableNetworkIsolation?: boolean;
|
|
1562
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
1563
|
-
EnableManagedSpotTraining?: boolean;
|
|
1564
|
-
CheckpointConfig?: CheckpointConfig;
|
|
1565
|
-
TrainingTimeInSeconds?: number;
|
|
1566
|
-
BillableTimeInSeconds?: number;
|
|
1567
|
-
DebugHookConfig?: DebugHookConfig;
|
|
1568
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1569
|
-
DebugRuleConfigurations?: DebugRuleConfiguration[];
|
|
1570
|
-
TensorBoardOutputConfig?: TensorBoardOutputConfig;
|
|
1571
|
-
DebugRuleEvaluationStatuses?: DebugRuleEvaluationStatus[];
|
|
1572
|
-
ProfilerConfig?: ProfilerConfig;
|
|
1573
|
-
Environment?: Record<string, string
|
|
1574
|
-
RetryStrategy?: RetryStrategy;
|
|
1575
|
-
Tags?: Tag[];
|
|
1546
|
+
TrainingJobName?: string | undefined;
|
|
1547
|
+
TrainingJobArn?: string | undefined;
|
|
1548
|
+
TuningJobArn?: string | undefined;
|
|
1549
|
+
LabelingJobArn?: string | undefined;
|
|
1550
|
+
AutoMLJobArn?: string | undefined;
|
|
1551
|
+
ModelArtifacts?: ModelArtifacts | undefined;
|
|
1552
|
+
TrainingJobStatus?: TrainingJobStatus | undefined;
|
|
1553
|
+
SecondaryStatus?: SecondaryStatus | undefined;
|
|
1554
|
+
FailureReason?: string | undefined;
|
|
1555
|
+
HyperParameters?: Record<string, string> | undefined;
|
|
1556
|
+
AlgorithmSpecification?: AlgorithmSpecification | undefined;
|
|
1557
|
+
RoleArn?: string | undefined;
|
|
1558
|
+
InputDataConfig?: Channel[] | undefined;
|
|
1559
|
+
OutputDataConfig?: OutputDataConfig | undefined;
|
|
1560
|
+
ResourceConfig?: ResourceConfig | undefined;
|
|
1561
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1562
|
+
StoppingCondition?: StoppingCondition | undefined;
|
|
1563
|
+
CreationTime?: Date | undefined;
|
|
1564
|
+
TrainingStartTime?: Date | undefined;
|
|
1565
|
+
TrainingEndTime?: Date | undefined;
|
|
1566
|
+
LastModifiedTime?: Date | undefined;
|
|
1567
|
+
SecondaryStatusTransitions?: SecondaryStatusTransition[] | undefined;
|
|
1568
|
+
FinalMetricDataList?: MetricData[] | undefined;
|
|
1569
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
1570
|
+
EnableInterContainerTrafficEncryption?: boolean | undefined;
|
|
1571
|
+
EnableManagedSpotTraining?: boolean | undefined;
|
|
1572
|
+
CheckpointConfig?: CheckpointConfig | undefined;
|
|
1573
|
+
TrainingTimeInSeconds?: number | undefined;
|
|
1574
|
+
BillableTimeInSeconds?: number | undefined;
|
|
1575
|
+
DebugHookConfig?: DebugHookConfig | undefined;
|
|
1576
|
+
ExperimentConfig?: ExperimentConfig | undefined;
|
|
1577
|
+
DebugRuleConfigurations?: DebugRuleConfiguration[] | undefined;
|
|
1578
|
+
TensorBoardOutputConfig?: TensorBoardOutputConfig | undefined;
|
|
1579
|
+
DebugRuleEvaluationStatuses?: DebugRuleEvaluationStatus[] | undefined;
|
|
1580
|
+
ProfilerConfig?: ProfilerConfig | undefined;
|
|
1581
|
+
Environment?: Record<string, string> | undefined;
|
|
1582
|
+
RetryStrategy?: RetryStrategy | undefined;
|
|
1583
|
+
Tags?: Tag[] | undefined;
|
|
1576
1584
|
}
|
|
1577
1585
|
export interface TrialComponentSimpleSummary {
|
|
1578
|
-
TrialComponentName?: string;
|
|
1579
|
-
TrialComponentArn?: string;
|
|
1580
|
-
TrialComponentSource?: TrialComponentSource;
|
|
1581
|
-
CreationTime?: Date;
|
|
1582
|
-
CreatedBy?: UserContext;
|
|
1586
|
+
TrialComponentName?: string | undefined;
|
|
1587
|
+
TrialComponentArn?: string | undefined;
|
|
1588
|
+
TrialComponentSource?: TrialComponentSource | undefined;
|
|
1589
|
+
CreationTime?: Date | undefined;
|
|
1590
|
+
CreatedBy?: UserContext | undefined;
|
|
1583
1591
|
}
|
|
1584
1592
|
export interface Trial {
|
|
1585
|
-
TrialName?: string;
|
|
1586
|
-
TrialArn?: string;
|
|
1587
|
-
DisplayName?: string;
|
|
1588
|
-
ExperimentName?: string;
|
|
1589
|
-
Source?: TrialSource;
|
|
1590
|
-
CreationTime?: Date;
|
|
1591
|
-
CreatedBy?: UserContext;
|
|
1592
|
-
LastModifiedTime?: Date;
|
|
1593
|
-
LastModifiedBy?: UserContext;
|
|
1594
|
-
MetadataProperties?: MetadataProperties;
|
|
1595
|
-
Tags?: Tag[];
|
|
1596
|
-
TrialComponentSummaries?: TrialComponentSimpleSummary[];
|
|
1593
|
+
TrialName?: string | undefined;
|
|
1594
|
+
TrialArn?: string | undefined;
|
|
1595
|
+
DisplayName?: string | undefined;
|
|
1596
|
+
ExperimentName?: string | undefined;
|
|
1597
|
+
Source?: TrialSource | undefined;
|
|
1598
|
+
CreationTime?: Date | undefined;
|
|
1599
|
+
CreatedBy?: UserContext | undefined;
|
|
1600
|
+
LastModifiedTime?: Date | undefined;
|
|
1601
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1602
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
1603
|
+
Tags?: Tag[] | undefined;
|
|
1604
|
+
TrialComponentSummaries?: TrialComponentSimpleSummary[] | undefined;
|
|
1597
1605
|
}
|
|
1598
1606
|
export interface TrialComponentSourceDetail {
|
|
1599
|
-
SourceArn?: string;
|
|
1600
|
-
TrainingJob?: TrainingJob;
|
|
1601
|
-
ProcessingJob?: ProcessingJob;
|
|
1602
|
-
TransformJob?: TransformJob;
|
|
1607
|
+
SourceArn?: string | undefined;
|
|
1608
|
+
TrainingJob?: TrainingJob | undefined;
|
|
1609
|
+
ProcessingJob?: ProcessingJob | undefined;
|
|
1610
|
+
TransformJob?: TransformJob | undefined;
|
|
1603
1611
|
}
|
|
1604
1612
|
export interface TrialComponent {
|
|
1605
|
-
TrialComponentName?: string;
|
|
1606
|
-
DisplayName?: string;
|
|
1607
|
-
TrialComponentArn?: string;
|
|
1608
|
-
Source?: TrialComponentSource;
|
|
1609
|
-
Status?: TrialComponentStatus;
|
|
1610
|
-
StartTime?: Date;
|
|
1611
|
-
EndTime?: Date;
|
|
1612
|
-
CreationTime?: Date;
|
|
1613
|
-
CreatedBy?: UserContext;
|
|
1614
|
-
LastModifiedTime?: Date;
|
|
1615
|
-
LastModifiedBy?: UserContext;
|
|
1616
|
-
Parameters?: Record<string, TrialComponentParameterValue
|
|
1617
|
-
InputArtifacts?: Record<string, TrialComponentArtifact
|
|
1618
|
-
OutputArtifacts?: Record<string, TrialComponentArtifact
|
|
1619
|
-
Metrics?: TrialComponentMetricSummary[];
|
|
1620
|
-
MetadataProperties?: MetadataProperties;
|
|
1621
|
-
SourceDetail?: TrialComponentSourceDetail;
|
|
1622
|
-
LineageGroupArn?: string;
|
|
1623
|
-
Tags?: Tag[];
|
|
1624
|
-
Parents?: Parent[];
|
|
1625
|
-
RunName?: string;
|
|
1613
|
+
TrialComponentName?: string | undefined;
|
|
1614
|
+
DisplayName?: string | undefined;
|
|
1615
|
+
TrialComponentArn?: string | undefined;
|
|
1616
|
+
Source?: TrialComponentSource | undefined;
|
|
1617
|
+
Status?: TrialComponentStatus | undefined;
|
|
1618
|
+
StartTime?: Date | undefined;
|
|
1619
|
+
EndTime?: Date | undefined;
|
|
1620
|
+
CreationTime?: Date | undefined;
|
|
1621
|
+
CreatedBy?: UserContext | undefined;
|
|
1622
|
+
LastModifiedTime?: Date | undefined;
|
|
1623
|
+
LastModifiedBy?: UserContext | undefined;
|
|
1624
|
+
Parameters?: Record<string, TrialComponentParameterValue> | undefined;
|
|
1625
|
+
InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
|
|
1626
|
+
OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
|
|
1627
|
+
Metrics?: TrialComponentMetricSummary[] | undefined;
|
|
1628
|
+
MetadataProperties?: MetadataProperties | undefined;
|
|
1629
|
+
SourceDetail?: TrialComponentSourceDetail | undefined;
|
|
1630
|
+
LineageGroupArn?: string | undefined;
|
|
1631
|
+
Tags?: Tag[] | undefined;
|
|
1632
|
+
Parents?: Parent[] | undefined;
|
|
1633
|
+
RunName?: string | undefined;
|
|
1626
1634
|
}
|
|
1627
1635
|
export interface SearchRecord {
|
|
1628
|
-
TrainingJob?: TrainingJob;
|
|
1629
|
-
Experiment?: Experiment;
|
|
1630
|
-
Trial?: Trial;
|
|
1631
|
-
TrialComponent?: TrialComponent;
|
|
1632
|
-
Endpoint?: Endpoint;
|
|
1633
|
-
ModelPackage?: ModelPackage;
|
|
1634
|
-
ModelPackageGroup?: ModelPackageGroup;
|
|
1635
|
-
Pipeline?: Pipeline;
|
|
1636
|
-
PipelineExecution?: PipelineExecution;
|
|
1637
|
-
FeatureGroup?: FeatureGroup;
|
|
1638
|
-
FeatureMetadata?: FeatureMetadata;
|
|
1639
|
-
Project?: Project;
|
|
1640
|
-
HyperParameterTuningJob?: HyperParameterTuningJobSearchEntity;
|
|
1641
|
-
ModelCard?: ModelCard;
|
|
1642
|
-
Model?: ModelDashboardModel;
|
|
1636
|
+
TrainingJob?: TrainingJob | undefined;
|
|
1637
|
+
Experiment?: Experiment | undefined;
|
|
1638
|
+
Trial?: Trial | undefined;
|
|
1639
|
+
TrialComponent?: TrialComponent | undefined;
|
|
1640
|
+
Endpoint?: Endpoint | undefined;
|
|
1641
|
+
ModelPackage?: ModelPackage | undefined;
|
|
1642
|
+
ModelPackageGroup?: ModelPackageGroup | undefined;
|
|
1643
|
+
Pipeline?: Pipeline | undefined;
|
|
1644
|
+
PipelineExecution?: PipelineExecution | undefined;
|
|
1645
|
+
FeatureGroup?: FeatureGroup | undefined;
|
|
1646
|
+
FeatureMetadata?: FeatureMetadata | undefined;
|
|
1647
|
+
Project?: Project | undefined;
|
|
1648
|
+
HyperParameterTuningJob?: HyperParameterTuningJobSearchEntity | undefined;
|
|
1649
|
+
ModelCard?: ModelCard | undefined;
|
|
1650
|
+
Model?: ModelDashboardModel | undefined;
|
|
1643
1651
|
}
|
|
1644
1652
|
export interface SearchResponse {
|
|
1645
|
-
Results?: SearchRecord[];
|
|
1646
|
-
NextToken?: string;
|
|
1653
|
+
Results?: SearchRecord[] | undefined;
|
|
1654
|
+
NextToken?: string | undefined;
|
|
1647
1655
|
}
|
|
1648
1656
|
export interface SendPipelineExecutionStepFailureRequest {
|
|
1649
1657
|
CallbackToken: string | undefined;
|
|
1650
|
-
FailureReason?: string;
|
|
1651
|
-
ClientRequestToken?: string;
|
|
1658
|
+
FailureReason?: string | undefined;
|
|
1659
|
+
ClientRequestToken?: string | undefined;
|
|
1652
1660
|
}
|
|
1653
1661
|
export interface SendPipelineExecutionStepFailureResponse {
|
|
1654
|
-
PipelineExecutionArn?: string;
|
|
1662
|
+
PipelineExecutionArn?: string | undefined;
|
|
1655
1663
|
}
|
|
1656
1664
|
export interface SendPipelineExecutionStepSuccessRequest {
|
|
1657
1665
|
CallbackToken: string | undefined;
|
|
1658
|
-
OutputParameters?: OutputParameter[];
|
|
1659
|
-
ClientRequestToken?: string;
|
|
1666
|
+
OutputParameters?: OutputParameter[] | undefined;
|
|
1667
|
+
ClientRequestToken?: string | undefined;
|
|
1660
1668
|
}
|
|
1661
1669
|
export interface SendPipelineExecutionStepSuccessResponse {
|
|
1662
|
-
PipelineExecutionArn?: string;
|
|
1670
|
+
PipelineExecutionArn?: string | undefined;
|
|
1663
1671
|
}
|
|
1664
1672
|
export interface StartEdgeDeploymentStageRequest {
|
|
1665
1673
|
EdgeDeploymentPlanName: string | undefined;
|
|
@@ -1675,7 +1683,7 @@ export interface StartMlflowTrackingServerRequest {
|
|
|
1675
1683
|
TrackingServerName: string | undefined;
|
|
1676
1684
|
}
|
|
1677
1685
|
export interface StartMlflowTrackingServerResponse {
|
|
1678
|
-
TrackingServerArn?: string;
|
|
1686
|
+
TrackingServerArn?: string | undefined;
|
|
1679
1687
|
}
|
|
1680
1688
|
export interface StartMonitoringScheduleRequest {
|
|
1681
1689
|
MonitoringScheduleName: string | undefined;
|
|
@@ -1685,15 +1693,15 @@ export interface StartNotebookInstanceInput {
|
|
|
1685
1693
|
}
|
|
1686
1694
|
export interface StartPipelineExecutionRequest {
|
|
1687
1695
|
PipelineName: string | undefined;
|
|
1688
|
-
PipelineExecutionDisplayName?: string;
|
|
1689
|
-
PipelineParameters?: Parameter[];
|
|
1690
|
-
PipelineExecutionDescription?: string;
|
|
1691
|
-
ClientRequestToken?: string;
|
|
1692
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1693
|
-
SelectiveExecutionConfig?: SelectiveExecutionConfig;
|
|
1696
|
+
PipelineExecutionDisplayName?: string | undefined;
|
|
1697
|
+
PipelineParameters?: Parameter[] | undefined;
|
|
1698
|
+
PipelineExecutionDescription?: string | undefined;
|
|
1699
|
+
ClientRequestToken?: string | undefined;
|
|
1700
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
1701
|
+
SelectiveExecutionConfig?: SelectiveExecutionConfig | undefined;
|
|
1694
1702
|
}
|
|
1695
1703
|
export interface StartPipelineExecutionResponse {
|
|
1696
|
-
PipelineExecutionArn?: string;
|
|
1704
|
+
PipelineExecutionArn?: string | undefined;
|
|
1697
1705
|
}
|
|
1698
1706
|
export interface StopAutoMLJobRequest {
|
|
1699
1707
|
AutoMLJobName: string | undefined;
|
|
@@ -1714,9 +1722,9 @@ export interface StopHyperParameterTuningJobRequest {
|
|
|
1714
1722
|
export interface StopInferenceExperimentRequest {
|
|
1715
1723
|
Name: string | undefined;
|
|
1716
1724
|
ModelVariantActions: Record<string, ModelVariantAction> | undefined;
|
|
1717
|
-
DesiredModelVariants?: ModelVariantConfig[];
|
|
1718
|
-
DesiredState?: InferenceExperimentStopDesiredState;
|
|
1719
|
-
Reason?: string;
|
|
1725
|
+
DesiredModelVariants?: ModelVariantConfig[] | undefined;
|
|
1726
|
+
DesiredState?: InferenceExperimentStopDesiredState | undefined;
|
|
1727
|
+
Reason?: string | undefined;
|
|
1720
1728
|
}
|
|
1721
1729
|
export interface StopInferenceExperimentResponse {
|
|
1722
1730
|
InferenceExperimentArn: string | undefined;
|
|
@@ -1731,7 +1739,7 @@ export interface StopMlflowTrackingServerRequest {
|
|
|
1731
1739
|
TrackingServerName: string | undefined;
|
|
1732
1740
|
}
|
|
1733
1741
|
export interface StopMlflowTrackingServerResponse {
|
|
1734
|
-
TrackingServerArn?: string;
|
|
1742
|
+
TrackingServerArn?: string | undefined;
|
|
1735
1743
|
}
|
|
1736
1744
|
export interface StopMonitoringScheduleRequest {
|
|
1737
1745
|
MonitoringScheduleName: string | undefined;
|
|
@@ -1744,10 +1752,10 @@ export interface StopOptimizationJobRequest {
|
|
|
1744
1752
|
}
|
|
1745
1753
|
export interface StopPipelineExecutionRequest {
|
|
1746
1754
|
PipelineExecutionArn: string | undefined;
|
|
1747
|
-
ClientRequestToken?: string;
|
|
1755
|
+
ClientRequestToken?: string | undefined;
|
|
1748
1756
|
}
|
|
1749
1757
|
export interface StopPipelineExecutionResponse {
|
|
1750
|
-
PipelineExecutionArn?: string;
|
|
1758
|
+
PipelineExecutionArn?: string | undefined;
|
|
1751
1759
|
}
|
|
1752
1760
|
export interface StopProcessingJobRequest {
|
|
1753
1761
|
ProcessingJobName: string | undefined;
|
|
@@ -1760,36 +1768,36 @@ export interface StopTransformJobRequest {
|
|
|
1760
1768
|
}
|
|
1761
1769
|
export interface UpdateActionRequest {
|
|
1762
1770
|
ActionName: string | undefined;
|
|
1763
|
-
Description?: string;
|
|
1764
|
-
Status?: ActionStatus;
|
|
1765
|
-
Properties?: Record<string, string
|
|
1766
|
-
PropertiesToRemove?: string[];
|
|
1771
|
+
Description?: string | undefined;
|
|
1772
|
+
Status?: ActionStatus | undefined;
|
|
1773
|
+
Properties?: Record<string, string> | undefined;
|
|
1774
|
+
PropertiesToRemove?: string[] | undefined;
|
|
1767
1775
|
}
|
|
1768
1776
|
export interface UpdateActionResponse {
|
|
1769
|
-
ActionArn?: string;
|
|
1777
|
+
ActionArn?: string | undefined;
|
|
1770
1778
|
}
|
|
1771
1779
|
export interface UpdateAppImageConfigRequest {
|
|
1772
1780
|
AppImageConfigName: string | undefined;
|
|
1773
|
-
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
1774
|
-
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
1775
|
-
CodeEditorAppImageConfig?: CodeEditorAppImageConfig;
|
|
1781
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
|
|
1782
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
|
|
1783
|
+
CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
|
|
1776
1784
|
}
|
|
1777
1785
|
export interface UpdateAppImageConfigResponse {
|
|
1778
|
-
AppImageConfigArn?: string;
|
|
1786
|
+
AppImageConfigArn?: string | undefined;
|
|
1779
1787
|
}
|
|
1780
1788
|
export interface UpdateArtifactRequest {
|
|
1781
1789
|
ArtifactArn: string | undefined;
|
|
1782
|
-
ArtifactName?: string;
|
|
1783
|
-
Properties?: Record<string, string
|
|
1784
|
-
PropertiesToRemove?: string[];
|
|
1790
|
+
ArtifactName?: string | undefined;
|
|
1791
|
+
Properties?: Record<string, string> | undefined;
|
|
1792
|
+
PropertiesToRemove?: string[] | undefined;
|
|
1785
1793
|
}
|
|
1786
1794
|
export interface UpdateArtifactResponse {
|
|
1787
|
-
ArtifactArn?: string;
|
|
1795
|
+
ArtifactArn?: string | undefined;
|
|
1788
1796
|
}
|
|
1789
1797
|
export interface UpdateClusterRequest {
|
|
1790
1798
|
ClusterName: string | undefined;
|
|
1791
1799
|
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
1792
|
-
NodeRecovery?: ClusterNodeRecovery;
|
|
1800
|
+
NodeRecovery?: ClusterNodeRecovery | undefined;
|
|
1793
1801
|
}
|
|
1794
1802
|
export interface UpdateClusterResponse {
|
|
1795
1803
|
ClusterArn: string | undefined;
|
|
@@ -1802,26 +1810,26 @@ export interface UpdateClusterSoftwareResponse {
|
|
|
1802
1810
|
}
|
|
1803
1811
|
export interface UpdateCodeRepositoryInput {
|
|
1804
1812
|
CodeRepositoryName: string | undefined;
|
|
1805
|
-
GitConfig?: GitConfigForUpdate;
|
|
1813
|
+
GitConfig?: GitConfigForUpdate | undefined;
|
|
1806
1814
|
}
|
|
1807
1815
|
export interface UpdateCodeRepositoryOutput {
|
|
1808
1816
|
CodeRepositoryArn: string | undefined;
|
|
1809
1817
|
}
|
|
1810
1818
|
export interface UpdateContextRequest {
|
|
1811
1819
|
ContextName: string | undefined;
|
|
1812
|
-
Description?: string;
|
|
1813
|
-
Properties?: Record<string, string
|
|
1814
|
-
PropertiesToRemove?: string[];
|
|
1820
|
+
Description?: string | undefined;
|
|
1821
|
+
Properties?: Record<string, string> | undefined;
|
|
1822
|
+
PropertiesToRemove?: string[] | undefined;
|
|
1815
1823
|
}
|
|
1816
1824
|
export interface UpdateContextResponse {
|
|
1817
|
-
ContextArn?: string;
|
|
1825
|
+
ContextArn?: string | undefined;
|
|
1818
1826
|
}
|
|
1819
1827
|
export interface UpdateDeviceFleetRequest {
|
|
1820
1828
|
DeviceFleetName: string | undefined;
|
|
1821
|
-
RoleArn?: string;
|
|
1822
|
-
Description?: string;
|
|
1829
|
+
RoleArn?: string | undefined;
|
|
1830
|
+
Description?: string | undefined;
|
|
1823
1831
|
OutputConfig: EdgeOutputConfig | undefined;
|
|
1824
|
-
EnableIotRoleAlias?: boolean;
|
|
1832
|
+
EnableIotRoleAlias?: boolean | undefined;
|
|
1825
1833
|
}
|
|
1826
1834
|
export interface UpdateDevicesRequest {
|
|
1827
1835
|
DeviceFleetName: string | undefined;
|
|
@@ -1829,16 +1837,16 @@ export interface UpdateDevicesRequest {
|
|
|
1829
1837
|
}
|
|
1830
1838
|
export interface UpdateDomainRequest {
|
|
1831
1839
|
DomainId: string | undefined;
|
|
1832
|
-
DefaultUserSettings?: UserSettings;
|
|
1833
|
-
DomainSettingsForUpdate?: DomainSettingsForUpdate;
|
|
1834
|
-
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
1835
|
-
DefaultSpaceSettings?: DefaultSpaceSettings;
|
|
1836
|
-
SubnetIds?: string[];
|
|
1837
|
-
AppNetworkAccessType?: AppNetworkAccessType;
|
|
1838
|
-
TagPropagation?: TagPropagation;
|
|
1840
|
+
DefaultUserSettings?: UserSettings | undefined;
|
|
1841
|
+
DomainSettingsForUpdate?: DomainSettingsForUpdate | undefined;
|
|
1842
|
+
AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
|
|
1843
|
+
DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
|
|
1844
|
+
SubnetIds?: string[] | undefined;
|
|
1845
|
+
AppNetworkAccessType?: AppNetworkAccessType | undefined;
|
|
1846
|
+
TagPropagation?: TagPropagation | undefined;
|
|
1839
1847
|
}
|
|
1840
1848
|
export interface UpdateDomainResponse {
|
|
1841
|
-
DomainArn?: string;
|
|
1849
|
+
DomainArn?: string | undefined;
|
|
1842
1850
|
}
|
|
1843
1851
|
export declare const VariantPropertyType: {
|
|
1844
1852
|
readonly DataCaptureConfig: "DataCaptureConfig";
|
|
@@ -1853,10 +1861,10 @@ export interface VariantProperty {
|
|
|
1853
1861
|
export interface UpdateEndpointInput {
|
|
1854
1862
|
EndpointName: string | undefined;
|
|
1855
1863
|
EndpointConfigName: string | undefined;
|
|
1856
|
-
RetainAllVariantProperties?: boolean;
|
|
1857
|
-
ExcludeRetainedVariantProperties?: VariantProperty[];
|
|
1858
|
-
DeploymentConfig?: DeploymentConfig;
|
|
1859
|
-
RetainDeploymentConfig?: boolean;
|
|
1864
|
+
RetainAllVariantProperties?: boolean | undefined;
|
|
1865
|
+
ExcludeRetainedVariantProperties?: VariantProperty[] | undefined;
|
|
1866
|
+
DeploymentConfig?: DeploymentConfig | undefined;
|
|
1867
|
+
RetainDeploymentConfig?: boolean | undefined;
|
|
1860
1868
|
}
|
|
1861
1869
|
export interface UpdateEndpointOutput {
|
|
1862
1870
|
EndpointArn: string | undefined;
|
|
@@ -1870,22 +1878,22 @@ export interface UpdateEndpointWeightsAndCapacitiesOutput {
|
|
|
1870
1878
|
}
|
|
1871
1879
|
export interface UpdateExperimentRequest {
|
|
1872
1880
|
ExperimentName: string | undefined;
|
|
1873
|
-
DisplayName?: string;
|
|
1874
|
-
Description?: string;
|
|
1881
|
+
DisplayName?: string | undefined;
|
|
1882
|
+
Description?: string | undefined;
|
|
1875
1883
|
}
|
|
1876
1884
|
export interface UpdateExperimentResponse {
|
|
1877
|
-
ExperimentArn?: string;
|
|
1885
|
+
ExperimentArn?: string | undefined;
|
|
1878
1886
|
}
|
|
1879
1887
|
export interface ThroughputConfigUpdate {
|
|
1880
|
-
ThroughputMode?: ThroughputMode;
|
|
1881
|
-
ProvisionedReadCapacityUnits?: number;
|
|
1882
|
-
ProvisionedWriteCapacityUnits?: number;
|
|
1888
|
+
ThroughputMode?: ThroughputMode | undefined;
|
|
1889
|
+
ProvisionedReadCapacityUnits?: number | undefined;
|
|
1890
|
+
ProvisionedWriteCapacityUnits?: number | undefined;
|
|
1883
1891
|
}
|
|
1884
1892
|
export interface UpdateFeatureGroupRequest {
|
|
1885
1893
|
FeatureGroupName: string | undefined;
|
|
1886
|
-
FeatureAdditions?: FeatureDefinition[];
|
|
1887
|
-
OnlineStoreConfig?: OnlineStoreConfigUpdate;
|
|
1888
|
-
ThroughputConfig?: ThroughputConfigUpdate;
|
|
1894
|
+
FeatureAdditions?: FeatureDefinition[] | undefined;
|
|
1895
|
+
OnlineStoreConfig?: OnlineStoreConfigUpdate | undefined;
|
|
1896
|
+
ThroughputConfig?: ThroughputConfigUpdate | undefined;
|
|
1889
1897
|
}
|
|
1890
1898
|
export interface UpdateFeatureGroupResponse {
|
|
1891
1899
|
FeatureGroupArn: string | undefined;
|
|
@@ -1893,50 +1901,50 @@ export interface UpdateFeatureGroupResponse {
|
|
|
1893
1901
|
export interface UpdateFeatureMetadataRequest {
|
|
1894
1902
|
FeatureGroupName: string | undefined;
|
|
1895
1903
|
FeatureName: string | undefined;
|
|
1896
|
-
Description?: string;
|
|
1897
|
-
ParameterAdditions?: FeatureParameter[];
|
|
1898
|
-
ParameterRemovals?: string[];
|
|
1904
|
+
Description?: string | undefined;
|
|
1905
|
+
ParameterAdditions?: FeatureParameter[] | undefined;
|
|
1906
|
+
ParameterRemovals?: string[] | undefined;
|
|
1899
1907
|
}
|
|
1900
1908
|
export interface UpdateHubRequest {
|
|
1901
1909
|
HubName: string | undefined;
|
|
1902
|
-
HubDescription?: string;
|
|
1903
|
-
HubDisplayName?: string;
|
|
1904
|
-
HubSearchKeywords?: string[];
|
|
1910
|
+
HubDescription?: string | undefined;
|
|
1911
|
+
HubDisplayName?: string | undefined;
|
|
1912
|
+
HubSearchKeywords?: string[] | undefined;
|
|
1905
1913
|
}
|
|
1906
1914
|
export interface UpdateHubResponse {
|
|
1907
1915
|
HubArn: string | undefined;
|
|
1908
1916
|
}
|
|
1909
1917
|
export interface UpdateImageRequest {
|
|
1910
|
-
DeleteProperties?: string[];
|
|
1911
|
-
Description?: string;
|
|
1912
|
-
DisplayName?: string;
|
|
1918
|
+
DeleteProperties?: string[] | undefined;
|
|
1919
|
+
Description?: string | undefined;
|
|
1920
|
+
DisplayName?: string | undefined;
|
|
1913
1921
|
ImageName: string | undefined;
|
|
1914
|
-
RoleArn?: string;
|
|
1922
|
+
RoleArn?: string | undefined;
|
|
1915
1923
|
}
|
|
1916
1924
|
export interface UpdateImageResponse {
|
|
1917
|
-
ImageArn?: string;
|
|
1925
|
+
ImageArn?: string | undefined;
|
|
1918
1926
|
}
|
|
1919
1927
|
export interface UpdateImageVersionRequest {
|
|
1920
1928
|
ImageName: string | undefined;
|
|
1921
|
-
Alias?: string;
|
|
1922
|
-
Version?: number;
|
|
1923
|
-
AliasesToAdd?: string[];
|
|
1924
|
-
AliasesToDelete?: string[];
|
|
1925
|
-
VendorGuidance?: VendorGuidance;
|
|
1926
|
-
JobType?: JobType;
|
|
1927
|
-
MLFramework?: string;
|
|
1928
|
-
ProgrammingLang?: string;
|
|
1929
|
-
Processor?: Processor;
|
|
1930
|
-
Horovod?: boolean;
|
|
1931
|
-
ReleaseNotes?: string;
|
|
1929
|
+
Alias?: string | undefined;
|
|
1930
|
+
Version?: number | undefined;
|
|
1931
|
+
AliasesToAdd?: string[] | undefined;
|
|
1932
|
+
AliasesToDelete?: string[] | undefined;
|
|
1933
|
+
VendorGuidance?: VendorGuidance | undefined;
|
|
1934
|
+
JobType?: JobType | undefined;
|
|
1935
|
+
MLFramework?: string | undefined;
|
|
1936
|
+
ProgrammingLang?: string | undefined;
|
|
1937
|
+
Processor?: Processor | undefined;
|
|
1938
|
+
Horovod?: boolean | undefined;
|
|
1939
|
+
ReleaseNotes?: string | undefined;
|
|
1932
1940
|
}
|
|
1933
1941
|
export interface UpdateImageVersionResponse {
|
|
1934
|
-
ImageVersionArn?: string;
|
|
1942
|
+
ImageVersionArn?: string | undefined;
|
|
1935
1943
|
}
|
|
1936
1944
|
export interface UpdateInferenceComponentInput {
|
|
1937
1945
|
InferenceComponentName: string | undefined;
|
|
1938
|
-
Specification?: InferenceComponentSpecification;
|
|
1939
|
-
RuntimeConfig?: InferenceComponentRuntimeConfig;
|
|
1946
|
+
Specification?: InferenceComponentSpecification | undefined;
|
|
1947
|
+
RuntimeConfig?: InferenceComponentRuntimeConfig | undefined;
|
|
1940
1948
|
}
|
|
1941
1949
|
export interface UpdateInferenceComponentOutput {
|
|
1942
1950
|
InferenceComponentArn: string | undefined;
|
|
@@ -1950,45 +1958,47 @@ export interface UpdateInferenceComponentRuntimeConfigOutput {
|
|
|
1950
1958
|
}
|
|
1951
1959
|
export interface UpdateInferenceExperimentRequest {
|
|
1952
1960
|
Name: string | undefined;
|
|
1953
|
-
Schedule?: InferenceExperimentSchedule;
|
|
1954
|
-
Description?: string;
|
|
1955
|
-
ModelVariants?: ModelVariantConfig[];
|
|
1956
|
-
DataStorageConfig?: InferenceExperimentDataStorageConfig;
|
|
1957
|
-
ShadowModeConfig?: ShadowModeConfig;
|
|
1961
|
+
Schedule?: InferenceExperimentSchedule | undefined;
|
|
1962
|
+
Description?: string | undefined;
|
|
1963
|
+
ModelVariants?: ModelVariantConfig[] | undefined;
|
|
1964
|
+
DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
|
|
1965
|
+
ShadowModeConfig?: ShadowModeConfig | undefined;
|
|
1958
1966
|
}
|
|
1959
1967
|
export interface UpdateInferenceExperimentResponse {
|
|
1960
1968
|
InferenceExperimentArn: string | undefined;
|
|
1961
1969
|
}
|
|
1962
1970
|
export interface UpdateMlflowTrackingServerRequest {
|
|
1963
1971
|
TrackingServerName: string | undefined;
|
|
1964
|
-
ArtifactStoreUri?: string;
|
|
1965
|
-
TrackingServerSize?: TrackingServerSize;
|
|
1966
|
-
AutomaticModelRegistration?: boolean;
|
|
1967
|
-
WeeklyMaintenanceWindowStart?: string;
|
|
1972
|
+
ArtifactStoreUri?: string | undefined;
|
|
1973
|
+
TrackingServerSize?: TrackingServerSize | undefined;
|
|
1974
|
+
AutomaticModelRegistration?: boolean | undefined;
|
|
1975
|
+
WeeklyMaintenanceWindowStart?: string | undefined;
|
|
1968
1976
|
}
|
|
1969
1977
|
export interface UpdateMlflowTrackingServerResponse {
|
|
1970
|
-
TrackingServerArn?: string;
|
|
1978
|
+
TrackingServerArn?: string | undefined;
|
|
1971
1979
|
}
|
|
1972
1980
|
export interface UpdateModelCardRequest {
|
|
1973
1981
|
ModelCardName: string | undefined;
|
|
1974
|
-
Content?: string;
|
|
1975
|
-
ModelCardStatus?: ModelCardStatus;
|
|
1982
|
+
Content?: string | undefined;
|
|
1983
|
+
ModelCardStatus?: ModelCardStatus | undefined;
|
|
1976
1984
|
}
|
|
1977
1985
|
export interface UpdateModelCardResponse {
|
|
1978
1986
|
ModelCardArn: string | undefined;
|
|
1979
1987
|
}
|
|
1980
1988
|
export interface UpdateModelPackageInput {
|
|
1981
1989
|
ModelPackageArn: string | undefined;
|
|
1982
|
-
ModelApprovalStatus?: ModelApprovalStatus;
|
|
1983
|
-
ApprovalDescription?: string;
|
|
1984
|
-
CustomerMetadataProperties?: Record<string, string
|
|
1985
|
-
CustomerMetadataPropertiesToRemove?: string[];
|
|
1986
|
-
AdditionalInferenceSpecificationsToAdd?:
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1990
|
+
ModelApprovalStatus?: ModelApprovalStatus | undefined;
|
|
1991
|
+
ApprovalDescription?: string | undefined;
|
|
1992
|
+
CustomerMetadataProperties?: Record<string, string> | undefined;
|
|
1993
|
+
CustomerMetadataPropertiesToRemove?: string[] | undefined;
|
|
1994
|
+
AdditionalInferenceSpecificationsToAdd?:
|
|
1995
|
+
| AdditionalInferenceSpecificationDefinition[]
|
|
1996
|
+
| undefined;
|
|
1997
|
+
InferenceSpecification?: InferenceSpecification | undefined;
|
|
1998
|
+
SourceUri?: string | undefined;
|
|
1999
|
+
ModelCard?: ModelPackageModelCard | undefined;
|
|
2000
|
+
ModelLifeCycle?: ModelLifeCycle | undefined;
|
|
2001
|
+
ClientToken?: string | undefined;
|
|
1992
2002
|
}
|
|
1993
2003
|
export interface UpdateModelPackageOutput {
|
|
1994
2004
|
ModelPackageArn: string | undefined;
|
|
@@ -2001,7 +2011,7 @@ export interface UpdateMonitoringAlertRequest {
|
|
|
2001
2011
|
}
|
|
2002
2012
|
export interface UpdateMonitoringAlertResponse {
|
|
2003
2013
|
MonitoringScheduleArn: string | undefined;
|
|
2004
|
-
MonitoringAlertName?: string;
|
|
2014
|
+
MonitoringAlertName?: string | undefined;
|
|
2005
2015
|
}
|
|
2006
2016
|
export interface UpdateMonitoringScheduleRequest {
|
|
2007
2017
|
MonitoringScheduleName: string | undefined;
|
|
@@ -2012,57 +2022,61 @@ export interface UpdateMonitoringScheduleResponse {
|
|
|
2012
2022
|
}
|
|
2013
2023
|
export interface UpdateNotebookInstanceInput {
|
|
2014
2024
|
NotebookInstanceName: string | undefined;
|
|
2015
|
-
InstanceType?: _InstanceType;
|
|
2016
|
-
RoleArn?: string;
|
|
2017
|
-
LifecycleConfigName?: string;
|
|
2018
|
-
DisassociateLifecycleConfig?: boolean;
|
|
2019
|
-
VolumeSizeInGB?: number;
|
|
2020
|
-
DefaultCodeRepository?: string;
|
|
2021
|
-
AdditionalCodeRepositories?: string[];
|
|
2022
|
-
AcceleratorTypes?: NotebookInstanceAcceleratorType[];
|
|
2023
|
-
DisassociateAcceleratorTypes?: boolean;
|
|
2024
|
-
DisassociateDefaultCodeRepository?: boolean;
|
|
2025
|
-
DisassociateAdditionalCodeRepositories?: boolean;
|
|
2026
|
-
RootAccess?: RootAccess;
|
|
2027
|
-
InstanceMetadataServiceConfiguration?:
|
|
2025
|
+
InstanceType?: _InstanceType | undefined;
|
|
2026
|
+
RoleArn?: string | undefined;
|
|
2027
|
+
LifecycleConfigName?: string | undefined;
|
|
2028
|
+
DisassociateLifecycleConfig?: boolean | undefined;
|
|
2029
|
+
VolumeSizeInGB?: number | undefined;
|
|
2030
|
+
DefaultCodeRepository?: string | undefined;
|
|
2031
|
+
AdditionalCodeRepositories?: string[] | undefined;
|
|
2032
|
+
AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
|
|
2033
|
+
DisassociateAcceleratorTypes?: boolean | undefined;
|
|
2034
|
+
DisassociateDefaultCodeRepository?: boolean | undefined;
|
|
2035
|
+
DisassociateAdditionalCodeRepositories?: boolean | undefined;
|
|
2036
|
+
RootAccess?: RootAccess | undefined;
|
|
2037
|
+
InstanceMetadataServiceConfiguration?:
|
|
2038
|
+
| InstanceMetadataServiceConfiguration
|
|
2039
|
+
| undefined;
|
|
2028
2040
|
}
|
|
2029
2041
|
export interface UpdateNotebookInstanceOutput {}
|
|
2030
2042
|
export interface UpdateNotebookInstanceLifecycleConfigInput {
|
|
2031
2043
|
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
2032
|
-
OnCreate?: NotebookInstanceLifecycleHook[];
|
|
2033
|
-
OnStart?: NotebookInstanceLifecycleHook[];
|
|
2044
|
+
OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
|
|
2045
|
+
OnStart?: NotebookInstanceLifecycleHook[] | undefined;
|
|
2034
2046
|
}
|
|
2035
2047
|
export interface UpdateNotebookInstanceLifecycleConfigOutput {}
|
|
2036
2048
|
export interface UpdatePipelineRequest {
|
|
2037
2049
|
PipelineName: string | undefined;
|
|
2038
|
-
PipelineDisplayName?: string;
|
|
2039
|
-
PipelineDefinition?: string;
|
|
2040
|
-
PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
|
|
2041
|
-
PipelineDescription?: string;
|
|
2042
|
-
RoleArn?: string;
|
|
2043
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
2050
|
+
PipelineDisplayName?: string | undefined;
|
|
2051
|
+
PipelineDefinition?: string | undefined;
|
|
2052
|
+
PipelineDefinitionS3Location?: PipelineDefinitionS3Location | undefined;
|
|
2053
|
+
PipelineDescription?: string | undefined;
|
|
2054
|
+
RoleArn?: string | undefined;
|
|
2055
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
2044
2056
|
}
|
|
2045
2057
|
export interface UpdatePipelineResponse {
|
|
2046
|
-
PipelineArn?: string;
|
|
2058
|
+
PipelineArn?: string | undefined;
|
|
2047
2059
|
}
|
|
2048
2060
|
export interface UpdatePipelineExecutionRequest {
|
|
2049
2061
|
PipelineExecutionArn: string | undefined;
|
|
2050
|
-
PipelineExecutionDescription?: string;
|
|
2051
|
-
PipelineExecutionDisplayName?: string;
|
|
2052
|
-
ParallelismConfiguration?: ParallelismConfiguration;
|
|
2062
|
+
PipelineExecutionDescription?: string | undefined;
|
|
2063
|
+
PipelineExecutionDisplayName?: string | undefined;
|
|
2064
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
2053
2065
|
}
|
|
2054
2066
|
export interface UpdatePipelineExecutionResponse {
|
|
2055
|
-
PipelineExecutionArn?: string;
|
|
2067
|
+
PipelineExecutionArn?: string | undefined;
|
|
2056
2068
|
}
|
|
2057
2069
|
export interface ServiceCatalogProvisioningUpdateDetails {
|
|
2058
|
-
ProvisioningArtifactId?: string;
|
|
2059
|
-
ProvisioningParameters?: ProvisioningParameter[];
|
|
2070
|
+
ProvisioningArtifactId?: string | undefined;
|
|
2071
|
+
ProvisioningParameters?: ProvisioningParameter[] | undefined;
|
|
2060
2072
|
}
|
|
2061
2073
|
export interface UpdateProjectInput {
|
|
2062
2074
|
ProjectName: string | undefined;
|
|
2063
|
-
ProjectDescription?: string;
|
|
2064
|
-
ServiceCatalogProvisioningUpdateDetails?:
|
|
2065
|
-
|
|
2075
|
+
ProjectDescription?: string | undefined;
|
|
2076
|
+
ServiceCatalogProvisioningUpdateDetails?:
|
|
2077
|
+
| ServiceCatalogProvisioningUpdateDetails
|
|
2078
|
+
| undefined;
|
|
2079
|
+
Tags?: Tag[] | undefined;
|
|
2066
2080
|
}
|
|
2067
2081
|
export interface UpdateProjectOutput {
|
|
2068
2082
|
ProjectArn: string | undefined;
|
|
@@ -2070,44 +2084,44 @@ export interface UpdateProjectOutput {
|
|
|
2070
2084
|
export interface UpdateSpaceRequest {
|
|
2071
2085
|
DomainId: string | undefined;
|
|
2072
2086
|
SpaceName: string | undefined;
|
|
2073
|
-
SpaceSettings?: SpaceSettings;
|
|
2074
|
-
SpaceDisplayName?: string;
|
|
2087
|
+
SpaceSettings?: SpaceSettings | undefined;
|
|
2088
|
+
SpaceDisplayName?: string | undefined;
|
|
2075
2089
|
}
|
|
2076
2090
|
export interface UpdateSpaceResponse {
|
|
2077
|
-
SpaceArn?: string;
|
|
2091
|
+
SpaceArn?: string | undefined;
|
|
2078
2092
|
}
|
|
2079
2093
|
export interface UpdateTrainingJobRequest {
|
|
2080
2094
|
TrainingJobName: string | undefined;
|
|
2081
|
-
ProfilerConfig?: ProfilerConfigForUpdate;
|
|
2082
|
-
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
2083
|
-
ResourceConfig?: ResourceConfigForUpdate;
|
|
2084
|
-
RemoteDebugConfig?: RemoteDebugConfigForUpdate;
|
|
2095
|
+
ProfilerConfig?: ProfilerConfigForUpdate | undefined;
|
|
2096
|
+
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[] | undefined;
|
|
2097
|
+
ResourceConfig?: ResourceConfigForUpdate | undefined;
|
|
2098
|
+
RemoteDebugConfig?: RemoteDebugConfigForUpdate | undefined;
|
|
2085
2099
|
}
|
|
2086
2100
|
export interface UpdateTrainingJobResponse {
|
|
2087
2101
|
TrainingJobArn: string | undefined;
|
|
2088
2102
|
}
|
|
2089
2103
|
export interface UpdateTrialRequest {
|
|
2090
2104
|
TrialName: string | undefined;
|
|
2091
|
-
DisplayName?: string;
|
|
2105
|
+
DisplayName?: string | undefined;
|
|
2092
2106
|
}
|
|
2093
2107
|
export interface UpdateTrialResponse {
|
|
2094
|
-
TrialArn?: string;
|
|
2108
|
+
TrialArn?: string | undefined;
|
|
2095
2109
|
}
|
|
2096
2110
|
export interface UpdateTrialComponentRequest {
|
|
2097
2111
|
TrialComponentName: string | undefined;
|
|
2098
|
-
DisplayName?: string;
|
|
2099
|
-
Status?: TrialComponentStatus;
|
|
2100
|
-
StartTime?: Date;
|
|
2101
|
-
EndTime?: Date;
|
|
2102
|
-
Parameters?: Record<string, TrialComponentParameterValue
|
|
2103
|
-
ParametersToRemove?: string[];
|
|
2104
|
-
InputArtifacts?: Record<string, TrialComponentArtifact
|
|
2105
|
-
InputArtifactsToRemove?: string[];
|
|
2106
|
-
OutputArtifacts?: Record<string, TrialComponentArtifact
|
|
2107
|
-
OutputArtifactsToRemove?: string[];
|
|
2112
|
+
DisplayName?: string | undefined;
|
|
2113
|
+
Status?: TrialComponentStatus | undefined;
|
|
2114
|
+
StartTime?: Date | undefined;
|
|
2115
|
+
EndTime?: Date | undefined;
|
|
2116
|
+
Parameters?: Record<string, TrialComponentParameterValue> | undefined;
|
|
2117
|
+
ParametersToRemove?: string[] | undefined;
|
|
2118
|
+
InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
|
|
2119
|
+
InputArtifactsToRemove?: string[] | undefined;
|
|
2120
|
+
OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
|
|
2121
|
+
OutputArtifactsToRemove?: string[] | undefined;
|
|
2108
2122
|
}
|
|
2109
2123
|
export interface UpdateTrialComponentResponse {
|
|
2110
|
-
TrialComponentArn?: string;
|
|
2124
|
+
TrialComponentArn?: string | undefined;
|
|
2111
2125
|
}
|
|
2112
2126
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2113
2127
|
export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
|