@aws-sdk/client-sagemaker 3.863.0 → 3.866.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/README.md +16 -0
- package/dist-cjs/index.js +582 -392
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/DescribeReservedCapacityCommand.js +22 -0
- package/dist-es/commands/ListUltraServersByReservedCapacityCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +1 -13
- package/dist-es/models/models_1.js +13 -0
- package/dist-es/models/models_3.js +22 -33
- package/dist-es/models/models_4.js +21 -14
- package/dist-es/models/models_5.js +12 -1
- package/dist-es/pagination/ListUltraServersByReservedCapacityPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +140 -0
- package/dist-types/SageMaker.d.ts +14 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/AttachClusterNodeVolumeCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +12 -3
- package/dist-types/commands/CreateDomainCommand.d.ts +3 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +26 -8
- package/dist-types/commands/CreateModelBiasJobDefinitionCommand.d.ts +1 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +11 -2
- package/dist-types/commands/CreateTrainingPlanCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +12 -3
- package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +3 -0
- package/dist-types/commands/DescribeCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContextCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDomainCommand.d.ts +3 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +26 -8
- package/dist-types/commands/DescribeReservedCapacityCommand.d.ts +93 -0
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +11 -2
- package/dist-types/commands/DescribeTrainingPlanCommand.d.ts +7 -1
- package/dist-types/commands/DetachClusterNodeVolumeCommand.d.ts +1 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +3 -0
- package/dist-types/commands/ListTrainingPlansCommand.d.ts +5 -1
- package/dist-types/commands/ListUltraServersByReservedCapacityCommand.d.ts +92 -0
- package/dist-types/commands/ListWorkforcesCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +26 -8
- package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +7 -2
- package/dist-types/commands/UpdateDomainCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +71 -87
- package/dist-types/models/models_1.d.ts +94 -106
- package/dist-types/models/models_2.d.ts +115 -202
- package/dist-types/models/models_3.d.ts +463 -409
- package/dist-types/models/models_4.d.ts +414 -683
- package/dist-types/models/models_5.d.ts +718 -5
- package/dist-types/pagination/ListUltraServersByReservedCapacityPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/SageMaker.d.ts +40 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateModelBiasJobDefinitionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeComputeQuotaCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeContextCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeReservedCapacityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListUltraServersByReservedCapacityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -25
- package/dist-types/ts3.4/models/models_1.d.ts +31 -25
- package/dist-types/ts3.4/models/models_2.d.ts +28 -53
- package/dist-types/ts3.4/models/models_3.d.ts +119 -104
- package/dist-types/ts3.4/models/models_4.d.ts +123 -190
- package/dist-types/ts3.4/models/models_5.d.ts +187 -5
- package/dist-types/ts3.4/pagination/ListUltraServersByReservedCapacityPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +5 -5
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ActionSource,
|
|
3
3
|
ActionStatus,
|
|
4
|
-
ActivationState,
|
|
5
4
|
AdditionalInferenceSpecificationDefinition,
|
|
6
5
|
AlgorithmSpecification,
|
|
7
6
|
AlgorithmStatus,
|
|
@@ -44,7 +43,6 @@ import {
|
|
|
44
43
|
ClusterNodeRecovery,
|
|
45
44
|
ClusterOrchestrator,
|
|
46
45
|
ClusterRestrictedInstanceGroupDetails,
|
|
47
|
-
ClusterStatus,
|
|
48
46
|
CodeEditorAppImageConfig,
|
|
49
47
|
FeatureStatus,
|
|
50
48
|
InferenceSpecification,
|
|
@@ -72,32 +70,27 @@ import {
|
|
|
72
70
|
} from "./models_0";
|
|
73
71
|
import {
|
|
74
72
|
_InstanceType,
|
|
73
|
+
ClusterStatus,
|
|
75
74
|
CodeRepository,
|
|
76
75
|
CognitoConfig,
|
|
77
76
|
CognitoMemberDefinition,
|
|
78
77
|
CollectionConfiguration,
|
|
79
|
-
CompilationJobStatus,
|
|
80
|
-
ComputeQuotaConfig,
|
|
81
|
-
ComputeQuotaTarget,
|
|
82
78
|
DeviceSelectionConfig,
|
|
83
79
|
EdgeDeploymentConfig,
|
|
84
80
|
EndpointInput,
|
|
85
81
|
GitConfig,
|
|
86
82
|
HubContentType,
|
|
87
|
-
InputConfig,
|
|
88
83
|
JupyterServerAppSettings,
|
|
89
84
|
KernelGatewayAppSettings,
|
|
90
85
|
MetadataProperties,
|
|
86
|
+
ModelBiasAppSpecification,
|
|
91
87
|
ModelDeployConfig,
|
|
92
88
|
MonitoringConstraintsResource,
|
|
93
|
-
MonitoringGroundTruthS3Input,
|
|
94
89
|
MonitoringNetworkConfig,
|
|
95
90
|
MonitoringOutputConfig,
|
|
96
91
|
MonitoringResources,
|
|
97
92
|
MonitoringStatisticsResource,
|
|
98
93
|
MonitoringStoppingCondition,
|
|
99
|
-
NeoVpcConfig,
|
|
100
|
-
OutputConfig,
|
|
101
94
|
ProcessingInstanceType,
|
|
102
95
|
ProcessingS3UploadMode,
|
|
103
96
|
RetryStrategy,
|
|
@@ -105,6 +98,30 @@ import {
|
|
|
105
98
|
TrainingSpecification,
|
|
106
99
|
UserSettings,
|
|
107
100
|
} from "./models_1";
|
|
101
|
+
export interface ModelBiasBaselineConfig {
|
|
102
|
+
BaseliningJobName?: string | undefined;
|
|
103
|
+
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
104
|
+
}
|
|
105
|
+
export interface MonitoringGroundTruthS3Input {
|
|
106
|
+
S3Uri?: string | undefined;
|
|
107
|
+
}
|
|
108
|
+
export interface ModelBiasJobInput {
|
|
109
|
+
EndpointInput?: EndpointInput | undefined;
|
|
110
|
+
BatchTransformInput?: BatchTransformInput | undefined;
|
|
111
|
+
GroundTruthS3Input: MonitoringGroundTruthS3Input | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface CreateModelBiasJobDefinitionRequest {
|
|
114
|
+
JobDefinitionName: string | undefined;
|
|
115
|
+
ModelBiasBaselineConfig?: ModelBiasBaselineConfig | undefined;
|
|
116
|
+
ModelBiasAppSpecification: ModelBiasAppSpecification | undefined;
|
|
117
|
+
ModelBiasJobInput: ModelBiasJobInput | undefined;
|
|
118
|
+
ModelBiasJobOutputConfig: MonitoringOutputConfig | undefined;
|
|
119
|
+
JobResources: MonitoringResources | undefined;
|
|
120
|
+
NetworkConfig?: MonitoringNetworkConfig | undefined;
|
|
121
|
+
RoleArn: string | undefined;
|
|
122
|
+
StoppingCondition?: MonitoringStoppingCondition | undefined;
|
|
123
|
+
Tags?: Tag[] | undefined;
|
|
124
|
+
}
|
|
108
125
|
export interface CreateModelBiasJobDefinitionResponse {
|
|
109
126
|
JobDefinitionArn: string | undefined;
|
|
110
127
|
}
|
|
@@ -1005,6 +1022,7 @@ export interface CreateTrainingJobResponse {
|
|
|
1005
1022
|
export interface CreateTrainingPlanRequest {
|
|
1006
1023
|
TrainingPlanName: string | undefined;
|
|
1007
1024
|
TrainingPlanOfferingId: string | undefined;
|
|
1025
|
+
SpareInstanceCountPerUltraServer?: number | undefined;
|
|
1008
1026
|
Tags?: Tag[] | undefined;
|
|
1009
1027
|
}
|
|
1010
1028
|
export interface CreateTrainingPlanResponse {
|
|
@@ -1589,6 +1607,7 @@ export interface DescribeAppResponse {
|
|
|
1589
1607
|
UserProfileName?: string | undefined;
|
|
1590
1608
|
SpaceName?: string | undefined;
|
|
1591
1609
|
Status?: AppStatus | undefined;
|
|
1610
|
+
EffectiveTrustedIdentityPropagationStatus?: FeatureStatus | undefined;
|
|
1592
1611
|
RecoveryMode?: boolean | undefined;
|
|
1593
1612
|
LastHealthCheckTimestamp?: Date | undefined;
|
|
1594
1613
|
LastUserActivityTimestamp?: Date | undefined;
|
|
@@ -1758,50 +1777,6 @@ export interface ModelArtifacts {
|
|
|
1758
1777
|
export interface ModelDigests {
|
|
1759
1778
|
ArtifactDigest?: string | undefined;
|
|
1760
1779
|
}
|
|
1761
|
-
export interface DescribeCompilationJobResponse {
|
|
1762
|
-
CompilationJobName: string | undefined;
|
|
1763
|
-
CompilationJobArn: string | undefined;
|
|
1764
|
-
CompilationJobStatus: CompilationJobStatus | undefined;
|
|
1765
|
-
CompilationStartTime?: Date | undefined;
|
|
1766
|
-
CompilationEndTime?: Date | undefined;
|
|
1767
|
-
StoppingCondition: StoppingCondition | undefined;
|
|
1768
|
-
InferenceImage?: string | undefined;
|
|
1769
|
-
ModelPackageVersionArn?: string | undefined;
|
|
1770
|
-
CreationTime: Date | undefined;
|
|
1771
|
-
LastModifiedTime: Date | undefined;
|
|
1772
|
-
FailureReason: string | undefined;
|
|
1773
|
-
ModelArtifacts: ModelArtifacts | undefined;
|
|
1774
|
-
ModelDigests?: ModelDigests | undefined;
|
|
1775
|
-
RoleArn: string | undefined;
|
|
1776
|
-
InputConfig: InputConfig | undefined;
|
|
1777
|
-
OutputConfig: OutputConfig | undefined;
|
|
1778
|
-
VpcConfig?: NeoVpcConfig | undefined;
|
|
1779
|
-
DerivedInformation?: DerivedInformation | undefined;
|
|
1780
|
-
}
|
|
1781
|
-
export interface DescribeComputeQuotaRequest {
|
|
1782
|
-
ComputeQuotaId: string | undefined;
|
|
1783
|
-
ComputeQuotaVersion?: number | undefined;
|
|
1784
|
-
}
|
|
1785
|
-
export interface DescribeComputeQuotaResponse {
|
|
1786
|
-
ComputeQuotaArn: string | undefined;
|
|
1787
|
-
ComputeQuotaId: string | undefined;
|
|
1788
|
-
Name: string | undefined;
|
|
1789
|
-
Description?: string | undefined;
|
|
1790
|
-
ComputeQuotaVersion: number | undefined;
|
|
1791
|
-
Status: SchedulerResourceStatus | undefined;
|
|
1792
|
-
FailureReason?: string | undefined;
|
|
1793
|
-
ClusterArn?: string | undefined;
|
|
1794
|
-
ComputeQuotaConfig?: ComputeQuotaConfig | undefined;
|
|
1795
|
-
ComputeQuotaTarget: ComputeQuotaTarget | undefined;
|
|
1796
|
-
ActivationState?: ActivationState | undefined;
|
|
1797
|
-
CreationTime: Date | undefined;
|
|
1798
|
-
CreatedBy?: UserContext | undefined;
|
|
1799
|
-
LastModifiedTime?: Date | undefined;
|
|
1800
|
-
LastModifiedBy?: UserContext | undefined;
|
|
1801
|
-
}
|
|
1802
|
-
export interface DescribeContextRequest {
|
|
1803
|
-
ContextName: string | undefined;
|
|
1804
|
-
}
|
|
1805
1780
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1806
1781
|
obj: CreateModelCardRequest
|
|
1807
1782
|
) => any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ActivationState,
|
|
2
3
|
AdditionalInferenceSpecificationDefinition,
|
|
3
4
|
AgentVersion,
|
|
4
5
|
AlgorithmSpecification,
|
|
@@ -25,6 +26,7 @@ import {
|
|
|
25
26
|
ProductionVariantInstanceType,
|
|
26
27
|
ResourceConfig,
|
|
27
28
|
ResourceSpec,
|
|
29
|
+
SchedulerResourceStatus,
|
|
28
30
|
StoppingCondition,
|
|
29
31
|
Tag,
|
|
30
32
|
TransformInput,
|
|
@@ -37,6 +39,9 @@ import {
|
|
|
37
39
|
import {
|
|
38
40
|
_InstanceType,
|
|
39
41
|
CognitoConfig,
|
|
42
|
+
CompilationJobStatus,
|
|
43
|
+
ComputeQuotaConfig,
|
|
44
|
+
ComputeQuotaTarget,
|
|
40
45
|
ContainerDefinition,
|
|
41
46
|
ContextSource,
|
|
42
47
|
DataCaptureConfig,
|
|
@@ -65,7 +70,6 @@ import {
|
|
|
65
70
|
HyperParameterTrainingJobDefinition,
|
|
66
71
|
HyperParameterTuningJobConfig,
|
|
67
72
|
HyperParameterTuningJobObjectiveType,
|
|
68
|
-
HyperParameterTuningJobStrategyType,
|
|
69
73
|
HyperParameterTuningJobWarmStartConfig,
|
|
70
74
|
InferenceComponentComputeResourceRequirements,
|
|
71
75
|
InferenceComponentStartupParameters,
|
|
@@ -73,6 +77,7 @@ import {
|
|
|
73
77
|
InferenceExperimentDataStorageConfig,
|
|
74
78
|
InferenceExperimentSchedule,
|
|
75
79
|
InferenceExperimentType,
|
|
80
|
+
InputConfig,
|
|
76
81
|
JobType,
|
|
77
82
|
LabelingJobAlgorithmsConfig,
|
|
78
83
|
LabelingJobInputConfig,
|
|
@@ -80,15 +85,15 @@ import {
|
|
|
80
85
|
LabelingJobStoppingConditions,
|
|
81
86
|
MetadataProperties,
|
|
82
87
|
ModelBiasAppSpecification,
|
|
83
|
-
ModelBiasBaselineConfig,
|
|
84
|
-
ModelBiasJobInput,
|
|
85
88
|
ModelInfrastructureConfig,
|
|
86
89
|
MonitoringNetworkConfig,
|
|
87
90
|
MonitoringOutputConfig,
|
|
88
91
|
MonitoringResources,
|
|
89
92
|
MonitoringStoppingCondition,
|
|
93
|
+
NeoVpcConfig,
|
|
90
94
|
OfflineStoreConfig,
|
|
91
95
|
OnlineStoreConfig,
|
|
96
|
+
OutputConfig,
|
|
92
97
|
Processor,
|
|
93
98
|
ProductionVariant,
|
|
94
99
|
ProductionVariantAcceleratorType,
|
|
@@ -98,12 +103,12 @@ import {
|
|
|
98
103
|
RecommendationJobInputConfig,
|
|
99
104
|
RecommendationJobStoppingConditions,
|
|
100
105
|
RecommendationJobType,
|
|
101
|
-
ResourceLimits,
|
|
102
106
|
RetryStrategy,
|
|
103
107
|
ShadowModeConfig,
|
|
104
108
|
TagPropagation,
|
|
105
109
|
ThroughputMode,
|
|
106
110
|
TrackingServerSize,
|
|
111
|
+
TrustedIdentityPropagationSettings,
|
|
107
112
|
UnifiedStudioSettings,
|
|
108
113
|
UserSettings,
|
|
109
114
|
VendorGuidance,
|
|
@@ -118,6 +123,7 @@ import {
|
|
|
118
123
|
DeployedImage,
|
|
119
124
|
DeploymentRecommendation,
|
|
120
125
|
DeploymentStageStatusSummary,
|
|
126
|
+
DerivedInformation,
|
|
121
127
|
DirectInternetAccess,
|
|
122
128
|
DriftCheckBaselines,
|
|
123
129
|
ExperimentConfig,
|
|
@@ -125,10 +131,13 @@ import {
|
|
|
125
131
|
InstanceMetadataServiceConfiguration,
|
|
126
132
|
MemberDefinition,
|
|
127
133
|
ModelArtifacts,
|
|
134
|
+
ModelBiasBaselineConfig,
|
|
135
|
+
ModelBiasJobInput,
|
|
128
136
|
ModelCardExportOutputConfig,
|
|
129
137
|
ModelCardSecurityConfig,
|
|
130
138
|
ModelCardStatus,
|
|
131
139
|
ModelClientConfig,
|
|
140
|
+
ModelDigests,
|
|
132
141
|
ModelExplainabilityAppSpecification,
|
|
133
142
|
ModelExplainabilityBaselineConfig,
|
|
134
143
|
ModelExplainabilityJobInput,
|
|
@@ -180,6 +189,50 @@ import {
|
|
|
180
189
|
WorkerAccessConfiguration,
|
|
181
190
|
WorkforceIpAddressType,
|
|
182
191
|
} from "./models_2";
|
|
192
|
+
export interface DescribeCompilationJobResponse {
|
|
193
|
+
CompilationJobName: string | undefined;
|
|
194
|
+
CompilationJobArn: string | undefined;
|
|
195
|
+
CompilationJobStatus: CompilationJobStatus | undefined;
|
|
196
|
+
CompilationStartTime?: Date | undefined;
|
|
197
|
+
CompilationEndTime?: Date | undefined;
|
|
198
|
+
StoppingCondition: StoppingCondition | undefined;
|
|
199
|
+
InferenceImage?: string | undefined;
|
|
200
|
+
ModelPackageVersionArn?: string | undefined;
|
|
201
|
+
CreationTime: Date | undefined;
|
|
202
|
+
LastModifiedTime: Date | undefined;
|
|
203
|
+
FailureReason: string | undefined;
|
|
204
|
+
ModelArtifacts: ModelArtifacts | undefined;
|
|
205
|
+
ModelDigests?: ModelDigests | undefined;
|
|
206
|
+
RoleArn: string | undefined;
|
|
207
|
+
InputConfig: InputConfig | undefined;
|
|
208
|
+
OutputConfig: OutputConfig | undefined;
|
|
209
|
+
VpcConfig?: NeoVpcConfig | undefined;
|
|
210
|
+
DerivedInformation?: DerivedInformation | undefined;
|
|
211
|
+
}
|
|
212
|
+
export interface DescribeComputeQuotaRequest {
|
|
213
|
+
ComputeQuotaId: string | undefined;
|
|
214
|
+
ComputeQuotaVersion?: number | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface DescribeComputeQuotaResponse {
|
|
217
|
+
ComputeQuotaArn: string | undefined;
|
|
218
|
+
ComputeQuotaId: string | undefined;
|
|
219
|
+
Name: string | undefined;
|
|
220
|
+
Description?: string | undefined;
|
|
221
|
+
ComputeQuotaVersion: number | undefined;
|
|
222
|
+
Status: SchedulerResourceStatus | undefined;
|
|
223
|
+
FailureReason?: string | undefined;
|
|
224
|
+
ClusterArn?: string | undefined;
|
|
225
|
+
ComputeQuotaConfig?: ComputeQuotaConfig | undefined;
|
|
226
|
+
ComputeQuotaTarget: ComputeQuotaTarget | undefined;
|
|
227
|
+
ActivationState?: ActivationState | undefined;
|
|
228
|
+
CreationTime: Date | undefined;
|
|
229
|
+
CreatedBy?: UserContext | undefined;
|
|
230
|
+
LastModifiedTime?: Date | undefined;
|
|
231
|
+
LastModifiedBy?: UserContext | undefined;
|
|
232
|
+
}
|
|
233
|
+
export interface DescribeContextRequest {
|
|
234
|
+
ContextName: string | undefined;
|
|
235
|
+
}
|
|
183
236
|
export interface DescribeContextResponse {
|
|
184
237
|
ContextName?: string | undefined;
|
|
185
238
|
ContextArn?: string | undefined;
|
|
@@ -1624,6 +1677,59 @@ export interface DescribeProjectOutput {
|
|
|
1624
1677
|
LastModifiedTime?: Date | undefined;
|
|
1625
1678
|
LastModifiedBy?: UserContext | undefined;
|
|
1626
1679
|
}
|
|
1680
|
+
export interface DescribeReservedCapacityRequest {
|
|
1681
|
+
ReservedCapacityArn: string | undefined;
|
|
1682
|
+
}
|
|
1683
|
+
export declare const ReservedCapacityInstanceType: {
|
|
1684
|
+
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
1685
|
+
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
1686
|
+
readonly ML_P5EN_48XLARGE: "ml.p5en.48xlarge";
|
|
1687
|
+
readonly ML_P5E_48XLARGE: "ml.p5e.48xlarge";
|
|
1688
|
+
readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
|
|
1689
|
+
readonly ML_P6E_GB200_36XLARGE: "ml.p6e-gb200.36xlarge";
|
|
1690
|
+
readonly ML_P6_B200_48XLARGE: "ml.p6-b200.48xlarge";
|
|
1691
|
+
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
1692
|
+
readonly ML_TRN2_48XLARGE: "ml.trn2.48xlarge";
|
|
1693
|
+
};
|
|
1694
|
+
export type ReservedCapacityInstanceType =
|
|
1695
|
+
(typeof ReservedCapacityInstanceType)[keyof typeof ReservedCapacityInstanceType];
|
|
1696
|
+
export declare const ReservedCapacityType: {
|
|
1697
|
+
readonly INSTANCE: "Instance";
|
|
1698
|
+
readonly ULTRASERVER: "UltraServer";
|
|
1699
|
+
};
|
|
1700
|
+
export type ReservedCapacityType =
|
|
1701
|
+
(typeof ReservedCapacityType)[keyof typeof ReservedCapacityType];
|
|
1702
|
+
export declare const ReservedCapacityStatus: {
|
|
1703
|
+
readonly ACTIVE: "Active";
|
|
1704
|
+
readonly EXPIRED: "Expired";
|
|
1705
|
+
readonly FAILED: "Failed";
|
|
1706
|
+
readonly PENDING: "Pending";
|
|
1707
|
+
readonly SCHEDULED: "Scheduled";
|
|
1708
|
+
};
|
|
1709
|
+
export type ReservedCapacityStatus =
|
|
1710
|
+
(typeof ReservedCapacityStatus)[keyof typeof ReservedCapacityStatus];
|
|
1711
|
+
export interface UltraServerSummary {
|
|
1712
|
+
UltraServerType: string | undefined;
|
|
1713
|
+
InstanceType: ReservedCapacityInstanceType | undefined;
|
|
1714
|
+
UltraServerCount?: number | undefined;
|
|
1715
|
+
AvailableSpareInstanceCount?: number | undefined;
|
|
1716
|
+
UnhealthyInstanceCount?: number | undefined;
|
|
1717
|
+
}
|
|
1718
|
+
export interface DescribeReservedCapacityResponse {
|
|
1719
|
+
ReservedCapacityArn: string | undefined;
|
|
1720
|
+
ReservedCapacityType?: ReservedCapacityType | undefined;
|
|
1721
|
+
Status?: ReservedCapacityStatus | undefined;
|
|
1722
|
+
AvailabilityZone?: string | undefined;
|
|
1723
|
+
DurationHours?: number | undefined;
|
|
1724
|
+
DurationMinutes?: number | undefined;
|
|
1725
|
+
StartTime?: Date | undefined;
|
|
1726
|
+
EndTime?: Date | undefined;
|
|
1727
|
+
InstanceType: ReservedCapacityInstanceType | undefined;
|
|
1728
|
+
TotalInstanceCount: number | undefined;
|
|
1729
|
+
AvailableInstanceCount?: number | undefined;
|
|
1730
|
+
InUseInstanceCount?: number | undefined;
|
|
1731
|
+
UltraServerSummary?: UltraServerSummary | undefined;
|
|
1732
|
+
}
|
|
1627
1733
|
export interface DescribeSpaceRequest {
|
|
1628
1734
|
DomainId: string | undefined;
|
|
1629
1735
|
SpaceName: string | undefined;
|
|
@@ -1786,29 +1892,11 @@ export interface DescribeTrainingJobResponse {
|
|
|
1786
1892
|
export interface DescribeTrainingPlanRequest {
|
|
1787
1893
|
TrainingPlanName: string | undefined;
|
|
1788
1894
|
}
|
|
1789
|
-
export declare const ReservedCapacityInstanceType: {
|
|
1790
|
-
readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
|
|
1791
|
-
readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
|
|
1792
|
-
readonly ML_P5EN_48XLARGE: "ml.p5en.48xlarge";
|
|
1793
|
-
readonly ML_P5E_48XLARGE: "ml.p5e.48xlarge";
|
|
1794
|
-
readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
|
|
1795
|
-
readonly ML_P6_B200_48XLARGE: "ml.p6-b200.48xlarge";
|
|
1796
|
-
readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
|
|
1797
|
-
readonly ML_TRN2_48XLARGE: "ml.trn2.48xlarge";
|
|
1798
|
-
};
|
|
1799
|
-
export type ReservedCapacityInstanceType =
|
|
1800
|
-
(typeof ReservedCapacityInstanceType)[keyof typeof ReservedCapacityInstanceType];
|
|
1801
|
-
export declare const ReservedCapacityStatus: {
|
|
1802
|
-
readonly ACTIVE: "Active";
|
|
1803
|
-
readonly EXPIRED: "Expired";
|
|
1804
|
-
readonly FAILED: "Failed";
|
|
1805
|
-
readonly PENDING: "Pending";
|
|
1806
|
-
readonly SCHEDULED: "Scheduled";
|
|
1807
|
-
};
|
|
1808
|
-
export type ReservedCapacityStatus =
|
|
1809
|
-
(typeof ReservedCapacityStatus)[keyof typeof ReservedCapacityStatus];
|
|
1810
1895
|
export interface ReservedCapacitySummary {
|
|
1811
1896
|
ReservedCapacityArn: string | undefined;
|
|
1897
|
+
ReservedCapacityType?: ReservedCapacityType | undefined;
|
|
1898
|
+
UltraServerType?: string | undefined;
|
|
1899
|
+
UltraServerCount?: number | undefined;
|
|
1812
1900
|
InstanceType: ReservedCapacityInstanceType | undefined;
|
|
1813
1901
|
TotalInstanceCount: number | undefined;
|
|
1814
1902
|
Status: ReservedCapacityStatus | undefined;
|
|
@@ -1847,6 +1935,9 @@ export interface DescribeTrainingPlanResponse {
|
|
|
1847
1935
|
TotalInstanceCount?: number | undefined;
|
|
1848
1936
|
AvailableInstanceCount?: number | undefined;
|
|
1849
1937
|
InUseInstanceCount?: number | undefined;
|
|
1938
|
+
UnhealthyInstanceCount?: number | undefined;
|
|
1939
|
+
AvailableSpareInstanceCount?: number | undefined;
|
|
1940
|
+
TotalUltraServerCount?: number | undefined;
|
|
1850
1941
|
TargetResources?: SageMakerResourceName[] | undefined;
|
|
1851
1942
|
ReservedCapacitySummaries?: ReservedCapacitySummary[] | undefined;
|
|
1852
1943
|
}
|
|
@@ -2148,6 +2239,9 @@ export interface DomainSettingsForUpdate {
|
|
|
2148
2239
|
| undefined;
|
|
2149
2240
|
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | undefined;
|
|
2150
2241
|
SecurityGroupIds?: string[] | undefined;
|
|
2242
|
+
TrustedIdentityPropagationSettings?:
|
|
2243
|
+
| TrustedIdentityPropagationSettings
|
|
2244
|
+
| undefined;
|
|
2151
2245
|
DockerSettings?: DockerSettings | undefined;
|
|
2152
2246
|
AmazonQSettings?: AmazonQSettings | undefined;
|
|
2153
2247
|
UnifiedStudioSettings?: UnifiedStudioSettings | undefined;
|
|
@@ -2533,85 +2627,6 @@ export declare const HubContentSortBy: {
|
|
|
2533
2627
|
};
|
|
2534
2628
|
export type HubContentSortBy =
|
|
2535
2629
|
(typeof HubContentSortBy)[keyof typeof HubContentSortBy];
|
|
2536
|
-
export interface HubInfo {
|
|
2537
|
-
HubName: string | undefined;
|
|
2538
|
-
HubArn: string | undefined;
|
|
2539
|
-
HubDisplayName?: string | undefined;
|
|
2540
|
-
HubDescription?: string | undefined;
|
|
2541
|
-
HubSearchKeywords?: string[] | undefined;
|
|
2542
|
-
HubStatus: HubStatus | undefined;
|
|
2543
|
-
CreationTime: Date | undefined;
|
|
2544
|
-
LastModifiedTime: Date | undefined;
|
|
2545
|
-
}
|
|
2546
|
-
export declare const HubSortBy: {
|
|
2547
|
-
readonly ACCOUNT_ID_OWNER: "AccountIdOwner";
|
|
2548
|
-
readonly CREATION_TIME: "CreationTime";
|
|
2549
|
-
readonly HUB_NAME: "HubName";
|
|
2550
|
-
readonly HUB_STATUS: "HubStatus";
|
|
2551
|
-
};
|
|
2552
|
-
export type HubSortBy = (typeof HubSortBy)[keyof typeof HubSortBy];
|
|
2553
|
-
export interface HumanTaskUiSummary {
|
|
2554
|
-
HumanTaskUiName: string | undefined;
|
|
2555
|
-
HumanTaskUiArn: string | undefined;
|
|
2556
|
-
CreationTime: Date | undefined;
|
|
2557
|
-
}
|
|
2558
|
-
export interface HyperParameterTuningJobSearchEntity {
|
|
2559
|
-
HyperParameterTuningJobName?: string | undefined;
|
|
2560
|
-
HyperParameterTuningJobArn?: string | undefined;
|
|
2561
|
-
HyperParameterTuningJobConfig?: HyperParameterTuningJobConfig | undefined;
|
|
2562
|
-
TrainingJobDefinition?: HyperParameterTrainingJobDefinition | undefined;
|
|
2563
|
-
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[] | undefined;
|
|
2564
|
-
HyperParameterTuningJobStatus?: HyperParameterTuningJobStatus | undefined;
|
|
2565
|
-
CreationTime?: Date | undefined;
|
|
2566
|
-
HyperParameterTuningEndTime?: Date | undefined;
|
|
2567
|
-
LastModifiedTime?: Date | undefined;
|
|
2568
|
-
TrainingJobStatusCounters?: TrainingJobStatusCounters | undefined;
|
|
2569
|
-
ObjectiveStatusCounters?: ObjectiveStatusCounters | undefined;
|
|
2570
|
-
BestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
|
|
2571
|
-
OverallBestTrainingJob?: HyperParameterTrainingJobSummary | undefined;
|
|
2572
|
-
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig | undefined;
|
|
2573
|
-
FailureReason?: string | undefined;
|
|
2574
|
-
TuningJobCompletionDetails?:
|
|
2575
|
-
| HyperParameterTuningJobCompletionDetails
|
|
2576
|
-
| undefined;
|
|
2577
|
-
ConsumedResources?: HyperParameterTuningJobConsumedResources | undefined;
|
|
2578
|
-
Tags?: Tag[] | undefined;
|
|
2579
|
-
}
|
|
2580
|
-
export declare const HyperParameterTuningJobSortByOptions: {
|
|
2581
|
-
readonly CreationTime: "CreationTime";
|
|
2582
|
-
readonly Name: "Name";
|
|
2583
|
-
readonly Status: "Status";
|
|
2584
|
-
};
|
|
2585
|
-
export type HyperParameterTuningJobSortByOptions =
|
|
2586
|
-
(typeof HyperParameterTuningJobSortByOptions)[keyof typeof HyperParameterTuningJobSortByOptions];
|
|
2587
|
-
export interface HyperParameterTuningJobSummary {
|
|
2588
|
-
HyperParameterTuningJobName: string | undefined;
|
|
2589
|
-
HyperParameterTuningJobArn: string | undefined;
|
|
2590
|
-
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
|
|
2591
|
-
Strategy: HyperParameterTuningJobStrategyType | undefined;
|
|
2592
|
-
CreationTime: Date | undefined;
|
|
2593
|
-
HyperParameterTuningEndTime?: Date | undefined;
|
|
2594
|
-
LastModifiedTime?: Date | undefined;
|
|
2595
|
-
TrainingJobStatusCounters: TrainingJobStatusCounters | undefined;
|
|
2596
|
-
ObjectiveStatusCounters: ObjectiveStatusCounters | undefined;
|
|
2597
|
-
ResourceLimits?: ResourceLimits | undefined;
|
|
2598
|
-
}
|
|
2599
|
-
export interface Image {
|
|
2600
|
-
CreationTime: Date | undefined;
|
|
2601
|
-
Description?: string | undefined;
|
|
2602
|
-
DisplayName?: string | undefined;
|
|
2603
|
-
FailureReason?: string | undefined;
|
|
2604
|
-
ImageArn: string | undefined;
|
|
2605
|
-
ImageName: string | undefined;
|
|
2606
|
-
ImageStatus: ImageStatus | undefined;
|
|
2607
|
-
LastModifiedTime: Date | undefined;
|
|
2608
|
-
}
|
|
2609
|
-
export declare const ImageSortBy: {
|
|
2610
|
-
readonly CREATION_TIME: "CREATION_TIME";
|
|
2611
|
-
readonly IMAGE_NAME: "IMAGE_NAME";
|
|
2612
|
-
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
2613
|
-
};
|
|
2614
|
-
export type ImageSortBy = (typeof ImageSortBy)[keyof typeof ImageSortBy];
|
|
2615
2630
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2616
2631
|
obj: DescribeModelCardResponse
|
|
2617
2632
|
) => any;
|