@aws-sdk/client-sagemaker 3.301.0 → 3.306.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +876 -960
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/models/models_0.js +874 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SageMaker.d.ts +3 -9
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1379 -966
- package/dist-types/models/models_1.d.ts +429 -245
- package/dist-types/models/models_2.d.ts +693 -464
- package/dist-types/models/models_3.d.ts +550 -248
- package/dist-types/models/models_4.d.ts +26 -9
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
- package/dist-types/ts3.4/models/models_1.d.ts +292 -230
- package/dist-types/ts3.4/models/models_2.d.ts +504 -415
- package/dist-types/ts3.4/models/models_3.d.ts +341 -238
- package/dist-types/ts3.4/models/models_4.d.ts +13 -6
- package/package.json +35 -35
|
@@ -42,7 +42,6 @@ import {
|
|
|
42
42
|
DataQualityBaselineConfig,
|
|
43
43
|
DataQualityJobInput,
|
|
44
44
|
DefaultSpaceSettings,
|
|
45
|
-
DeploymentConfig,
|
|
46
45
|
DeviceSelectionConfig,
|
|
47
46
|
DomainSettings,
|
|
48
47
|
EdgeDeploymentConfig,
|
|
@@ -89,6 +88,7 @@ import {
|
|
|
89
88
|
DebugHookConfig,
|
|
90
89
|
DebugRuleConfiguration,
|
|
91
90
|
DebugRuleEvaluationStatus,
|
|
91
|
+
DeploymentConfig,
|
|
92
92
|
DirectInternetAccess,
|
|
93
93
|
DriftCheckBaselines,
|
|
94
94
|
EndpointInfo,
|
|
@@ -172,6 +172,7 @@ import {
|
|
|
172
172
|
TrialComponentStatus,
|
|
173
173
|
VendorGuidance,
|
|
174
174
|
} from "./models_1";
|
|
175
|
+
export interface DeleteTagsOutput {}
|
|
175
176
|
export interface DeleteTrialRequest {
|
|
176
177
|
TrialName: string | undefined;
|
|
177
178
|
}
|
|
@@ -203,16 +204,17 @@ export interface DeployedImage {
|
|
|
203
204
|
ResolvedImage?: string;
|
|
204
205
|
ResolutionTime?: Date;
|
|
205
206
|
}
|
|
206
|
-
export declare
|
|
207
|
-
Creating
|
|
208
|
-
Deployed
|
|
209
|
-
Failed
|
|
210
|
-
InProgress
|
|
211
|
-
ReadyToDeploy
|
|
212
|
-
Starting
|
|
213
|
-
Stopped
|
|
214
|
-
Stopping
|
|
215
|
-
}
|
|
207
|
+
export declare const StageStatus: {
|
|
208
|
+
readonly Creating: "CREATING";
|
|
209
|
+
readonly Deployed: "DEPLOYED";
|
|
210
|
+
readonly Failed: "FAILED";
|
|
211
|
+
readonly InProgress: "INPROGRESS";
|
|
212
|
+
readonly ReadyToDeploy: "READYTODEPLOY";
|
|
213
|
+
readonly Starting: "STARTING";
|
|
214
|
+
readonly Stopped: "STOPPED";
|
|
215
|
+
readonly Stopping: "STOPPING";
|
|
216
|
+
};
|
|
217
|
+
export type StageStatus = (typeof StageStatus)[keyof typeof StageStatus];
|
|
216
218
|
export interface EdgeDeploymentStatus {
|
|
217
219
|
StageStatus: StageStatus | string | undefined;
|
|
218
220
|
EdgeDeploymentSuccessInStage: number | undefined;
|
|
@@ -480,15 +482,16 @@ export interface DescribeDeviceFleetResponse {
|
|
|
480
482
|
export interface DescribeDomainRequest {
|
|
481
483
|
DomainId: string | undefined;
|
|
482
484
|
}
|
|
483
|
-
export declare
|
|
484
|
-
Delete_Failed
|
|
485
|
-
Deleting
|
|
486
|
-
Failed
|
|
487
|
-
InService
|
|
488
|
-
Pending
|
|
489
|
-
Update_Failed
|
|
490
|
-
Updating
|
|
491
|
-
}
|
|
485
|
+
export declare const DomainStatus: {
|
|
486
|
+
readonly Delete_Failed: "Delete_Failed";
|
|
487
|
+
readonly Deleting: "Deleting";
|
|
488
|
+
readonly Failed: "Failed";
|
|
489
|
+
readonly InService: "InService";
|
|
490
|
+
readonly Pending: "Pending";
|
|
491
|
+
readonly Update_Failed: "Update_Failed";
|
|
492
|
+
readonly Updating: "Updating";
|
|
493
|
+
};
|
|
494
|
+
export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
|
|
492
495
|
export interface DescribeDomainResponse {
|
|
493
496
|
DomainArn?: string;
|
|
494
497
|
DomainId?: string;
|
|
@@ -533,18 +536,22 @@ export interface DescribeEdgeDeploymentPlanResponse {
|
|
|
533
536
|
export interface DescribeEdgePackagingJobRequest {
|
|
534
537
|
EdgePackagingJobName: string | undefined;
|
|
535
538
|
}
|
|
536
|
-
export declare
|
|
537
|
-
Completed
|
|
538
|
-
Failed
|
|
539
|
-
InProgress
|
|
540
|
-
Starting
|
|
541
|
-
Stopped
|
|
542
|
-
Stopping
|
|
543
|
-
}
|
|
544
|
-
export
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
539
|
+
export declare const EdgePackagingJobStatus: {
|
|
540
|
+
readonly Completed: "COMPLETED";
|
|
541
|
+
readonly Failed: "FAILED";
|
|
542
|
+
readonly InProgress: "INPROGRESS";
|
|
543
|
+
readonly Starting: "STARTING";
|
|
544
|
+
readonly Stopped: "STOPPED";
|
|
545
|
+
readonly Stopping: "STOPPING";
|
|
546
|
+
};
|
|
547
|
+
export type EdgePackagingJobStatus =
|
|
548
|
+
(typeof EdgePackagingJobStatus)[keyof typeof EdgePackagingJobStatus];
|
|
549
|
+
export declare const EdgePresetDeploymentStatus: {
|
|
550
|
+
readonly Completed: "COMPLETED";
|
|
551
|
+
readonly Failed: "FAILED";
|
|
552
|
+
};
|
|
553
|
+
export type EdgePresetDeploymentStatus =
|
|
554
|
+
(typeof EdgePresetDeploymentStatus)[keyof typeof EdgePresetDeploymentStatus];
|
|
548
555
|
export interface EdgePresetDeploymentOutput {
|
|
549
556
|
Type: EdgePresetDeploymentType | string | undefined;
|
|
550
557
|
Artifact?: string;
|
|
@@ -571,23 +578,26 @@ export interface DescribeEdgePackagingJobResponse {
|
|
|
571
578
|
export interface DescribeEndpointInput {
|
|
572
579
|
EndpointName: string | undefined;
|
|
573
580
|
}
|
|
574
|
-
export declare
|
|
575
|
-
CREATING
|
|
576
|
-
DELETING
|
|
577
|
-
FAILED
|
|
578
|
-
IN_SERVICE
|
|
579
|
-
OUT_OF_SERVICE
|
|
580
|
-
ROLLING_BACK
|
|
581
|
-
SYSTEM_UPDATING
|
|
582
|
-
UPDATING
|
|
583
|
-
}
|
|
584
|
-
export
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
581
|
+
export declare const EndpointStatus: {
|
|
582
|
+
readonly CREATING: "Creating";
|
|
583
|
+
readonly DELETING: "Deleting";
|
|
584
|
+
readonly FAILED: "Failed";
|
|
585
|
+
readonly IN_SERVICE: "InService";
|
|
586
|
+
readonly OUT_OF_SERVICE: "OutOfService";
|
|
587
|
+
readonly ROLLING_BACK: "RollingBack";
|
|
588
|
+
readonly SYSTEM_UPDATING: "SystemUpdating";
|
|
589
|
+
readonly UPDATING: "Updating";
|
|
590
|
+
};
|
|
591
|
+
export type EndpointStatus =
|
|
592
|
+
(typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
593
|
+
export declare const VariantStatus: {
|
|
594
|
+
readonly ACTIVATING_TRAFFIC: "ActivatingTraffic";
|
|
595
|
+
readonly BAKING: "Baking";
|
|
596
|
+
readonly CREATING: "Creating";
|
|
597
|
+
readonly DELETING: "Deleting";
|
|
598
|
+
readonly UPDATING: "Updating";
|
|
599
|
+
};
|
|
600
|
+
export type VariantStatus = (typeof VariantStatus)[keyof typeof VariantStatus];
|
|
591
601
|
export interface ProductionVariantStatus {
|
|
592
602
|
Status: VariantStatus | string | undefined;
|
|
593
603
|
StatusMessage?: string;
|
|
@@ -675,27 +685,33 @@ export interface DescribeFeatureGroupRequest {
|
|
|
675
685
|
FeatureGroupName: string | undefined;
|
|
676
686
|
NextToken?: string;
|
|
677
687
|
}
|
|
678
|
-
export declare
|
|
679
|
-
CREATED
|
|
680
|
-
CREATE_FAILED
|
|
681
|
-
CREATING
|
|
682
|
-
DELETE_FAILED
|
|
683
|
-
DELETING
|
|
684
|
-
}
|
|
685
|
-
export
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
688
|
+
export declare const FeatureGroupStatus: {
|
|
689
|
+
readonly CREATED: "Created";
|
|
690
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
691
|
+
readonly CREATING: "Creating";
|
|
692
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
693
|
+
readonly DELETING: "Deleting";
|
|
694
|
+
};
|
|
695
|
+
export type FeatureGroupStatus =
|
|
696
|
+
(typeof FeatureGroupStatus)[keyof typeof FeatureGroupStatus];
|
|
697
|
+
export declare const LastUpdateStatusValue: {
|
|
698
|
+
readonly FAILED: "Failed";
|
|
699
|
+
readonly IN_PROGRESS: "InProgress";
|
|
700
|
+
readonly SUCCESSFUL: "Successful";
|
|
701
|
+
};
|
|
702
|
+
export type LastUpdateStatusValue =
|
|
703
|
+
(typeof LastUpdateStatusValue)[keyof typeof LastUpdateStatusValue];
|
|
690
704
|
export interface LastUpdateStatus {
|
|
691
705
|
Status: LastUpdateStatusValue | string | undefined;
|
|
692
706
|
FailureReason?: string;
|
|
693
707
|
}
|
|
694
|
-
export declare
|
|
695
|
-
ACTIVE
|
|
696
|
-
BLOCKED
|
|
697
|
-
DISABLED
|
|
698
|
-
}
|
|
708
|
+
export declare const OfflineStoreStatusValue: {
|
|
709
|
+
readonly ACTIVE: "Active";
|
|
710
|
+
readonly BLOCKED: "Blocked";
|
|
711
|
+
readonly DISABLED: "Disabled";
|
|
712
|
+
};
|
|
713
|
+
export type OfflineStoreStatusValue =
|
|
714
|
+
(typeof OfflineStoreStatusValue)[keyof typeof OfflineStoreStatusValue];
|
|
699
715
|
export interface OfflineStoreStatus {
|
|
700
716
|
Status: OfflineStoreStatusValue | string | undefined;
|
|
701
717
|
BlockedReason?: string;
|
|
@@ -740,12 +756,14 @@ export interface DescribeFeatureMetadataResponse {
|
|
|
740
756
|
export interface DescribeFlowDefinitionRequest {
|
|
741
757
|
FlowDefinitionName: string | undefined;
|
|
742
758
|
}
|
|
743
|
-
export declare
|
|
744
|
-
ACTIVE
|
|
745
|
-
DELETING
|
|
746
|
-
FAILED
|
|
747
|
-
INITIALIZING
|
|
748
|
-
}
|
|
759
|
+
export declare const FlowDefinitionStatus: {
|
|
760
|
+
readonly ACTIVE: "Active";
|
|
761
|
+
readonly DELETING: "Deleting";
|
|
762
|
+
readonly FAILED: "Failed";
|
|
763
|
+
readonly INITIALIZING: "Initializing";
|
|
764
|
+
};
|
|
765
|
+
export type FlowDefinitionStatus =
|
|
766
|
+
(typeof FlowDefinitionStatus)[keyof typeof FlowDefinitionStatus];
|
|
749
767
|
export interface DescribeFlowDefinitionResponse {
|
|
750
768
|
FlowDefinitionArn: string | undefined;
|
|
751
769
|
FlowDefinitionName: string | undefined;
|
|
@@ -761,15 +779,16 @@ export interface DescribeFlowDefinitionResponse {
|
|
|
761
779
|
export interface DescribeHubRequest {
|
|
762
780
|
HubName: string | undefined;
|
|
763
781
|
}
|
|
764
|
-
export declare
|
|
765
|
-
CREATE_FAILED
|
|
766
|
-
CREATING
|
|
767
|
-
DELETE_FAILED
|
|
768
|
-
DELETING
|
|
769
|
-
IN_SERVICE
|
|
770
|
-
UPDATE_FAILED
|
|
771
|
-
UPDATING
|
|
772
|
-
}
|
|
782
|
+
export declare const HubStatus: {
|
|
783
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
784
|
+
readonly CREATING: "Creating";
|
|
785
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
786
|
+
readonly DELETING: "Deleting";
|
|
787
|
+
readonly IN_SERVICE: "InService";
|
|
788
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
789
|
+
readonly UPDATING: "Updating";
|
|
790
|
+
};
|
|
791
|
+
export type HubStatus = (typeof HubStatus)[keyof typeof HubStatus];
|
|
773
792
|
export interface DescribeHubResponse {
|
|
774
793
|
HubName: string | undefined;
|
|
775
794
|
HubArn: string | undefined;
|
|
@@ -792,13 +811,15 @@ export interface HubContentDependency {
|
|
|
792
811
|
DependencyOriginPath?: string;
|
|
793
812
|
DependencyCopyPath?: string;
|
|
794
813
|
}
|
|
795
|
-
export declare
|
|
796
|
-
AVAILABLE
|
|
797
|
-
DELETE_FAILED
|
|
798
|
-
DELETING
|
|
799
|
-
IMPORTING
|
|
800
|
-
IMPORT_FAILED
|
|
801
|
-
}
|
|
814
|
+
export declare const HubContentStatus: {
|
|
815
|
+
readonly AVAILABLE: "Available";
|
|
816
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
817
|
+
readonly DELETING: "Deleting";
|
|
818
|
+
readonly IMPORTING: "Importing";
|
|
819
|
+
readonly IMPORT_FAILED: "ImportFailed";
|
|
820
|
+
};
|
|
821
|
+
export type HubContentStatus =
|
|
822
|
+
(typeof HubContentStatus)[keyof typeof HubContentStatus];
|
|
802
823
|
export interface DescribeHubContentResponse {
|
|
803
824
|
HubContentName: string | undefined;
|
|
804
825
|
HubContentArn: string | undefined;
|
|
@@ -820,10 +841,12 @@ export interface DescribeHubContentResponse {
|
|
|
820
841
|
export interface DescribeHumanTaskUiRequest {
|
|
821
842
|
HumanTaskUiName: string | undefined;
|
|
822
843
|
}
|
|
823
|
-
export declare
|
|
824
|
-
ACTIVE
|
|
825
|
-
DELETING
|
|
826
|
-
}
|
|
844
|
+
export declare const HumanTaskUiStatus: {
|
|
845
|
+
readonly ACTIVE: "Active";
|
|
846
|
+
readonly DELETING: "Deleting";
|
|
847
|
+
};
|
|
848
|
+
export type HumanTaskUiStatus =
|
|
849
|
+
(typeof HumanTaskUiStatus)[keyof typeof HumanTaskUiStatus];
|
|
827
850
|
export interface UiTemplateInfo {
|
|
828
851
|
Url?: string;
|
|
829
852
|
ContentSha256?: string;
|
|
@@ -843,13 +866,15 @@ export interface FinalHyperParameterTuningJobObjectiveMetric {
|
|
|
843
866
|
MetricName: string | undefined;
|
|
844
867
|
Value: number | undefined;
|
|
845
868
|
}
|
|
846
|
-
export declare
|
|
847
|
-
COMPLETED
|
|
848
|
-
FAILED
|
|
849
|
-
IN_PROGRESS
|
|
850
|
-
STOPPED
|
|
851
|
-
STOPPING
|
|
852
|
-
}
|
|
869
|
+
export declare const TrainingJobStatus: {
|
|
870
|
+
readonly COMPLETED: "Completed";
|
|
871
|
+
readonly FAILED: "Failed";
|
|
872
|
+
readonly IN_PROGRESS: "InProgress";
|
|
873
|
+
readonly STOPPED: "Stopped";
|
|
874
|
+
readonly STOPPING: "Stopping";
|
|
875
|
+
};
|
|
876
|
+
export type TrainingJobStatus =
|
|
877
|
+
(typeof TrainingJobStatus)[keyof typeof TrainingJobStatus];
|
|
853
878
|
export interface HyperParameterTrainingJobSummary {
|
|
854
879
|
TrainingJobDefinitionName?: string;
|
|
855
880
|
TrainingJobName: string | undefined;
|
|
@@ -867,13 +892,15 @@ export interface HyperParameterTrainingJobSummary {
|
|
|
867
892
|
export interface HyperParameterTuningJobConsumedResources {
|
|
868
893
|
RuntimeInSeconds?: number;
|
|
869
894
|
}
|
|
870
|
-
export declare
|
|
871
|
-
COMPLETED
|
|
872
|
-
FAILED
|
|
873
|
-
IN_PROGRESS
|
|
874
|
-
STOPPED
|
|
875
|
-
STOPPING
|
|
876
|
-
}
|
|
895
|
+
export declare const HyperParameterTuningJobStatus: {
|
|
896
|
+
readonly COMPLETED: "Completed";
|
|
897
|
+
readonly FAILED: "Failed";
|
|
898
|
+
readonly IN_PROGRESS: "InProgress";
|
|
899
|
+
readonly STOPPED: "Stopped";
|
|
900
|
+
readonly STOPPING: "Stopping";
|
|
901
|
+
};
|
|
902
|
+
export type HyperParameterTuningJobStatus =
|
|
903
|
+
(typeof HyperParameterTuningJobStatus)[keyof typeof HyperParameterTuningJobStatus];
|
|
877
904
|
export interface ObjectiveStatusCounters {
|
|
878
905
|
Succeeded?: number;
|
|
879
906
|
Pending?: number;
|
|
@@ -915,15 +942,16 @@ export interface DescribeHyperParameterTuningJobResponse {
|
|
|
915
942
|
export interface DescribeImageRequest {
|
|
916
943
|
ImageName: string | undefined;
|
|
917
944
|
}
|
|
918
|
-
export declare
|
|
919
|
-
CREATED
|
|
920
|
-
CREATE_FAILED
|
|
921
|
-
CREATING
|
|
922
|
-
DELETE_FAILED
|
|
923
|
-
DELETING
|
|
924
|
-
UPDATE_FAILED
|
|
925
|
-
UPDATING
|
|
926
|
-
}
|
|
945
|
+
export declare const ImageStatus: {
|
|
946
|
+
readonly CREATED: "CREATED";
|
|
947
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
948
|
+
readonly CREATING: "CREATING";
|
|
949
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
950
|
+
readonly DELETING: "DELETING";
|
|
951
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
952
|
+
readonly UPDATING: "UPDATING";
|
|
953
|
+
};
|
|
954
|
+
export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
|
|
927
955
|
export interface DescribeImageResponse {
|
|
928
956
|
CreationTime?: Date;
|
|
929
957
|
Description?: string;
|
|
@@ -940,13 +968,15 @@ export interface DescribeImageVersionRequest {
|
|
|
940
968
|
Version?: number;
|
|
941
969
|
Alias?: string;
|
|
942
970
|
}
|
|
943
|
-
export declare
|
|
944
|
-
CREATED
|
|
945
|
-
CREATE_FAILED
|
|
946
|
-
CREATING
|
|
947
|
-
DELETE_FAILED
|
|
948
|
-
DELETING
|
|
949
|
-
}
|
|
971
|
+
export declare const ImageVersionStatus: {
|
|
972
|
+
readonly CREATED: "CREATED";
|
|
973
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
974
|
+
readonly CREATING: "CREATING";
|
|
975
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
976
|
+
readonly DELETING: "DELETING";
|
|
977
|
+
};
|
|
978
|
+
export type ImageVersionStatus =
|
|
979
|
+
(typeof ImageVersionStatus)[keyof typeof ImageVersionStatus];
|
|
950
980
|
export interface DescribeImageVersionResponse {
|
|
951
981
|
BaseImage?: string;
|
|
952
982
|
ContainerImage?: string;
|
|
@@ -974,29 +1004,33 @@ export interface EndpointMetadata {
|
|
|
974
1004
|
EndpointStatus?: EndpointStatus | string;
|
|
975
1005
|
FailureReason?: string;
|
|
976
1006
|
}
|
|
977
|
-
export declare
|
|
978
|
-
CREATING
|
|
979
|
-
DELETED
|
|
980
|
-
DELETING
|
|
981
|
-
IN_SERVICE
|
|
982
|
-
UPDATING
|
|
983
|
-
}
|
|
1007
|
+
export declare const ModelVariantStatus: {
|
|
1008
|
+
readonly CREATING: "Creating";
|
|
1009
|
+
readonly DELETED: "Deleted";
|
|
1010
|
+
readonly DELETING: "Deleting";
|
|
1011
|
+
readonly IN_SERVICE: "InService";
|
|
1012
|
+
readonly UPDATING: "Updating";
|
|
1013
|
+
};
|
|
1014
|
+
export type ModelVariantStatus =
|
|
1015
|
+
(typeof ModelVariantStatus)[keyof typeof ModelVariantStatus];
|
|
984
1016
|
export interface ModelVariantConfigSummary {
|
|
985
1017
|
ModelName: string | undefined;
|
|
986
1018
|
VariantName: string | undefined;
|
|
987
1019
|
InfrastructureConfig: ModelInfrastructureConfig | undefined;
|
|
988
1020
|
Status: ModelVariantStatus | string | undefined;
|
|
989
1021
|
}
|
|
990
|
-
export declare
|
|
991
|
-
CANCELLED
|
|
992
|
-
COMPLETED
|
|
993
|
-
CREATED
|
|
994
|
-
CREATING
|
|
995
|
-
RUNNING
|
|
996
|
-
STARTING
|
|
997
|
-
STOPPING
|
|
998
|
-
UPDATING
|
|
999
|
-
}
|
|
1022
|
+
export declare const InferenceExperimentStatus: {
|
|
1023
|
+
readonly CANCELLED: "Cancelled";
|
|
1024
|
+
readonly COMPLETED: "Completed";
|
|
1025
|
+
readonly CREATED: "Created";
|
|
1026
|
+
readonly CREATING: "Creating";
|
|
1027
|
+
readonly RUNNING: "Running";
|
|
1028
|
+
readonly STARTING: "Starting";
|
|
1029
|
+
readonly STOPPING: "Stopping";
|
|
1030
|
+
readonly UPDATING: "Updating";
|
|
1031
|
+
};
|
|
1032
|
+
export type InferenceExperimentStatus =
|
|
1033
|
+
(typeof InferenceExperimentStatus)[keyof typeof InferenceExperimentStatus];
|
|
1000
1034
|
export interface DescribeInferenceExperimentResponse {
|
|
1001
1035
|
Arn: string | undefined;
|
|
1002
1036
|
Name: string | undefined;
|
|
@@ -1056,14 +1090,16 @@ export interface InferenceRecommendation {
|
|
|
1056
1090
|
ModelConfiguration: ModelConfiguration | undefined;
|
|
1057
1091
|
RecommendationId?: string;
|
|
1058
1092
|
}
|
|
1059
|
-
export declare
|
|
1060
|
-
COMPLETED
|
|
1061
|
-
FAILED
|
|
1062
|
-
IN_PROGRESS
|
|
1063
|
-
PENDING
|
|
1064
|
-
STOPPED
|
|
1065
|
-
STOPPING
|
|
1066
|
-
}
|
|
1093
|
+
export declare const RecommendationJobStatus: {
|
|
1094
|
+
readonly COMPLETED: "COMPLETED";
|
|
1095
|
+
readonly FAILED: "FAILED";
|
|
1096
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1097
|
+
readonly PENDING: "PENDING";
|
|
1098
|
+
readonly STOPPED: "STOPPED";
|
|
1099
|
+
readonly STOPPING: "STOPPING";
|
|
1100
|
+
};
|
|
1101
|
+
export type RecommendationJobStatus =
|
|
1102
|
+
(typeof RecommendationJobStatus)[keyof typeof RecommendationJobStatus];
|
|
1067
1103
|
export interface DescribeInferenceRecommendationsJobResponse {
|
|
1068
1104
|
JobName: string | undefined;
|
|
1069
1105
|
JobDescription?: string;
|
|
@@ -1094,14 +1130,16 @@ export interface LabelingJobOutput {
|
|
|
1094
1130
|
OutputDatasetS3Uri: string | undefined;
|
|
1095
1131
|
FinalActiveLearningModelArn?: string;
|
|
1096
1132
|
}
|
|
1097
|
-
export declare
|
|
1098
|
-
COMPLETED
|
|
1099
|
-
FAILED
|
|
1100
|
-
INITIALIZING
|
|
1101
|
-
IN_PROGRESS
|
|
1102
|
-
STOPPED
|
|
1103
|
-
STOPPING
|
|
1104
|
-
}
|
|
1133
|
+
export declare const LabelingJobStatus: {
|
|
1134
|
+
readonly COMPLETED: "Completed";
|
|
1135
|
+
readonly FAILED: "Failed";
|
|
1136
|
+
readonly INITIALIZING: "Initializing";
|
|
1137
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1138
|
+
readonly STOPPED: "Stopped";
|
|
1139
|
+
readonly STOPPING: "Stopping";
|
|
1140
|
+
};
|
|
1141
|
+
export type LabelingJobStatus =
|
|
1142
|
+
(typeof LabelingJobStatus)[keyof typeof LabelingJobStatus];
|
|
1105
1143
|
export interface DescribeLabelingJobResponse {
|
|
1106
1144
|
LabelingJobStatus: LabelingJobStatus | string | undefined;
|
|
1107
1145
|
LabelCounters: LabelCounters | undefined;
|
|
@@ -1169,14 +1207,16 @@ export interface DescribeModelCardRequest {
|
|
|
1169
1207
|
ModelCardName: string | undefined;
|
|
1170
1208
|
ModelCardVersion?: number;
|
|
1171
1209
|
}
|
|
1172
|
-
export declare
|
|
1173
|
-
CONTENT_DELETED
|
|
1174
|
-
DELETE_COMPLETED
|
|
1175
|
-
DELETE_FAILED
|
|
1176
|
-
DELETE_INPROGRESS
|
|
1177
|
-
DELETE_PENDING
|
|
1178
|
-
EXPORTJOBS_DELETED
|
|
1179
|
-
}
|
|
1210
|
+
export declare const ModelCardProcessingStatus: {
|
|
1211
|
+
readonly CONTENT_DELETED: "ContentDeleted";
|
|
1212
|
+
readonly DELETE_COMPLETED: "DeleteCompleted";
|
|
1213
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
1214
|
+
readonly DELETE_INPROGRESS: "DeleteInProgress";
|
|
1215
|
+
readonly DELETE_PENDING: "DeletePending";
|
|
1216
|
+
readonly EXPORTJOBS_DELETED: "ExportJobsDeleted";
|
|
1217
|
+
};
|
|
1218
|
+
export type ModelCardProcessingStatus =
|
|
1219
|
+
(typeof ModelCardProcessingStatus)[keyof typeof ModelCardProcessingStatus];
|
|
1180
1220
|
export interface DescribeModelCardResponse {
|
|
1181
1221
|
ModelCardArn: string | undefined;
|
|
1182
1222
|
ModelCardName: string | undefined;
|
|
@@ -1196,11 +1236,13 @@ export interface DescribeModelCardExportJobRequest {
|
|
|
1196
1236
|
export interface ModelCardExportArtifacts {
|
|
1197
1237
|
S3ExportArtifacts: string | undefined;
|
|
1198
1238
|
}
|
|
1199
|
-
export declare
|
|
1200
|
-
COMPLETED
|
|
1201
|
-
FAILED
|
|
1202
|
-
IN_PROGRESS
|
|
1203
|
-
}
|
|
1239
|
+
export declare const ModelCardExportJobStatus: {
|
|
1240
|
+
readonly COMPLETED: "Completed";
|
|
1241
|
+
readonly FAILED: "Failed";
|
|
1242
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1243
|
+
};
|
|
1244
|
+
export type ModelCardExportJobStatus =
|
|
1245
|
+
(typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
|
|
1204
1246
|
export interface DescribeModelCardExportJobResponse {
|
|
1205
1247
|
ModelCardExportJobName: string | undefined;
|
|
1206
1248
|
ModelCardExportJobArn: string | undefined;
|
|
@@ -1234,12 +1276,14 @@ export interface DescribeModelExplainabilityJobDefinitionResponse {
|
|
|
1234
1276
|
export interface DescribeModelPackageInput {
|
|
1235
1277
|
ModelPackageName: string | undefined;
|
|
1236
1278
|
}
|
|
1237
|
-
export declare
|
|
1238
|
-
COMPLETED
|
|
1239
|
-
FAILED
|
|
1240
|
-
IN_PROGRESS
|
|
1241
|
-
NOT_STARTED
|
|
1242
|
-
}
|
|
1279
|
+
export declare const DetailedModelPackageStatus: {
|
|
1280
|
+
readonly COMPLETED: "Completed";
|
|
1281
|
+
readonly FAILED: "Failed";
|
|
1282
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1283
|
+
readonly NOT_STARTED: "NotStarted";
|
|
1284
|
+
};
|
|
1285
|
+
export type DetailedModelPackageStatus =
|
|
1286
|
+
(typeof DetailedModelPackageStatus)[keyof typeof DetailedModelPackageStatus];
|
|
1243
1287
|
export interface ModelPackageStatusItem {
|
|
1244
1288
|
Name: string | undefined;
|
|
1245
1289
|
Status: DetailedModelPackageStatus | string | undefined;
|
|
@@ -1279,14 +1323,16 @@ export interface DescribeModelPackageOutput {
|
|
|
1279
1323
|
export interface DescribeModelPackageGroupInput {
|
|
1280
1324
|
ModelPackageGroupName: string | undefined;
|
|
1281
1325
|
}
|
|
1282
|
-
export declare
|
|
1283
|
-
COMPLETED
|
|
1284
|
-
DELETE_FAILED
|
|
1285
|
-
DELETING
|
|
1286
|
-
FAILED
|
|
1287
|
-
IN_PROGRESS
|
|
1288
|
-
PENDING
|
|
1289
|
-
}
|
|
1326
|
+
export declare const ModelPackageGroupStatus: {
|
|
1327
|
+
readonly COMPLETED: "Completed";
|
|
1328
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
1329
|
+
readonly DELETING: "Deleting";
|
|
1330
|
+
readonly FAILED: "Failed";
|
|
1331
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1332
|
+
readonly PENDING: "Pending";
|
|
1333
|
+
};
|
|
1334
|
+
export type ModelPackageGroupStatus =
|
|
1335
|
+
(typeof ModelPackageGroupStatus)[keyof typeof ModelPackageGroupStatus];
|
|
1290
1336
|
export interface DescribeModelPackageGroupOutput {
|
|
1291
1337
|
ModelPackageGroupName: string | undefined;
|
|
1292
1338
|
ModelPackageGroupArn: string | undefined;
|
|
@@ -1314,15 +1360,17 @@ export interface DescribeModelQualityJobDefinitionResponse {
|
|
|
1314
1360
|
export interface DescribeMonitoringScheduleRequest {
|
|
1315
1361
|
MonitoringScheduleName: string | undefined;
|
|
1316
1362
|
}
|
|
1317
|
-
export declare
|
|
1318
|
-
COMPLETED
|
|
1319
|
-
COMPLETED_WITH_VIOLATIONS
|
|
1320
|
-
FAILED
|
|
1321
|
-
IN_PROGRESS
|
|
1322
|
-
PENDING
|
|
1323
|
-
STOPPED
|
|
1324
|
-
STOPPING
|
|
1325
|
-
}
|
|
1363
|
+
export declare const ExecutionStatus: {
|
|
1364
|
+
readonly COMPLETED: "Completed";
|
|
1365
|
+
readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
|
|
1366
|
+
readonly FAILED: "Failed";
|
|
1367
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1368
|
+
readonly PENDING: "Pending";
|
|
1369
|
+
readonly STOPPED: "Stopped";
|
|
1370
|
+
readonly STOPPING: "Stopping";
|
|
1371
|
+
};
|
|
1372
|
+
export type ExecutionStatus =
|
|
1373
|
+
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
1326
1374
|
export interface MonitoringExecutionSummary {
|
|
1327
1375
|
MonitoringScheduleName: string | undefined;
|
|
1328
1376
|
ScheduledTime: Date | undefined;
|
|
@@ -1335,12 +1383,14 @@ export interface MonitoringExecutionSummary {
|
|
|
1335
1383
|
MonitoringJobDefinitionName?: string;
|
|
1336
1384
|
MonitoringType?: MonitoringType | string;
|
|
1337
1385
|
}
|
|
1338
|
-
export declare
|
|
1339
|
-
FAILED
|
|
1340
|
-
PENDING
|
|
1341
|
-
SCHEDULED
|
|
1342
|
-
STOPPED
|
|
1343
|
-
}
|
|
1386
|
+
export declare const ScheduleStatus: {
|
|
1387
|
+
readonly FAILED: "Failed";
|
|
1388
|
+
readonly PENDING: "Pending";
|
|
1389
|
+
readonly SCHEDULED: "Scheduled";
|
|
1390
|
+
readonly STOPPED: "Stopped";
|
|
1391
|
+
};
|
|
1392
|
+
export type ScheduleStatus =
|
|
1393
|
+
(typeof ScheduleStatus)[keyof typeof ScheduleStatus];
|
|
1344
1394
|
export interface DescribeMonitoringScheduleResponse {
|
|
1345
1395
|
MonitoringScheduleArn: string | undefined;
|
|
1346
1396
|
MonitoringScheduleName: string | undefined;
|
|
@@ -1356,15 +1406,17 @@ export interface DescribeMonitoringScheduleResponse {
|
|
|
1356
1406
|
export interface DescribeNotebookInstanceInput {
|
|
1357
1407
|
NotebookInstanceName: string | undefined;
|
|
1358
1408
|
}
|
|
1359
|
-
export declare
|
|
1360
|
-
Deleting
|
|
1361
|
-
Failed
|
|
1362
|
-
InService
|
|
1363
|
-
Pending
|
|
1364
|
-
Stopped
|
|
1365
|
-
Stopping
|
|
1366
|
-
Updating
|
|
1367
|
-
}
|
|
1409
|
+
export declare const NotebookInstanceStatus: {
|
|
1410
|
+
readonly Deleting: "Deleting";
|
|
1411
|
+
readonly Failed: "Failed";
|
|
1412
|
+
readonly InService: "InService";
|
|
1413
|
+
readonly Pending: "Pending";
|
|
1414
|
+
readonly Stopped: "Stopped";
|
|
1415
|
+
readonly Stopping: "Stopping";
|
|
1416
|
+
readonly Updating: "Updating";
|
|
1417
|
+
};
|
|
1418
|
+
export type NotebookInstanceStatus =
|
|
1419
|
+
(typeof NotebookInstanceStatus)[keyof typeof NotebookInstanceStatus];
|
|
1368
1420
|
export interface DescribeNotebookInstanceOutput {
|
|
1369
1421
|
NotebookInstanceArn?: string;
|
|
1370
1422
|
NotebookInstanceName?: string;
|
|
@@ -1403,9 +1455,11 @@ export interface DescribeNotebookInstanceLifecycleConfigOutput {
|
|
|
1403
1455
|
export interface DescribePipelineRequest {
|
|
1404
1456
|
PipelineName: string | undefined;
|
|
1405
1457
|
}
|
|
1406
|
-
export declare
|
|
1407
|
-
ACTIVE
|
|
1408
|
-
}
|
|
1458
|
+
export declare const PipelineStatus: {
|
|
1459
|
+
readonly ACTIVE: "Active";
|
|
1460
|
+
};
|
|
1461
|
+
export type PipelineStatus =
|
|
1462
|
+
(typeof PipelineStatus)[keyof typeof PipelineStatus];
|
|
1409
1463
|
export interface DescribePipelineResponse {
|
|
1410
1464
|
PipelineArn?: string;
|
|
1411
1465
|
PipelineName?: string;
|
|
@@ -1431,13 +1485,15 @@ export interface DescribePipelineDefinitionForExecutionResponse {
|
|
|
1431
1485
|
export interface DescribePipelineExecutionRequest {
|
|
1432
1486
|
PipelineExecutionArn: string | undefined;
|
|
1433
1487
|
}
|
|
1434
|
-
export declare
|
|
1435
|
-
EXECUTING
|
|
1436
|
-
FAILED
|
|
1437
|
-
STOPPED
|
|
1438
|
-
STOPPING
|
|
1439
|
-
SUCCEEDED
|
|
1440
|
-
}
|
|
1488
|
+
export declare const PipelineExecutionStatus: {
|
|
1489
|
+
readonly EXECUTING: "Executing";
|
|
1490
|
+
readonly FAILED: "Failed";
|
|
1491
|
+
readonly STOPPED: "Stopped";
|
|
1492
|
+
readonly STOPPING: "Stopping";
|
|
1493
|
+
readonly SUCCEEDED: "Succeeded";
|
|
1494
|
+
};
|
|
1495
|
+
export type PipelineExecutionStatus =
|
|
1496
|
+
(typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
|
|
1441
1497
|
export interface PipelineExperimentConfig {
|
|
1442
1498
|
ExperimentName?: string;
|
|
1443
1499
|
TrialName?: string;
|
|
@@ -1459,13 +1515,15 @@ export interface DescribePipelineExecutionResponse {
|
|
|
1459
1515
|
export interface DescribeProcessingJobRequest {
|
|
1460
1516
|
ProcessingJobName: string | undefined;
|
|
1461
1517
|
}
|
|
1462
|
-
export declare
|
|
1463
|
-
COMPLETED
|
|
1464
|
-
FAILED
|
|
1465
|
-
IN_PROGRESS
|
|
1466
|
-
STOPPED
|
|
1467
|
-
STOPPING
|
|
1468
|
-
}
|
|
1518
|
+
export declare const ProcessingJobStatus: {
|
|
1519
|
+
readonly COMPLETED: "Completed";
|
|
1520
|
+
readonly FAILED: "Failed";
|
|
1521
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1522
|
+
readonly STOPPED: "Stopped";
|
|
1523
|
+
readonly STOPPING: "Stopping";
|
|
1524
|
+
};
|
|
1525
|
+
export type ProcessingJobStatus =
|
|
1526
|
+
(typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
|
|
1469
1527
|
export interface DescribeProcessingJobResponse {
|
|
1470
1528
|
ProcessingInputs?: ProcessingInput[];
|
|
1471
1529
|
ProcessingOutputConfig?: ProcessingOutputConfig;
|
|
@@ -1492,18 +1550,19 @@ export interface DescribeProcessingJobResponse {
|
|
|
1492
1550
|
export interface DescribeProjectInput {
|
|
1493
1551
|
ProjectName: string | undefined;
|
|
1494
1552
|
}
|
|
1495
|
-
export declare
|
|
1496
|
-
CREATE_COMPLETED
|
|
1497
|
-
CREATE_FAILED
|
|
1498
|
-
CREATE_IN_PROGRESS
|
|
1499
|
-
DELETE_COMPLETED
|
|
1500
|
-
DELETE_FAILED
|
|
1501
|
-
DELETE_IN_PROGRESS
|
|
1502
|
-
PENDING
|
|
1503
|
-
UPDATE_COMPLETED
|
|
1504
|
-
UPDATE_FAILED
|
|
1505
|
-
UPDATE_IN_PROGRESS
|
|
1506
|
-
}
|
|
1553
|
+
export declare const ProjectStatus: {
|
|
1554
|
+
readonly CREATE_COMPLETED: "CreateCompleted";
|
|
1555
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
1556
|
+
readonly CREATE_IN_PROGRESS: "CreateInProgress";
|
|
1557
|
+
readonly DELETE_COMPLETED: "DeleteCompleted";
|
|
1558
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
1559
|
+
readonly DELETE_IN_PROGRESS: "DeleteInProgress";
|
|
1560
|
+
readonly PENDING: "Pending";
|
|
1561
|
+
readonly UPDATE_COMPLETED: "UpdateCompleted";
|
|
1562
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
1563
|
+
readonly UPDATE_IN_PROGRESS: "UpdateInProgress";
|
|
1564
|
+
};
|
|
1565
|
+
export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
1507
1566
|
export interface ServiceCatalogProvisionedProductDetails {
|
|
1508
1567
|
ProvisionedProductId?: string;
|
|
1509
1568
|
ProvisionedProductStatusMessage?: string;
|
|
@@ -1527,15 +1586,16 @@ export interface DescribeSpaceRequest {
|
|
|
1527
1586
|
DomainId: string | undefined;
|
|
1528
1587
|
SpaceName: string | undefined;
|
|
1529
1588
|
}
|
|
1530
|
-
export declare
|
|
1531
|
-
Delete_Failed
|
|
1532
|
-
Deleting
|
|
1533
|
-
Failed
|
|
1534
|
-
InService
|
|
1535
|
-
Pending
|
|
1536
|
-
Update_Failed
|
|
1537
|
-
Updating
|
|
1538
|
-
}
|
|
1589
|
+
export declare const SpaceStatus: {
|
|
1590
|
+
readonly Delete_Failed: "Delete_Failed";
|
|
1591
|
+
readonly Deleting: "Deleting";
|
|
1592
|
+
readonly Failed: "Failed";
|
|
1593
|
+
readonly InService: "InService";
|
|
1594
|
+
readonly Pending: "Pending";
|
|
1595
|
+
readonly Update_Failed: "Update_Failed";
|
|
1596
|
+
readonly Updating: "Updating";
|
|
1597
|
+
};
|
|
1598
|
+
export type SpaceStatus = (typeof SpaceStatus)[keyof typeof SpaceStatus];
|
|
1539
1599
|
export interface DescribeSpaceResponse {
|
|
1540
1600
|
DomainId?: string;
|
|
1541
1601
|
SpaceArn?: string;
|
|
@@ -1586,40 +1646,46 @@ export interface ProfilerRuleEvaluationStatus {
|
|
|
1586
1646
|
StatusDetails?: string;
|
|
1587
1647
|
LastModifiedTime?: Date;
|
|
1588
1648
|
}
|
|
1589
|
-
export declare
|
|
1590
|
-
DISABLED
|
|
1591
|
-
ENABLED
|
|
1592
|
-
}
|
|
1593
|
-
export
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1649
|
+
export declare const ProfilingStatus: {
|
|
1650
|
+
readonly DISABLED: "Disabled";
|
|
1651
|
+
readonly ENABLED: "Enabled";
|
|
1652
|
+
};
|
|
1653
|
+
export type ProfilingStatus =
|
|
1654
|
+
(typeof ProfilingStatus)[keyof typeof ProfilingStatus];
|
|
1655
|
+
export declare const SecondaryStatus: {
|
|
1656
|
+
readonly COMPLETED: "Completed";
|
|
1657
|
+
readonly DOWNLOADING: "Downloading";
|
|
1658
|
+
readonly DOWNLOADING_TRAINING_IMAGE: "DownloadingTrainingImage";
|
|
1659
|
+
readonly FAILED: "Failed";
|
|
1660
|
+
readonly INTERRUPTED: "Interrupted";
|
|
1661
|
+
readonly LAUNCHING_ML_INSTANCES: "LaunchingMLInstances";
|
|
1662
|
+
readonly MAX_RUNTIME_EXCEEDED: "MaxRuntimeExceeded";
|
|
1663
|
+
readonly MAX_WAIT_TIME_EXCEEDED: "MaxWaitTimeExceeded";
|
|
1664
|
+
readonly PREPARING_TRAINING_STACK: "PreparingTrainingStack";
|
|
1665
|
+
readonly RESTARTING: "Restarting";
|
|
1666
|
+
readonly STARTING: "Starting";
|
|
1667
|
+
readonly STOPPED: "Stopped";
|
|
1668
|
+
readonly STOPPING: "Stopping";
|
|
1669
|
+
readonly TRAINING: "Training";
|
|
1670
|
+
readonly UPDATING: "Updating";
|
|
1671
|
+
readonly UPLOADING: "Uploading";
|
|
1672
|
+
};
|
|
1673
|
+
export type SecondaryStatus =
|
|
1674
|
+
(typeof SecondaryStatus)[keyof typeof SecondaryStatus];
|
|
1611
1675
|
export interface SecondaryStatusTransition {
|
|
1612
1676
|
Status: SecondaryStatus | string | undefined;
|
|
1613
1677
|
StartTime: Date | undefined;
|
|
1614
1678
|
EndTime?: Date;
|
|
1615
1679
|
StatusMessage?: string;
|
|
1616
1680
|
}
|
|
1617
|
-
export declare
|
|
1618
|
-
AVAILABLE
|
|
1619
|
-
INUSE
|
|
1620
|
-
REUSED
|
|
1621
|
-
TERMINATED
|
|
1622
|
-
}
|
|
1681
|
+
export declare const WarmPoolResourceStatus: {
|
|
1682
|
+
readonly AVAILABLE: "Available";
|
|
1683
|
+
readonly INUSE: "InUse";
|
|
1684
|
+
readonly REUSED: "Reused";
|
|
1685
|
+
readonly TERMINATED: "Terminated";
|
|
1686
|
+
};
|
|
1687
|
+
export type WarmPoolResourceStatus =
|
|
1688
|
+
(typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
|
|
1623
1689
|
export interface WarmPoolStatus {
|
|
1624
1690
|
Status: WarmPoolResourceStatus | string | undefined;
|
|
1625
1691
|
ResourceRetainedBillableTimeInSeconds?: number;
|
|
@@ -1671,13 +1737,15 @@ export interface DescribeTrainingJobResponse {
|
|
|
1671
1737
|
export interface DescribeTransformJobRequest {
|
|
1672
1738
|
TransformJobName: string | undefined;
|
|
1673
1739
|
}
|
|
1674
|
-
export declare
|
|
1675
|
-
COMPLETED
|
|
1676
|
-
FAILED
|
|
1677
|
-
IN_PROGRESS
|
|
1678
|
-
STOPPED
|
|
1679
|
-
STOPPING
|
|
1680
|
-
}
|
|
1740
|
+
export declare const TransformJobStatus: {
|
|
1741
|
+
readonly COMPLETED: "Completed";
|
|
1742
|
+
readonly FAILED: "Failed";
|
|
1743
|
+
readonly IN_PROGRESS: "InProgress";
|
|
1744
|
+
readonly STOPPED: "Stopped";
|
|
1745
|
+
readonly STOPPING: "Stopping";
|
|
1746
|
+
};
|
|
1747
|
+
export type TransformJobStatus =
|
|
1748
|
+
(typeof TransformJobStatus)[keyof typeof TransformJobStatus];
|
|
1681
1749
|
export interface DescribeTransformJobResponse {
|
|
1682
1750
|
TransformJobName: string | undefined;
|
|
1683
1751
|
TransformJobArn: string | undefined;
|
|
@@ -1762,15 +1830,17 @@ export interface DescribeUserProfileRequest {
|
|
|
1762
1830
|
DomainId: string | undefined;
|
|
1763
1831
|
UserProfileName: string | undefined;
|
|
1764
1832
|
}
|
|
1765
|
-
export declare
|
|
1766
|
-
Delete_Failed
|
|
1767
|
-
Deleting
|
|
1768
|
-
Failed
|
|
1769
|
-
InService
|
|
1770
|
-
Pending
|
|
1771
|
-
Update_Failed
|
|
1772
|
-
Updating
|
|
1773
|
-
}
|
|
1833
|
+
export declare const UserProfileStatus: {
|
|
1834
|
+
readonly Delete_Failed: "Delete_Failed";
|
|
1835
|
+
readonly Deleting: "Deleting";
|
|
1836
|
+
readonly Failed: "Failed";
|
|
1837
|
+
readonly InService: "InService";
|
|
1838
|
+
readonly Pending: "Pending";
|
|
1839
|
+
readonly Update_Failed: "Update_Failed";
|
|
1840
|
+
readonly Updating: "Updating";
|
|
1841
|
+
};
|
|
1842
|
+
export type UserProfileStatus =
|
|
1843
|
+
(typeof UserProfileStatus)[keyof typeof UserProfileStatus];
|
|
1774
1844
|
export interface DescribeUserProfileResponse {
|
|
1775
1845
|
DomainId?: string;
|
|
1776
1846
|
UserProfileArn?: string;
|
|
@@ -1796,13 +1866,15 @@ export interface OidcConfigForResponse {
|
|
|
1796
1866
|
LogoutEndpoint?: string;
|
|
1797
1867
|
JwksUri?: string;
|
|
1798
1868
|
}
|
|
1799
|
-
export declare
|
|
1800
|
-
ACTIVE
|
|
1801
|
-
DELETING
|
|
1802
|
-
FAILED
|
|
1803
|
-
INITIALIZING
|
|
1804
|
-
UPDATING
|
|
1805
|
-
}
|
|
1869
|
+
export declare const WorkforceStatus: {
|
|
1870
|
+
readonly ACTIVE: "Active";
|
|
1871
|
+
readonly DELETING: "Deleting";
|
|
1872
|
+
readonly FAILED: "Failed";
|
|
1873
|
+
readonly INITIALIZING: "Initializing";
|
|
1874
|
+
readonly UPDATING: "Updating";
|
|
1875
|
+
};
|
|
1876
|
+
export type WorkforceStatus =
|
|
1877
|
+
(typeof WorkforceStatus)[keyof typeof WorkforceStatus];
|
|
1806
1878
|
export interface WorkforceVpcConfigResponse {
|
|
1807
1879
|
VpcId: string | undefined;
|
|
1808
1880
|
SecurityGroupIds: string[] | undefined;
|
|
@@ -1853,14 +1925,16 @@ export interface Device {
|
|
|
1853
1925
|
Description?: string;
|
|
1854
1926
|
IotThingName?: string;
|
|
1855
1927
|
}
|
|
1856
|
-
export declare
|
|
1857
|
-
Deployed
|
|
1858
|
-
Failed
|
|
1859
|
-
InProgress
|
|
1860
|
-
ReadyToDeploy
|
|
1861
|
-
Stopped
|
|
1862
|
-
Stopping
|
|
1863
|
-
}
|
|
1928
|
+
export declare const DeviceDeploymentStatus: {
|
|
1929
|
+
readonly Deployed: "DEPLOYED";
|
|
1930
|
+
readonly Failed: "FAILED";
|
|
1931
|
+
readonly InProgress: "INPROGRESS";
|
|
1932
|
+
readonly ReadyToDeploy: "READYTODEPLOY";
|
|
1933
|
+
readonly Stopped: "STOPPED";
|
|
1934
|
+
readonly Stopping: "STOPPING";
|
|
1935
|
+
};
|
|
1936
|
+
export type DeviceDeploymentStatus =
|
|
1937
|
+
(typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
|
|
1864
1938
|
export interface DeviceDeploymentSummary {
|
|
1865
1939
|
EdgeDeploymentPlanArn: string | undefined;
|
|
1866
1940
|
EdgeDeploymentPlanName: string | undefined;
|
|
@@ -1899,11 +1973,12 @@ export interface DeviceSummary {
|
|
|
1899
1973
|
Models?: EdgeModelSummary[];
|
|
1900
1974
|
AgentVersion?: string;
|
|
1901
1975
|
}
|
|
1902
|
-
export declare
|
|
1903
|
-
ASCENDANTS
|
|
1904
|
-
BOTH
|
|
1905
|
-
DESCENDANTS
|
|
1906
|
-
}
|
|
1976
|
+
export declare const Direction: {
|
|
1977
|
+
readonly ASCENDANTS: "Ascendants";
|
|
1978
|
+
readonly BOTH: "Both";
|
|
1979
|
+
readonly DESCENDANTS: "Descendants";
|
|
1980
|
+
};
|
|
1981
|
+
export type Direction = (typeof Direction)[keyof typeof Direction];
|
|
1907
1982
|
export interface DisableSagemakerServicecatalogPortfolioInput {}
|
|
1908
1983
|
export interface DisableSagemakerServicecatalogPortfolioOutput {}
|
|
1909
1984
|
export interface DisassociateTrialComponentRequest {
|
|
@@ -2002,20 +2077,24 @@ export interface Endpoint {
|
|
|
2002
2077
|
Tags?: Tag[];
|
|
2003
2078
|
ShadowProductionVariants?: ProductionVariantSummary[];
|
|
2004
2079
|
}
|
|
2005
|
-
export declare
|
|
2006
|
-
CreationTime
|
|
2007
|
-
Name
|
|
2008
|
-
}
|
|
2080
|
+
export declare const EndpointConfigSortKey: {
|
|
2081
|
+
readonly CreationTime: "CreationTime";
|
|
2082
|
+
readonly Name: "Name";
|
|
2083
|
+
};
|
|
2084
|
+
export type EndpointConfigSortKey =
|
|
2085
|
+
(typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
|
|
2009
2086
|
export interface EndpointConfigSummary {
|
|
2010
2087
|
EndpointConfigName: string | undefined;
|
|
2011
2088
|
EndpointConfigArn: string | undefined;
|
|
2012
2089
|
CreationTime: Date | undefined;
|
|
2013
2090
|
}
|
|
2014
|
-
export declare
|
|
2015
|
-
CreationTime
|
|
2016
|
-
Name
|
|
2017
|
-
Status
|
|
2018
|
-
}
|
|
2091
|
+
export declare const EndpointSortKey: {
|
|
2092
|
+
readonly CreationTime: "CreationTime";
|
|
2093
|
+
readonly Name: "Name";
|
|
2094
|
+
readonly Status: "Status";
|
|
2095
|
+
};
|
|
2096
|
+
export type EndpointSortKey =
|
|
2097
|
+
(typeof EndpointSortKey)[keyof typeof EndpointSortKey];
|
|
2019
2098
|
export interface EndpointSummary {
|
|
2020
2099
|
EndpointName: string | undefined;
|
|
2021
2100
|
EndpointArn: string | undefined;
|
|
@@ -2064,16 +2143,20 @@ export interface FeatureGroup {
|
|
|
2064
2143
|
Description?: string;
|
|
2065
2144
|
Tags?: Tag[];
|
|
2066
2145
|
}
|
|
2067
|
-
export declare
|
|
2068
|
-
CREATION_TIME
|
|
2069
|
-
FEATURE_GROUP_STATUS
|
|
2070
|
-
NAME
|
|
2071
|
-
OFFLINE_STORE_STATUS
|
|
2072
|
-
}
|
|
2073
|
-
export
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2146
|
+
export declare const FeatureGroupSortBy: {
|
|
2147
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2148
|
+
readonly FEATURE_GROUP_STATUS: "FeatureGroupStatus";
|
|
2149
|
+
readonly NAME: "Name";
|
|
2150
|
+
readonly OFFLINE_STORE_STATUS: "OfflineStoreStatus";
|
|
2151
|
+
};
|
|
2152
|
+
export type FeatureGroupSortBy =
|
|
2153
|
+
(typeof FeatureGroupSortBy)[keyof typeof FeatureGroupSortBy];
|
|
2154
|
+
export declare const FeatureGroupSortOrder: {
|
|
2155
|
+
readonly ASCENDING: "Ascending";
|
|
2156
|
+
readonly DESCENDING: "Descending";
|
|
2157
|
+
};
|
|
2158
|
+
export type FeatureGroupSortOrder =
|
|
2159
|
+
(typeof FeatureGroupSortOrder)[keyof typeof FeatureGroupSortOrder];
|
|
2077
2160
|
export interface FeatureGroupSummary {
|
|
2078
2161
|
FeatureGroupName: string | undefined;
|
|
2079
2162
|
FeatureGroupArn: string | undefined;
|
|
@@ -2091,18 +2174,19 @@ export interface FeatureMetadata {
|
|
|
2091
2174
|
Description?: string;
|
|
2092
2175
|
Parameters?: FeatureParameter[];
|
|
2093
2176
|
}
|
|
2094
|
-
export declare
|
|
2095
|
-
CONTAINS
|
|
2096
|
-
EQUALS
|
|
2097
|
-
EXISTS
|
|
2098
|
-
GREATER_THAN
|
|
2099
|
-
GREATER_THAN_OR_EQUAL_TO
|
|
2100
|
-
IN
|
|
2101
|
-
LESS_THAN
|
|
2102
|
-
LESS_THAN_OR_EQUAL_TO
|
|
2103
|
-
NOT_EQUALS
|
|
2104
|
-
NOT_EXISTS
|
|
2105
|
-
}
|
|
2177
|
+
export declare const Operator: {
|
|
2178
|
+
readonly CONTAINS: "Contains";
|
|
2179
|
+
readonly EQUALS: "Equals";
|
|
2180
|
+
readonly EXISTS: "Exists";
|
|
2181
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
2182
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
|
|
2183
|
+
readonly IN: "In";
|
|
2184
|
+
readonly LESS_THAN: "LessThan";
|
|
2185
|
+
readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
|
|
2186
|
+
readonly NOT_EQUALS: "NotEquals";
|
|
2187
|
+
readonly NOT_EXISTS: "NotExists";
|
|
2188
|
+
};
|
|
2189
|
+
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
2106
2190
|
export interface Filter {
|
|
2107
2191
|
Name: string | undefined;
|
|
2108
2192
|
Operator?: Operator | string;
|
|
@@ -2142,30 +2226,33 @@ export interface GetModelPackageGroupPolicyOutput {
|
|
|
2142
2226
|
ResourcePolicy: string | undefined;
|
|
2143
2227
|
}
|
|
2144
2228
|
export interface GetSagemakerServicecatalogPortfolioStatusInput {}
|
|
2145
|
-
export declare
|
|
2146
|
-
DISABLED
|
|
2147
|
-
ENABLED
|
|
2148
|
-
}
|
|
2229
|
+
export declare const SagemakerServicecatalogStatus: {
|
|
2230
|
+
readonly DISABLED: "Disabled";
|
|
2231
|
+
readonly ENABLED: "Enabled";
|
|
2232
|
+
};
|
|
2233
|
+
export type SagemakerServicecatalogStatus =
|
|
2234
|
+
(typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
2149
2235
|
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
2150
2236
|
Status?: SagemakerServicecatalogStatus | string;
|
|
2151
2237
|
}
|
|
2152
|
-
export declare
|
|
2153
|
-
ENDPOINT
|
|
2154
|
-
EXPERIMENT
|
|
2155
|
-
EXPERIMENT_TRIAL
|
|
2156
|
-
EXPERIMENT_TRIAL_COMPONENT
|
|
2157
|
-
FEATURE_GROUP
|
|
2158
|
-
FEATURE_METADATA
|
|
2159
|
-
HYPER_PARAMETER_TUNING_JOB
|
|
2160
|
-
MODEL
|
|
2161
|
-
MODEL_CARD
|
|
2162
|
-
MODEL_PACKAGE
|
|
2163
|
-
MODEL_PACKAGE_GROUP
|
|
2164
|
-
PIPELINE
|
|
2165
|
-
PIPELINE_EXECUTION
|
|
2166
|
-
PROJECT
|
|
2167
|
-
TRAINING_JOB
|
|
2168
|
-
}
|
|
2238
|
+
export declare const ResourceType: {
|
|
2239
|
+
readonly ENDPOINT: "Endpoint";
|
|
2240
|
+
readonly EXPERIMENT: "Experiment";
|
|
2241
|
+
readonly EXPERIMENT_TRIAL: "ExperimentTrial";
|
|
2242
|
+
readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
|
|
2243
|
+
readonly FEATURE_GROUP: "FeatureGroup";
|
|
2244
|
+
readonly FEATURE_METADATA: "FeatureMetadata";
|
|
2245
|
+
readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
|
|
2246
|
+
readonly MODEL: "Model";
|
|
2247
|
+
readonly MODEL_CARD: "ModelCard";
|
|
2248
|
+
readonly MODEL_PACKAGE: "ModelPackage";
|
|
2249
|
+
readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
|
|
2250
|
+
readonly PIPELINE: "Pipeline";
|
|
2251
|
+
readonly PIPELINE_EXECUTION: "PipelineExecution";
|
|
2252
|
+
readonly PROJECT: "Project";
|
|
2253
|
+
readonly TRAINING_JOB: "TrainingJob";
|
|
2254
|
+
};
|
|
2255
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
2169
2256
|
export interface PropertyNameQuery {
|
|
2170
2257
|
PropertyNameHint: string | undefined;
|
|
2171
2258
|
}
|
|
@@ -2197,11 +2284,13 @@ export interface HubContentInfo {
|
|
|
2197
2284
|
HubContentStatus: HubContentStatus | string | undefined;
|
|
2198
2285
|
CreationTime: Date | undefined;
|
|
2199
2286
|
}
|
|
2200
|
-
export declare
|
|
2201
|
-
CREATION_TIME
|
|
2202
|
-
HUB_CONTENT_NAME
|
|
2203
|
-
HUB_CONTENT_STATUS
|
|
2204
|
-
}
|
|
2287
|
+
export declare const HubContentSortBy: {
|
|
2288
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2289
|
+
readonly HUB_CONTENT_NAME: "HubContentName";
|
|
2290
|
+
readonly HUB_CONTENT_STATUS: "HubContentStatus";
|
|
2291
|
+
};
|
|
2292
|
+
export type HubContentSortBy =
|
|
2293
|
+
(typeof HubContentSortBy)[keyof typeof HubContentSortBy];
|
|
2205
2294
|
export interface HubInfo {
|
|
2206
2295
|
HubName: string | undefined;
|
|
2207
2296
|
HubArn: string | undefined;
|
|
@@ -2212,12 +2301,13 @@ export interface HubInfo {
|
|
|
2212
2301
|
CreationTime: Date | undefined;
|
|
2213
2302
|
LastModifiedTime: Date | undefined;
|
|
2214
2303
|
}
|
|
2215
|
-
export declare
|
|
2216
|
-
ACCOUNT_ID_OWNER
|
|
2217
|
-
CREATION_TIME
|
|
2218
|
-
HUB_NAME
|
|
2219
|
-
HUB_STATUS
|
|
2220
|
-
}
|
|
2304
|
+
export declare const HubSortBy: {
|
|
2305
|
+
readonly ACCOUNT_ID_OWNER: "AccountIdOwner";
|
|
2306
|
+
readonly CREATION_TIME: "CreationTime";
|
|
2307
|
+
readonly HUB_NAME: "HubName";
|
|
2308
|
+
readonly HUB_STATUS: "HubStatus";
|
|
2309
|
+
};
|
|
2310
|
+
export type HubSortBy = (typeof HubSortBy)[keyof typeof HubSortBy];
|
|
2221
2311
|
export interface HumanTaskUiSummary {
|
|
2222
2312
|
HumanTaskUiName: string | undefined;
|
|
2223
2313
|
HumanTaskUiArn: string | undefined;
|
|
@@ -2243,11 +2333,13 @@ export interface HyperParameterTuningJobSearchEntity {
|
|
|
2243
2333
|
TuningJobCompletionDetails?: HyperParameterTuningJobCompletionDetails;
|
|
2244
2334
|
ConsumedResources?: HyperParameterTuningJobConsumedResources;
|
|
2245
2335
|
}
|
|
2246
|
-
export declare
|
|
2247
|
-
CreationTime
|
|
2248
|
-
Name
|
|
2249
|
-
Status
|
|
2250
|
-
}
|
|
2336
|
+
export declare const HyperParameterTuningJobSortByOptions: {
|
|
2337
|
+
readonly CreationTime: "CreationTime";
|
|
2338
|
+
readonly Name: "Name";
|
|
2339
|
+
readonly Status: "Status";
|
|
2340
|
+
};
|
|
2341
|
+
export type HyperParameterTuningJobSortByOptions =
|
|
2342
|
+
(typeof HyperParameterTuningJobSortByOptions)[keyof typeof HyperParameterTuningJobSortByOptions];
|
|
2251
2343
|
export interface HyperParameterTuningJobSummary {
|
|
2252
2344
|
HyperParameterTuningJobName: string | undefined;
|
|
2253
2345
|
HyperParameterTuningJobArn: string | undefined;
|
|
@@ -2273,15 +2365,18 @@ export interface Image {
|
|
|
2273
2365
|
ImageStatus: ImageStatus | string | undefined;
|
|
2274
2366
|
LastModifiedTime: Date | undefined;
|
|
2275
2367
|
}
|
|
2276
|
-
export declare
|
|
2277
|
-
CREATION_TIME
|
|
2278
|
-
IMAGE_NAME
|
|
2279
|
-
LAST_MODIFIED_TIME
|
|
2280
|
-
}
|
|
2281
|
-
export
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2368
|
+
export declare const ImageSortBy: {
|
|
2369
|
+
readonly CREATION_TIME: "CREATION_TIME";
|
|
2370
|
+
readonly IMAGE_NAME: "IMAGE_NAME";
|
|
2371
|
+
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
2372
|
+
};
|
|
2373
|
+
export type ImageSortBy = (typeof ImageSortBy)[keyof typeof ImageSortBy];
|
|
2374
|
+
export declare const ImageSortOrder: {
|
|
2375
|
+
readonly ASCENDING: "ASCENDING";
|
|
2376
|
+
readonly DESCENDING: "DESCENDING";
|
|
2377
|
+
};
|
|
2378
|
+
export type ImageSortOrder =
|
|
2379
|
+
(typeof ImageSortOrder)[keyof typeof ImageSortOrder];
|
|
2285
2380
|
export interface ImageVersion {
|
|
2286
2381
|
CreationTime: Date | undefined;
|
|
2287
2382
|
FailureReason?: string;
|
|
@@ -2291,15 +2386,19 @@ export interface ImageVersion {
|
|
|
2291
2386
|
LastModifiedTime: Date | undefined;
|
|
2292
2387
|
Version: number | undefined;
|
|
2293
2388
|
}
|
|
2294
|
-
export declare
|
|
2295
|
-
CREATION_TIME
|
|
2296
|
-
LAST_MODIFIED_TIME
|
|
2297
|
-
VERSION
|
|
2298
|
-
}
|
|
2299
|
-
export
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2389
|
+
export declare const ImageVersionSortBy: {
|
|
2390
|
+
readonly CREATION_TIME: "CREATION_TIME";
|
|
2391
|
+
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
2392
|
+
readonly VERSION: "VERSION";
|
|
2393
|
+
};
|
|
2394
|
+
export type ImageVersionSortBy =
|
|
2395
|
+
(typeof ImageVersionSortBy)[keyof typeof ImageVersionSortBy];
|
|
2396
|
+
export declare const ImageVersionSortOrder: {
|
|
2397
|
+
readonly ASCENDING: "ASCENDING";
|
|
2398
|
+
readonly DESCENDING: "DESCENDING";
|
|
2399
|
+
};
|
|
2400
|
+
export type ImageVersionSortOrder =
|
|
2401
|
+
(typeof ImageVersionSortOrder)[keyof typeof ImageVersionSortOrder];
|
|
2303
2402
|
export interface ImportHubContentRequest {
|
|
2304
2403
|
HubContentName: string | undefined;
|
|
2305
2404
|
HubContentVersion?: string;
|
|
@@ -2329,10 +2428,12 @@ export interface InferenceExperimentSummary {
|
|
|
2329
2428
|
LastModifiedTime: Date | undefined;
|
|
2330
2429
|
RoleArn?: string;
|
|
2331
2430
|
}
|
|
2332
|
-
export declare
|
|
2333
|
-
CANCELLED
|
|
2334
|
-
COMPLETED
|
|
2335
|
-
}
|
|
2431
|
+
export declare const InferenceExperimentStopDesiredState: {
|
|
2432
|
+
readonly CANCELLED: "Cancelled";
|
|
2433
|
+
readonly COMPLETED: "Completed";
|
|
2434
|
+
};
|
|
2435
|
+
export type InferenceExperimentStopDesiredState =
|
|
2436
|
+
(typeof InferenceExperimentStopDesiredState)[keyof typeof InferenceExperimentStopDesiredState];
|
|
2336
2437
|
export interface InferenceRecommendationsJob {
|
|
2337
2438
|
JobName: string | undefined;
|
|
2338
2439
|
JobDescription: string | undefined;
|
|
@@ -2352,9 +2453,11 @@ export interface RecommendationJobInferenceBenchmark {
|
|
|
2352
2453
|
FailureReason?: string;
|
|
2353
2454
|
EndpointMetrics?: InferenceMetrics;
|
|
2354
2455
|
}
|
|
2355
|
-
export declare
|
|
2356
|
-
BENCHMARK
|
|
2357
|
-
}
|
|
2456
|
+
export declare const RecommendationStepType: {
|
|
2457
|
+
readonly BENCHMARK: "BENCHMARK";
|
|
2458
|
+
};
|
|
2459
|
+
export type RecommendationStepType =
|
|
2460
|
+
(typeof RecommendationStepType)[keyof typeof RecommendationStepType];
|
|
2358
2461
|
export interface InferenceRecommendationsJobStep {
|
|
2359
2462
|
StepType: RecommendationStepType | string | undefined;
|
|
2360
2463
|
JobName: string | undefined;
|
|
@@ -2374,20 +2477,6 @@ export interface LabelingJobForWorkteamSummary {
|
|
|
2374
2477
|
LabelCounters?: LabelCountersForWorkteam;
|
|
2375
2478
|
NumberOfHumanWorkersPerDataObject?: number;
|
|
2376
2479
|
}
|
|
2377
|
-
export interface LabelingJobSummary {
|
|
2378
|
-
LabelingJobName: string | undefined;
|
|
2379
|
-
LabelingJobArn: string | undefined;
|
|
2380
|
-
CreationTime: Date | undefined;
|
|
2381
|
-
LastModifiedTime: Date | undefined;
|
|
2382
|
-
LabelingJobStatus: LabelingJobStatus | string | undefined;
|
|
2383
|
-
LabelCounters: LabelCounters | undefined;
|
|
2384
|
-
WorkteamArn: string | undefined;
|
|
2385
|
-
PreHumanTaskLambdaArn: string | undefined;
|
|
2386
|
-
AnnotationConsolidationLambdaArn?: string;
|
|
2387
|
-
FailureReason?: string;
|
|
2388
|
-
LabelingJobOutput?: LabelingJobOutput;
|
|
2389
|
-
InputConfig?: LabelingJobInputConfig;
|
|
2390
|
-
}
|
|
2391
2480
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2392
2481
|
obj: DescribeModelCardResponse
|
|
2393
2482
|
) => any;
|