@aws-sdk/client-sagemaker 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +870 -958
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-es/models/models_0.js +870 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-types/models/models_0.d.ts +1320 -880
- package/dist-types/models/models_1.d.ts +402 -232
- package/dist-types/models/models_2.d.ts +685 -400
- package/dist-types/models/models_3.d.ts +487 -232
- package/dist-types/models/models_4.d.ts +10 -5
- package/dist-types/ts3.4/models/models_0.d.ts +1026 -870
- package/dist-types/ts3.4/models/models_1.d.ts +286 -228
- package/dist-types/ts3.4/models/models_2.d.ts +502 -400
- package/dist-types/ts3.4/models/models_3.d.ts +324 -232
- package/dist-types/ts3.4/models/models_4.d.ts +7 -5
- package/package.json +35 -35
|
@@ -183,20 +183,23 @@ export interface LineageGroupSummary {
|
|
|
183
183
|
CreationTime?: Date;
|
|
184
184
|
LastModifiedTime?: Date;
|
|
185
185
|
}
|
|
186
|
-
export declare
|
|
187
|
-
ACTION
|
|
188
|
-
ARTIFACT
|
|
189
|
-
CONTEXT
|
|
190
|
-
TRIAL_COMPONENT
|
|
191
|
-
}
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
186
|
+
export declare const LineageType: {
|
|
187
|
+
readonly ACTION: "Action";
|
|
188
|
+
readonly ARTIFACT: "Artifact";
|
|
189
|
+
readonly CONTEXT: "Context";
|
|
190
|
+
readonly TRIAL_COMPONENT: "TrialComponent";
|
|
191
|
+
};
|
|
192
|
+
export type LineageType = (typeof LineageType)[keyof typeof LineageType];
|
|
193
|
+
export declare const SortActionsBy: {
|
|
194
|
+
readonly CREATION_TIME: "CreationTime";
|
|
195
|
+
readonly NAME: "Name";
|
|
196
|
+
};
|
|
197
|
+
export type SortActionsBy = (typeof SortActionsBy)[keyof typeof SortActionsBy];
|
|
198
|
+
export declare const SortOrder: {
|
|
199
|
+
readonly ASCENDING: "Ascending";
|
|
200
|
+
readonly DESCENDING: "Descending";
|
|
201
|
+
};
|
|
202
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
200
203
|
export interface ListActionsRequest {
|
|
201
204
|
SourceUri?: string;
|
|
202
205
|
ActionType?: string;
|
|
@@ -263,9 +266,11 @@ export interface ListAppsResponse {
|
|
|
263
266
|
Apps?: AppDetails[];
|
|
264
267
|
NextToken?: string;
|
|
265
268
|
}
|
|
266
|
-
export declare
|
|
267
|
-
CREATION_TIME
|
|
268
|
-
}
|
|
269
|
+
export declare const SortArtifactsBy: {
|
|
270
|
+
readonly CREATION_TIME: "CreationTime";
|
|
271
|
+
};
|
|
272
|
+
export type SortArtifactsBy =
|
|
273
|
+
(typeof SortArtifactsBy)[keyof typeof SortArtifactsBy];
|
|
269
274
|
export interface ListArtifactsRequest {
|
|
270
275
|
SourceUri?: string;
|
|
271
276
|
ArtifactType?: string;
|
|
@@ -280,13 +285,15 @@ export interface ListArtifactsResponse {
|
|
|
280
285
|
ArtifactSummaries?: ArtifactSummary[];
|
|
281
286
|
NextToken?: string;
|
|
282
287
|
}
|
|
283
|
-
export declare
|
|
284
|
-
CREATION_TIME
|
|
285
|
-
DESTINATION_ARN
|
|
286
|
-
DESTINATION_TYPE
|
|
287
|
-
SOURCE_ARN
|
|
288
|
-
SOURCE_TYPE
|
|
289
|
-
}
|
|
288
|
+
export declare const SortAssociationsBy: {
|
|
289
|
+
readonly CREATION_TIME: "CreationTime";
|
|
290
|
+
readonly DESTINATION_ARN: "DestinationArn";
|
|
291
|
+
readonly DESTINATION_TYPE: "DestinationType";
|
|
292
|
+
readonly SOURCE_ARN: "SourceArn";
|
|
293
|
+
readonly SOURCE_TYPE: "SourceType";
|
|
294
|
+
};
|
|
295
|
+
export type SortAssociationsBy =
|
|
296
|
+
(typeof SortAssociationsBy)[keyof typeof SortAssociationsBy];
|
|
290
297
|
export interface ListAssociationsRequest {
|
|
291
298
|
SourceArn?: string;
|
|
292
299
|
DestinationArn?: string;
|
|
@@ -348,11 +355,13 @@ export interface ListCodeRepositoriesOutput {
|
|
|
348
355
|
CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
|
|
349
356
|
NextToken?: string;
|
|
350
357
|
}
|
|
351
|
-
export declare
|
|
352
|
-
CREATION_TIME
|
|
353
|
-
NAME
|
|
354
|
-
STATUS
|
|
355
|
-
}
|
|
358
|
+
export declare const ListCompilationJobsSortBy: {
|
|
359
|
+
readonly CREATION_TIME: "CreationTime";
|
|
360
|
+
readonly NAME: "Name";
|
|
361
|
+
readonly STATUS: "Status";
|
|
362
|
+
};
|
|
363
|
+
export type ListCompilationJobsSortBy =
|
|
364
|
+
(typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
|
|
356
365
|
export interface ListCompilationJobsRequest {
|
|
357
366
|
NextToken?: string;
|
|
358
367
|
MaxResults?: number;
|
|
@@ -369,10 +378,12 @@ export interface ListCompilationJobsResponse {
|
|
|
369
378
|
CompilationJobSummaries: CompilationJobSummary[] | undefined;
|
|
370
379
|
NextToken?: string;
|
|
371
380
|
}
|
|
372
|
-
export declare
|
|
373
|
-
CREATION_TIME
|
|
374
|
-
NAME
|
|
375
|
-
}
|
|
381
|
+
export declare const SortContextsBy: {
|
|
382
|
+
readonly CREATION_TIME: "CreationTime";
|
|
383
|
+
readonly NAME: "Name";
|
|
384
|
+
};
|
|
385
|
+
export type SortContextsBy =
|
|
386
|
+
(typeof SortContextsBy)[keyof typeof SortContextsBy];
|
|
376
387
|
export interface ListContextsRequest {
|
|
377
388
|
SourceUri?: string;
|
|
378
389
|
ContextType?: string;
|
|
@@ -387,10 +398,12 @@ export interface ListContextsResponse {
|
|
|
387
398
|
ContextSummaries?: ContextSummary[];
|
|
388
399
|
NextToken?: string;
|
|
389
400
|
}
|
|
390
|
-
export declare
|
|
391
|
-
CREATION_TIME
|
|
392
|
-
NAME
|
|
393
|
-
}
|
|
401
|
+
export declare const MonitoringJobDefinitionSortKey: {
|
|
402
|
+
readonly CREATION_TIME: "CreationTime";
|
|
403
|
+
readonly NAME: "Name";
|
|
404
|
+
};
|
|
405
|
+
export type MonitoringJobDefinitionSortKey =
|
|
406
|
+
(typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
|
|
394
407
|
export interface ListDataQualityJobDefinitionsRequest {
|
|
395
408
|
EndpointName?: string;
|
|
396
409
|
SortBy?: MonitoringJobDefinitionSortKey | string;
|
|
@@ -411,11 +424,13 @@ export interface ListDataQualityJobDefinitionsResponse {
|
|
|
411
424
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
412
425
|
NextToken?: string;
|
|
413
426
|
}
|
|
414
|
-
export declare
|
|
415
|
-
CreationTime
|
|
416
|
-
LastModifiedTime
|
|
417
|
-
Name
|
|
418
|
-
}
|
|
427
|
+
export declare const ListDeviceFleetsSortBy: {
|
|
428
|
+
readonly CreationTime: "CREATION_TIME";
|
|
429
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
430
|
+
readonly Name: "NAME";
|
|
431
|
+
};
|
|
432
|
+
export type ListDeviceFleetsSortBy =
|
|
433
|
+
(typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
|
|
419
434
|
export interface ListDeviceFleetsRequest {
|
|
420
435
|
NextToken?: string;
|
|
421
436
|
MaxResults?: number;
|
|
@@ -450,12 +465,14 @@ export interface ListDomainsResponse {
|
|
|
450
465
|
Domains?: DomainDetails[];
|
|
451
466
|
NextToken?: string;
|
|
452
467
|
}
|
|
453
|
-
export declare
|
|
454
|
-
CreationTime
|
|
455
|
-
DeviceFleetName
|
|
456
|
-
LastModifiedTime
|
|
457
|
-
Name
|
|
458
|
-
}
|
|
468
|
+
export declare const ListEdgeDeploymentPlansSortBy: {
|
|
469
|
+
readonly CreationTime: "CREATION_TIME";
|
|
470
|
+
readonly DeviceFleetName: "DEVICE_FLEET_NAME";
|
|
471
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
472
|
+
readonly Name: "NAME";
|
|
473
|
+
};
|
|
474
|
+
export type ListEdgeDeploymentPlansSortBy =
|
|
475
|
+
(typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
|
|
459
476
|
export interface ListEdgeDeploymentPlansRequest {
|
|
460
477
|
NextToken?: string;
|
|
461
478
|
MaxResults?: number;
|
|
@@ -472,13 +489,15 @@ export interface ListEdgeDeploymentPlansResponse {
|
|
|
472
489
|
EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
|
|
473
490
|
NextToken?: string;
|
|
474
491
|
}
|
|
475
|
-
export declare
|
|
476
|
-
CreationTime
|
|
477
|
-
EdgePackagingJobStatus
|
|
478
|
-
LastModifiedTime
|
|
479
|
-
ModelName
|
|
480
|
-
Name
|
|
481
|
-
}
|
|
492
|
+
export declare const ListEdgePackagingJobsSortBy: {
|
|
493
|
+
readonly CreationTime: "CREATION_TIME";
|
|
494
|
+
readonly EdgePackagingJobStatus: "STATUS";
|
|
495
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
496
|
+
readonly ModelName: "MODEL_NAME";
|
|
497
|
+
readonly Name: "NAME";
|
|
498
|
+
};
|
|
499
|
+
export type ListEdgePackagingJobsSortBy =
|
|
500
|
+
(typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
|
|
482
501
|
export interface ListEdgePackagingJobsRequest {
|
|
483
502
|
NextToken?: string;
|
|
484
503
|
MaxResults?: number;
|
|
@@ -496,10 +515,11 @@ export interface ListEdgePackagingJobsResponse {
|
|
|
496
515
|
EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
|
|
497
516
|
NextToken?: string;
|
|
498
517
|
}
|
|
499
|
-
export declare
|
|
500
|
-
Ascending
|
|
501
|
-
Descending
|
|
502
|
-
}
|
|
518
|
+
export declare const OrderKey: {
|
|
519
|
+
readonly Ascending: "Ascending";
|
|
520
|
+
readonly Descending: "Descending";
|
|
521
|
+
};
|
|
522
|
+
export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
|
|
503
523
|
export interface ListEndpointConfigsInput {
|
|
504
524
|
SortBy?: EndpointConfigSortKey | string;
|
|
505
525
|
SortOrder?: OrderKey | string;
|
|
@@ -529,10 +549,12 @@ export interface ListEndpointsOutput {
|
|
|
529
549
|
Endpoints: EndpointSummary[] | undefined;
|
|
530
550
|
NextToken?: string;
|
|
531
551
|
}
|
|
532
|
-
export declare
|
|
533
|
-
CREATION_TIME
|
|
534
|
-
NAME
|
|
535
|
-
}
|
|
552
|
+
export declare const SortExperimentsBy: {
|
|
553
|
+
readonly CREATION_TIME: "CreationTime";
|
|
554
|
+
readonly NAME: "Name";
|
|
555
|
+
};
|
|
556
|
+
export type SortExperimentsBy =
|
|
557
|
+
(typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
|
|
536
558
|
export interface ListExperimentsRequest {
|
|
537
559
|
CreatedAfter?: Date;
|
|
538
560
|
CreatedBefore?: Date;
|
|
@@ -678,11 +700,13 @@ export interface ListImageVersionsResponse {
|
|
|
678
700
|
ImageVersions?: ImageVersion[];
|
|
679
701
|
NextToken?: string;
|
|
680
702
|
}
|
|
681
|
-
export declare
|
|
682
|
-
CREATION_TIME
|
|
683
|
-
NAME
|
|
684
|
-
STATUS
|
|
685
|
-
}
|
|
703
|
+
export declare const SortInferenceExperimentsBy: {
|
|
704
|
+
readonly CREATION_TIME: "CreationTime";
|
|
705
|
+
readonly NAME: "Name";
|
|
706
|
+
readonly STATUS: "Status";
|
|
707
|
+
};
|
|
708
|
+
export type SortInferenceExperimentsBy =
|
|
709
|
+
(typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
|
|
686
710
|
export interface ListInferenceExperimentsRequest {
|
|
687
711
|
NameContains?: string;
|
|
688
712
|
Type?: InferenceExperimentType | string;
|
|
@@ -700,11 +724,13 @@ export interface ListInferenceExperimentsResponse {
|
|
|
700
724
|
InferenceExperiments?: InferenceExperimentSummary[];
|
|
701
725
|
NextToken?: string;
|
|
702
726
|
}
|
|
703
|
-
export declare
|
|
704
|
-
CREATION_TIME
|
|
705
|
-
NAME
|
|
706
|
-
STATUS
|
|
707
|
-
}
|
|
727
|
+
export declare const ListInferenceRecommendationsJobsSortBy: {
|
|
728
|
+
readonly CREATION_TIME: "CreationTime";
|
|
729
|
+
readonly NAME: "Name";
|
|
730
|
+
readonly STATUS: "Status";
|
|
731
|
+
};
|
|
732
|
+
export type ListInferenceRecommendationsJobsSortBy =
|
|
733
|
+
(typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
|
|
708
734
|
export interface ListInferenceRecommendationsJobsRequest {
|
|
709
735
|
CreationTimeAfter?: Date;
|
|
710
736
|
CreationTimeBefore?: Date;
|
|
@@ -732,11 +758,12 @@ export interface ListInferenceRecommendationsJobStepsResponse {
|
|
|
732
758
|
Steps?: InferenceRecommendationsJobStep[];
|
|
733
759
|
NextToken?: string;
|
|
734
760
|
}
|
|
735
|
-
export declare
|
|
736
|
-
CREATION_TIME
|
|
737
|
-
NAME
|
|
738
|
-
STATUS
|
|
739
|
-
}
|
|
761
|
+
export declare const SortBy: {
|
|
762
|
+
readonly CREATION_TIME: "CreationTime";
|
|
763
|
+
readonly NAME: "Name";
|
|
764
|
+
readonly STATUS: "Status";
|
|
765
|
+
};
|
|
766
|
+
export type SortBy = (typeof SortBy)[keyof typeof SortBy];
|
|
740
767
|
export interface ListLabelingJobsRequest {
|
|
741
768
|
CreationTimeAfter?: Date;
|
|
742
769
|
CreationTimeBefore?: Date;
|
|
@@ -753,9 +780,11 @@ export interface ListLabelingJobsResponse {
|
|
|
753
780
|
LabelingJobSummaryList?: LabelingJobSummary[];
|
|
754
781
|
NextToken?: string;
|
|
755
782
|
}
|
|
756
|
-
export declare
|
|
757
|
-
CREATION_TIME
|
|
758
|
-
}
|
|
783
|
+
export declare const ListLabelingJobsForWorkteamSortByOptions: {
|
|
784
|
+
readonly CREATION_TIME: "CreationTime";
|
|
785
|
+
};
|
|
786
|
+
export type ListLabelingJobsForWorkteamSortByOptions =
|
|
787
|
+
(typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
|
|
759
788
|
export interface ListLabelingJobsForWorkteamRequest {
|
|
760
789
|
WorkteamArn: string | undefined;
|
|
761
790
|
MaxResults?: number;
|
|
@@ -770,10 +799,12 @@ export interface ListLabelingJobsForWorkteamResponse {
|
|
|
770
799
|
LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
|
|
771
800
|
NextToken?: string;
|
|
772
801
|
}
|
|
773
|
-
export declare
|
|
774
|
-
CREATION_TIME
|
|
775
|
-
NAME
|
|
776
|
-
}
|
|
802
|
+
export declare const SortLineageGroupsBy: {
|
|
803
|
+
readonly CREATION_TIME: "CreationTime";
|
|
804
|
+
readonly NAME: "Name";
|
|
805
|
+
};
|
|
806
|
+
export type SortLineageGroupsBy =
|
|
807
|
+
(typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
|
|
777
808
|
export interface ListLineageGroupsRequest {
|
|
778
809
|
CreatedAfter?: Date;
|
|
779
810
|
CreatedBefore?: Date;
|
|
@@ -800,15 +831,19 @@ export interface ListModelBiasJobDefinitionsResponse {
|
|
|
800
831
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
801
832
|
NextToken?: string;
|
|
802
833
|
}
|
|
803
|
-
export declare
|
|
804
|
-
CREATION_TIME
|
|
805
|
-
NAME
|
|
806
|
-
STATUS
|
|
807
|
-
}
|
|
808
|
-
export
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
834
|
+
export declare const ModelCardExportJobSortBy: {
|
|
835
|
+
readonly CREATION_TIME: "CreationTime";
|
|
836
|
+
readonly NAME: "Name";
|
|
837
|
+
readonly STATUS: "Status";
|
|
838
|
+
};
|
|
839
|
+
export type ModelCardExportJobSortBy =
|
|
840
|
+
(typeof ModelCardExportJobSortBy)[keyof typeof ModelCardExportJobSortBy];
|
|
841
|
+
export declare const ModelCardExportJobSortOrder: {
|
|
842
|
+
readonly ASCENDING: "Ascending";
|
|
843
|
+
readonly DESCENDING: "Descending";
|
|
844
|
+
};
|
|
845
|
+
export type ModelCardExportJobSortOrder =
|
|
846
|
+
(typeof ModelCardExportJobSortOrder)[keyof typeof ModelCardExportJobSortOrder];
|
|
812
847
|
export interface ListModelCardExportJobsRequest {
|
|
813
848
|
ModelCardName: string | undefined;
|
|
814
849
|
ModelCardVersion?: number;
|
|
@@ -834,14 +869,18 @@ export interface ListModelCardExportJobsResponse {
|
|
|
834
869
|
ModelCardExportJobSummaries: ModelCardExportJobSummary[] | undefined;
|
|
835
870
|
NextToken?: string;
|
|
836
871
|
}
|
|
837
|
-
export declare
|
|
838
|
-
CREATION_TIME
|
|
839
|
-
NAME
|
|
840
|
-
}
|
|
841
|
-
export
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
872
|
+
export declare const ModelCardSortBy: {
|
|
873
|
+
readonly CREATION_TIME: "CreationTime";
|
|
874
|
+
readonly NAME: "Name";
|
|
875
|
+
};
|
|
876
|
+
export type ModelCardSortBy =
|
|
877
|
+
(typeof ModelCardSortBy)[keyof typeof ModelCardSortBy];
|
|
878
|
+
export declare const ModelCardSortOrder: {
|
|
879
|
+
readonly ASCENDING: "Ascending";
|
|
880
|
+
readonly DESCENDING: "Descending";
|
|
881
|
+
};
|
|
882
|
+
export type ModelCardSortOrder =
|
|
883
|
+
(typeof ModelCardSortOrder)[keyof typeof ModelCardSortOrder];
|
|
845
884
|
export interface ListModelCardsRequest {
|
|
846
885
|
CreationTimeAfter?: Date;
|
|
847
886
|
CreationTimeBefore?: Date;
|
|
@@ -863,9 +902,11 @@ export interface ListModelCardsResponse {
|
|
|
863
902
|
ModelCardSummaries: ModelCardSummary[] | undefined;
|
|
864
903
|
NextToken?: string;
|
|
865
904
|
}
|
|
866
|
-
export declare
|
|
867
|
-
VERSION
|
|
868
|
-
}
|
|
905
|
+
export declare const ModelCardVersionSortBy: {
|
|
906
|
+
readonly VERSION: "Version";
|
|
907
|
+
};
|
|
908
|
+
export type ModelCardVersionSortBy =
|
|
909
|
+
(typeof ModelCardVersionSortBy)[keyof typeof ModelCardVersionSortBy];
|
|
869
910
|
export interface ListModelCardVersionsRequest {
|
|
870
911
|
CreationTimeAfter?: Date;
|
|
871
912
|
CreationTimeBefore?: Date;
|
|
@@ -902,12 +943,14 @@ export interface ListModelExplainabilityJobDefinitionsResponse {
|
|
|
902
943
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
903
944
|
NextToken?: string;
|
|
904
945
|
}
|
|
905
|
-
export declare
|
|
906
|
-
DOMAIN
|
|
907
|
-
FRAMEWORK
|
|
908
|
-
FRAMEWORKVERSION
|
|
909
|
-
TASK
|
|
910
|
-
}
|
|
946
|
+
export declare const ModelMetadataFilterType: {
|
|
947
|
+
readonly DOMAIN: "Domain";
|
|
948
|
+
readonly FRAMEWORK: "Framework";
|
|
949
|
+
readonly FRAMEWORKVERSION: "FrameworkVersion";
|
|
950
|
+
readonly TASK: "Task";
|
|
951
|
+
};
|
|
952
|
+
export type ModelMetadataFilterType =
|
|
953
|
+
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
911
954
|
export interface ModelMetadataFilter {
|
|
912
955
|
Name: ModelMetadataFilterType | string | undefined;
|
|
913
956
|
Value: string | undefined;
|
|
@@ -931,10 +974,12 @@ export interface ListModelMetadataResponse {
|
|
|
931
974
|
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
932
975
|
NextToken?: string;
|
|
933
976
|
}
|
|
934
|
-
export declare
|
|
935
|
-
CREATION_TIME
|
|
936
|
-
NAME
|
|
937
|
-
}
|
|
977
|
+
export declare const ModelPackageGroupSortBy: {
|
|
978
|
+
readonly CREATION_TIME: "CreationTime";
|
|
979
|
+
readonly NAME: "Name";
|
|
980
|
+
};
|
|
981
|
+
export type ModelPackageGroupSortBy =
|
|
982
|
+
(typeof ModelPackageGroupSortBy)[keyof typeof ModelPackageGroupSortBy];
|
|
938
983
|
export interface ListModelPackageGroupsInput {
|
|
939
984
|
CreationTimeAfter?: Date;
|
|
940
985
|
CreationTimeBefore?: Date;
|
|
@@ -955,15 +1000,19 @@ export interface ListModelPackageGroupsOutput {
|
|
|
955
1000
|
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
956
1001
|
NextToken?: string;
|
|
957
1002
|
}
|
|
958
|
-
export declare
|
|
959
|
-
BOTH
|
|
960
|
-
UNVERSIONED
|
|
961
|
-
VERSIONED
|
|
962
|
-
}
|
|
963
|
-
export
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
1003
|
+
export declare const ModelPackageType: {
|
|
1004
|
+
readonly BOTH: "Both";
|
|
1005
|
+
readonly UNVERSIONED: "Unversioned";
|
|
1006
|
+
readonly VERSIONED: "Versioned";
|
|
1007
|
+
};
|
|
1008
|
+
export type ModelPackageType =
|
|
1009
|
+
(typeof ModelPackageType)[keyof typeof ModelPackageType];
|
|
1010
|
+
export declare const ModelPackageSortBy: {
|
|
1011
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1012
|
+
readonly NAME: "Name";
|
|
1013
|
+
};
|
|
1014
|
+
export type ModelPackageSortBy =
|
|
1015
|
+
(typeof ModelPackageSortBy)[keyof typeof ModelPackageSortBy];
|
|
967
1016
|
export interface ListModelPackagesInput {
|
|
968
1017
|
CreationTimeAfter?: Date;
|
|
969
1018
|
CreationTimeBefore?: Date;
|
|
@@ -1004,10 +1053,11 @@ export interface ListModelQualityJobDefinitionsResponse {
|
|
|
1004
1053
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
1005
1054
|
NextToken?: string;
|
|
1006
1055
|
}
|
|
1007
|
-
export declare
|
|
1008
|
-
CreationTime
|
|
1009
|
-
Name
|
|
1010
|
-
}
|
|
1056
|
+
export declare const ModelSortKey: {
|
|
1057
|
+
readonly CreationTime: "CreationTime";
|
|
1058
|
+
readonly Name: "Name";
|
|
1059
|
+
};
|
|
1060
|
+
export type ModelSortKey = (typeof ModelSortKey)[keyof typeof ModelSortKey];
|
|
1011
1061
|
export interface ListModelsInput {
|
|
1012
1062
|
SortBy?: ModelSortKey | string;
|
|
1013
1063
|
SortOrder?: OrderKey | string;
|
|
@@ -1026,14 +1076,18 @@ export interface ListModelsOutput {
|
|
|
1026
1076
|
Models: ModelSummary[] | undefined;
|
|
1027
1077
|
NextToken?: string;
|
|
1028
1078
|
}
|
|
1029
|
-
export declare
|
|
1030
|
-
CreationTime
|
|
1031
|
-
Status
|
|
1032
|
-
}
|
|
1033
|
-
export
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1079
|
+
export declare const MonitoringAlertHistorySortKey: {
|
|
1080
|
+
readonly CreationTime: "CreationTime";
|
|
1081
|
+
readonly Status: "Status";
|
|
1082
|
+
};
|
|
1083
|
+
export type MonitoringAlertHistorySortKey =
|
|
1084
|
+
(typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
|
|
1085
|
+
export declare const MonitoringAlertStatus: {
|
|
1086
|
+
readonly IN_ALERT: "InAlert";
|
|
1087
|
+
readonly OK: "OK";
|
|
1088
|
+
};
|
|
1089
|
+
export type MonitoringAlertStatus =
|
|
1090
|
+
(typeof MonitoringAlertStatus)[keyof typeof MonitoringAlertStatus];
|
|
1037
1091
|
export interface ListMonitoringAlertHistoryRequest {
|
|
1038
1092
|
MonitoringScheduleName?: string;
|
|
1039
1093
|
MonitoringAlertName?: string;
|
|
@@ -1079,11 +1133,13 @@ export interface ListMonitoringAlertsResponse {
|
|
|
1079
1133
|
MonitoringAlertSummaries?: MonitoringAlertSummary[];
|
|
1080
1134
|
NextToken?: string;
|
|
1081
1135
|
}
|
|
1082
|
-
export declare
|
|
1083
|
-
CREATION_TIME
|
|
1084
|
-
SCHEDULED_TIME
|
|
1085
|
-
STATUS
|
|
1086
|
-
}
|
|
1136
|
+
export declare const MonitoringExecutionSortKey: {
|
|
1137
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1138
|
+
readonly SCHEDULED_TIME: "ScheduledTime";
|
|
1139
|
+
readonly STATUS: "Status";
|
|
1140
|
+
};
|
|
1141
|
+
export type MonitoringExecutionSortKey =
|
|
1142
|
+
(typeof MonitoringExecutionSortKey)[keyof typeof MonitoringExecutionSortKey];
|
|
1087
1143
|
export interface ListMonitoringExecutionsRequest {
|
|
1088
1144
|
MonitoringScheduleName?: string;
|
|
1089
1145
|
EndpointName?: string;
|
|
@@ -1105,11 +1161,13 @@ export interface ListMonitoringExecutionsResponse {
|
|
|
1105
1161
|
MonitoringExecutionSummaries: MonitoringExecutionSummary[] | undefined;
|
|
1106
1162
|
NextToken?: string;
|
|
1107
1163
|
}
|
|
1108
|
-
export declare
|
|
1109
|
-
CREATION_TIME
|
|
1110
|
-
NAME
|
|
1111
|
-
STATUS
|
|
1112
|
-
}
|
|
1164
|
+
export declare const MonitoringScheduleSortKey: {
|
|
1165
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1166
|
+
readonly NAME: "Name";
|
|
1167
|
+
readonly STATUS: "Status";
|
|
1168
|
+
};
|
|
1169
|
+
export type MonitoringScheduleSortKey =
|
|
1170
|
+
(typeof MonitoringScheduleSortKey)[keyof typeof MonitoringScheduleSortKey];
|
|
1113
1171
|
export interface ListMonitoringSchedulesRequest {
|
|
1114
1172
|
EndpointName?: string;
|
|
1115
1173
|
SortBy?: MonitoringScheduleSortKey | string;
|
|
@@ -1139,15 +1197,19 @@ export interface ListMonitoringSchedulesResponse {
|
|
|
1139
1197
|
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
1140
1198
|
NextToken?: string;
|
|
1141
1199
|
}
|
|
1142
|
-
export declare
|
|
1143
|
-
CREATION_TIME
|
|
1144
|
-
LAST_MODIFIED_TIME
|
|
1145
|
-
NAME
|
|
1146
|
-
}
|
|
1147
|
-
export
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1200
|
+
export declare const NotebookInstanceLifecycleConfigSortKey: {
|
|
1201
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1202
|
+
readonly LAST_MODIFIED_TIME: "LastModifiedTime";
|
|
1203
|
+
readonly NAME: "Name";
|
|
1204
|
+
};
|
|
1205
|
+
export type NotebookInstanceLifecycleConfigSortKey =
|
|
1206
|
+
(typeof NotebookInstanceLifecycleConfigSortKey)[keyof typeof NotebookInstanceLifecycleConfigSortKey];
|
|
1207
|
+
export declare const NotebookInstanceLifecycleConfigSortOrder: {
|
|
1208
|
+
readonly ASCENDING: "Ascending";
|
|
1209
|
+
readonly DESCENDING: "Descending";
|
|
1210
|
+
};
|
|
1211
|
+
export type NotebookInstanceLifecycleConfigSortOrder =
|
|
1212
|
+
(typeof NotebookInstanceLifecycleConfigSortOrder)[keyof typeof NotebookInstanceLifecycleConfigSortOrder];
|
|
1151
1213
|
export interface ListNotebookInstanceLifecycleConfigsInput {
|
|
1152
1214
|
NextToken?: string;
|
|
1153
1215
|
MaxResults?: number;
|
|
@@ -1169,15 +1231,19 @@ export interface ListNotebookInstanceLifecycleConfigsOutput {
|
|
|
1169
1231
|
NextToken?: string;
|
|
1170
1232
|
NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
|
|
1171
1233
|
}
|
|
1172
|
-
export declare
|
|
1173
|
-
CREATION_TIME
|
|
1174
|
-
NAME
|
|
1175
|
-
STATUS
|
|
1176
|
-
}
|
|
1177
|
-
export
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1234
|
+
export declare const NotebookInstanceSortKey: {
|
|
1235
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1236
|
+
readonly NAME: "Name";
|
|
1237
|
+
readonly STATUS: "Status";
|
|
1238
|
+
};
|
|
1239
|
+
export type NotebookInstanceSortKey =
|
|
1240
|
+
(typeof NotebookInstanceSortKey)[keyof typeof NotebookInstanceSortKey];
|
|
1241
|
+
export declare const NotebookInstanceSortOrder: {
|
|
1242
|
+
readonly ASCENDING: "Ascending";
|
|
1243
|
+
readonly DESCENDING: "Descending";
|
|
1244
|
+
};
|
|
1245
|
+
export type NotebookInstanceSortOrder =
|
|
1246
|
+
(typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
|
|
1181
1247
|
export interface ListNotebookInstancesInput {
|
|
1182
1248
|
NextToken?: string;
|
|
1183
1249
|
MaxResults?: number;
|
|
@@ -1209,10 +1275,12 @@ export interface ListNotebookInstancesOutput {
|
|
|
1209
1275
|
NextToken?: string;
|
|
1210
1276
|
NotebookInstances?: NotebookInstanceSummary[];
|
|
1211
1277
|
}
|
|
1212
|
-
export declare
|
|
1213
|
-
CREATION_TIME
|
|
1214
|
-
PIPELINE_EXECUTION_ARN
|
|
1215
|
-
}
|
|
1278
|
+
export declare const SortPipelineExecutionsBy: {
|
|
1279
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1280
|
+
readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
|
|
1281
|
+
};
|
|
1282
|
+
export type SortPipelineExecutionsBy =
|
|
1283
|
+
(typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
|
|
1216
1284
|
export interface ListPipelineExecutionsRequest {
|
|
1217
1285
|
PipelineName: string | undefined;
|
|
1218
1286
|
CreatedAfter?: Date;
|
|
@@ -1286,14 +1354,15 @@ export interface PipelineExecutionStepMetadata {
|
|
|
1286
1354
|
Fail?: FailStepMetadata;
|
|
1287
1355
|
AutoMLJob?: AutoMLJobStepMetadata;
|
|
1288
1356
|
}
|
|
1289
|
-
export declare
|
|
1290
|
-
EXECUTING
|
|
1291
|
-
FAILED
|
|
1292
|
-
STARTING
|
|
1293
|
-
STOPPED
|
|
1294
|
-
STOPPING
|
|
1295
|
-
SUCCEEDED
|
|
1296
|
-
}
|
|
1357
|
+
export declare const StepStatus: {
|
|
1358
|
+
readonly EXECUTING: "Executing";
|
|
1359
|
+
readonly FAILED: "Failed";
|
|
1360
|
+
readonly STARTING: "Starting";
|
|
1361
|
+
readonly STOPPED: "Stopped";
|
|
1362
|
+
readonly STOPPING: "Stopping";
|
|
1363
|
+
readonly SUCCEEDED: "Succeeded";
|
|
1364
|
+
};
|
|
1365
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
1297
1366
|
export interface PipelineExecutionStep {
|
|
1298
1367
|
StepName?: string;
|
|
1299
1368
|
StepDisplayName?: string;
|
|
@@ -1323,10 +1392,12 @@ export interface ListPipelineParametersForExecutionResponse {
|
|
|
1323
1392
|
PipelineParameters?: Parameter[];
|
|
1324
1393
|
NextToken?: string;
|
|
1325
1394
|
}
|
|
1326
|
-
export declare
|
|
1327
|
-
CREATION_TIME
|
|
1328
|
-
NAME
|
|
1329
|
-
}
|
|
1395
|
+
export declare const SortPipelinesBy: {
|
|
1396
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1397
|
+
readonly NAME: "Name";
|
|
1398
|
+
};
|
|
1399
|
+
export type SortPipelinesBy =
|
|
1400
|
+
(typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
1330
1401
|
export interface ListPipelinesRequest {
|
|
1331
1402
|
PipelineNamePrefix?: string;
|
|
1332
1403
|
CreatedAfter?: Date;
|
|
@@ -1376,14 +1447,17 @@ export interface ListProcessingJobsResponse {
|
|
|
1376
1447
|
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
1377
1448
|
NextToken?: string;
|
|
1378
1449
|
}
|
|
1379
|
-
export declare
|
|
1380
|
-
CREATION_TIME
|
|
1381
|
-
NAME
|
|
1382
|
-
}
|
|
1383
|
-
export
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1450
|
+
export declare const ProjectSortBy: {
|
|
1451
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1452
|
+
readonly NAME: "Name";
|
|
1453
|
+
};
|
|
1454
|
+
export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
|
|
1455
|
+
export declare const ProjectSortOrder: {
|
|
1456
|
+
readonly ASCENDING: "Ascending";
|
|
1457
|
+
readonly DESCENDING: "Descending";
|
|
1458
|
+
};
|
|
1459
|
+
export type ProjectSortOrder =
|
|
1460
|
+
(typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
1387
1461
|
export interface ListProjectsInput {
|
|
1388
1462
|
CreationTimeAfter?: Date;
|
|
1389
1463
|
CreationTimeBefore?: Date;
|
|
@@ -1405,10 +1479,11 @@ export interface ListProjectsOutput {
|
|
|
1405
1479
|
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
1406
1480
|
NextToken?: string;
|
|
1407
1481
|
}
|
|
1408
|
-
export declare
|
|
1409
|
-
CreationTime
|
|
1410
|
-
LastModifiedTime
|
|
1411
|
-
}
|
|
1482
|
+
export declare const SpaceSortKey: {
|
|
1483
|
+
readonly CreationTime: "CreationTime";
|
|
1484
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1485
|
+
};
|
|
1486
|
+
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
1412
1487
|
export interface ListSpacesRequest {
|
|
1413
1488
|
NextToken?: string;
|
|
1414
1489
|
MaxResults?: number;
|
|
@@ -1439,11 +1514,13 @@ export interface ListStageDevicesResponse {
|
|
|
1439
1514
|
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
1440
1515
|
NextToken?: string;
|
|
1441
1516
|
}
|
|
1442
|
-
export declare
|
|
1443
|
-
CreationTime
|
|
1444
|
-
LastModifiedTime
|
|
1445
|
-
Name
|
|
1446
|
-
}
|
|
1517
|
+
export declare const StudioLifecycleConfigSortKey: {
|
|
1518
|
+
readonly CreationTime: "CreationTime";
|
|
1519
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1520
|
+
readonly Name: "Name";
|
|
1521
|
+
};
|
|
1522
|
+
export type StudioLifecycleConfigSortKey =
|
|
1523
|
+
(typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
1447
1524
|
export interface ListStudioLifecycleConfigsRequest {
|
|
1448
1525
|
MaxResults?: number;
|
|
1449
1526
|
NextToken?: string;
|
|
@@ -1511,12 +1588,14 @@ export interface ListTrainingJobsResponse {
|
|
|
1511
1588
|
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
1512
1589
|
NextToken?: string;
|
|
1513
1590
|
}
|
|
1514
|
-
export declare
|
|
1515
|
-
CreationTime
|
|
1516
|
-
FinalObjectiveMetricValue
|
|
1517
|
-
Name
|
|
1518
|
-
Status
|
|
1519
|
-
}
|
|
1591
|
+
export declare const TrainingJobSortByOptions: {
|
|
1592
|
+
readonly CreationTime: "CreationTime";
|
|
1593
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
1594
|
+
readonly Name: "Name";
|
|
1595
|
+
readonly Status: "Status";
|
|
1596
|
+
};
|
|
1597
|
+
export type TrainingJobSortByOptions =
|
|
1598
|
+
(typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
1520
1599
|
export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
1521
1600
|
HyperParameterTuningJobName: string | undefined;
|
|
1522
1601
|
NextToken?: string;
|
|
@@ -1554,10 +1633,12 @@ export interface ListTransformJobsResponse {
|
|
|
1554
1633
|
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
1555
1634
|
NextToken?: string;
|
|
1556
1635
|
}
|
|
1557
|
-
export declare
|
|
1558
|
-
CREATION_TIME
|
|
1559
|
-
NAME
|
|
1560
|
-
}
|
|
1636
|
+
export declare const SortTrialComponentsBy: {
|
|
1637
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1638
|
+
readonly NAME: "Name";
|
|
1639
|
+
};
|
|
1640
|
+
export type SortTrialComponentsBy =
|
|
1641
|
+
(typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
1561
1642
|
export interface ListTrialComponentsRequest {
|
|
1562
1643
|
ExperimentName?: string;
|
|
1563
1644
|
TrialName?: string;
|
|
@@ -1586,10 +1667,11 @@ export interface ListTrialComponentsResponse {
|
|
|
1586
1667
|
TrialComponentSummaries?: TrialComponentSummary[];
|
|
1587
1668
|
NextToken?: string;
|
|
1588
1669
|
}
|
|
1589
|
-
export declare
|
|
1590
|
-
CREATION_TIME
|
|
1591
|
-
NAME
|
|
1592
|
-
}
|
|
1670
|
+
export declare const SortTrialsBy: {
|
|
1671
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1672
|
+
readonly NAME: "Name";
|
|
1673
|
+
};
|
|
1674
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
1593
1675
|
export interface ListTrialsRequest {
|
|
1594
1676
|
ExperimentName?: string;
|
|
1595
1677
|
TrialComponentName?: string;
|
|
@@ -1612,10 +1694,12 @@ export interface ListTrialsResponse {
|
|
|
1612
1694
|
TrialSummaries?: TrialSummary[];
|
|
1613
1695
|
NextToken?: string;
|
|
1614
1696
|
}
|
|
1615
|
-
export declare
|
|
1616
|
-
CreationTime
|
|
1617
|
-
LastModifiedTime
|
|
1618
|
-
}
|
|
1697
|
+
export declare const UserProfileSortKey: {
|
|
1698
|
+
readonly CreationTime: "CreationTime";
|
|
1699
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1700
|
+
};
|
|
1701
|
+
export type UserProfileSortKey =
|
|
1702
|
+
(typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
1619
1703
|
export interface ListUserProfilesRequest {
|
|
1620
1704
|
NextToken?: string;
|
|
1621
1705
|
MaxResults?: number;
|
|
@@ -1635,10 +1719,12 @@ export interface ListUserProfilesResponse {
|
|
|
1635
1719
|
UserProfiles?: UserProfileDetails[];
|
|
1636
1720
|
NextToken?: string;
|
|
1637
1721
|
}
|
|
1638
|
-
export declare
|
|
1639
|
-
CreateDate
|
|
1640
|
-
Name
|
|
1641
|
-
}
|
|
1722
|
+
export declare const ListWorkforcesSortByOptions: {
|
|
1723
|
+
readonly CreateDate: "CreateDate";
|
|
1724
|
+
readonly Name: "Name";
|
|
1725
|
+
};
|
|
1726
|
+
export type ListWorkforcesSortByOptions =
|
|
1727
|
+
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
1642
1728
|
export interface ListWorkforcesRequest {
|
|
1643
1729
|
SortBy?: ListWorkforcesSortByOptions | string;
|
|
1644
1730
|
SortOrder?: SortOrder | string;
|
|
@@ -1650,10 +1736,12 @@ export interface ListWorkforcesResponse {
|
|
|
1650
1736
|
Workforces: Workforce[] | undefined;
|
|
1651
1737
|
NextToken?: string;
|
|
1652
1738
|
}
|
|
1653
|
-
export declare
|
|
1654
|
-
CreateDate
|
|
1655
|
-
Name
|
|
1656
|
-
}
|
|
1739
|
+
export declare const ListWorkteamsSortByOptions: {
|
|
1740
|
+
readonly CreateDate: "CreateDate";
|
|
1741
|
+
readonly Name: "Name";
|
|
1742
|
+
};
|
|
1743
|
+
export type ListWorkteamsSortByOptions =
|
|
1744
|
+
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
1657
1745
|
export interface ListWorkteamsRequest {
|
|
1658
1746
|
SortBy?: ListWorkteamsSortByOptions | string;
|
|
1659
1747
|
SortOrder?: SortOrder | string;
|
|
@@ -1793,11 +1881,13 @@ export interface ModelPackageGroup {
|
|
|
1793
1881
|
ModelPackageGroupStatus?: ModelPackageGroupStatus | string;
|
|
1794
1882
|
Tags?: Tag[];
|
|
1795
1883
|
}
|
|
1796
|
-
export declare
|
|
1797
|
-
PROMOTE
|
|
1798
|
-
REMOVE
|
|
1799
|
-
RETAIN
|
|
1800
|
-
}
|
|
1884
|
+
export declare const ModelVariantAction: {
|
|
1885
|
+
readonly PROMOTE: "Promote";
|
|
1886
|
+
readonly REMOVE: "Remove";
|
|
1887
|
+
readonly RETAIN: "Retain";
|
|
1888
|
+
};
|
|
1889
|
+
export type ModelVariantAction =
|
|
1890
|
+
(typeof ModelVariantAction)[keyof typeof ModelVariantAction];
|
|
1801
1891
|
export interface NestedFilters {
|
|
1802
1892
|
NestedPropertyName: string | undefined;
|
|
1803
1893
|
Filters: Filter[] | undefined;
|
|
@@ -1948,10 +2038,12 @@ export interface RetryPipelineExecutionRequest {
|
|
|
1948
2038
|
export interface RetryPipelineExecutionResponse {
|
|
1949
2039
|
PipelineExecutionArn?: string;
|
|
1950
2040
|
}
|
|
1951
|
-
export declare
|
|
1952
|
-
ASCENDING
|
|
1953
|
-
DESCENDING
|
|
1954
|
-
}
|
|
2041
|
+
export declare const SearchSortOrder: {
|
|
2042
|
+
readonly ASCENDING: "Ascending";
|
|
2043
|
+
readonly DESCENDING: "Descending";
|
|
2044
|
+
};
|
|
2045
|
+
export type SearchSortOrder =
|
|
2046
|
+
(typeof SearchSortOrder)[keyof typeof SearchSortOrder];
|
|
1955
2047
|
export interface TrainingJob {
|
|
1956
2048
|
TrainingJobName?: string;
|
|
1957
2049
|
TrainingJobArn?: string;
|