@aws-sdk/client-sagemaker 3.461.0 → 3.462.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.
Files changed (181) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/SageMaker.js +26 -0
  3. package/dist-cjs/commands/CreateClusterCommand.js +51 -0
  4. package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
  5. package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
  8. package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
  9. package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
  10. package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
  11. package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +51 -0
  13. package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
  15. package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
  16. package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
  17. package/dist-cjs/commands/index.js +13 -0
  18. package/dist-cjs/models/models_0.js +62 -51
  19. package/dist-cjs/models/models_1.js +63 -30
  20. package/dist-cjs/models/models_2.js +37 -39
  21. package/dist-cjs/models/models_3.js +45 -44
  22. package/dist-cjs/models/models_4.js +45 -3
  23. package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
  24. package/dist-cjs/pagination/index.js +1 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +845 -13
  26. package/dist-es/SageMaker.js +26 -0
  27. package/dist-es/commands/CreateClusterCommand.js +47 -0
  28. package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
  29. package/dist-es/commands/CreateWorkforceCommand.js +1 -1
  30. package/dist-es/commands/DeleteClusterCommand.js +47 -0
  31. package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
  32. package/dist-es/commands/DescribeClusterCommand.js +47 -0
  33. package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
  34. package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
  35. package/dist-es/commands/ListClusterNodesCommand.js +47 -0
  36. package/dist-es/commands/ListClustersCommand.js +47 -0
  37. package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
  38. package/dist-es/commands/UpdateClusterCommand.js +47 -0
  39. package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
  40. package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
  41. package/dist-es/commands/index.js +13 -0
  42. package/dist-es/models/models_0.js +60 -50
  43. package/dist-es/models/models_1.js +62 -27
  44. package/dist-es/models/models_2.js +34 -38
  45. package/dist-es/models/models_3.js +43 -42
  46. package/dist-es/models/models_4.js +43 -1
  47. package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
  48. package/dist-es/pagination/index.js +1 -0
  49. package/dist-es/protocols/Aws_json1_1.js +807 -1
  50. package/dist-types/SageMaker.d.ts +91 -0
  51. package/dist-types/SageMakerClient.d.ts +15 -2
  52. package/dist-types/commands/AddTagsCommand.d.ts +1 -1
  53. package/dist-types/commands/CreateAppCommand.d.ts +2 -1
  54. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
  55. package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
  56. package/dist-types/commands/CreateDomainCommand.d.ts +15 -8
  57. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
  58. package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
  59. package/dist-types/commands/CreateModelCommand.d.ts +1 -1
  60. package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
  61. package/dist-types/commands/CreateSpaceCommand.d.ts +2 -0
  62. package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -0
  64. package/dist-types/commands/CreateUserProfileCommand.d.ts +9 -2
  65. package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
  66. package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
  67. package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
  68. package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
  69. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  70. package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  71. package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
  72. package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
  73. package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
  74. package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
  75. package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
  76. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  77. package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
  78. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
  79. package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
  80. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
  81. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
  83. package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
  84. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
  85. package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
  86. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  87. package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
  88. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -0
  89. package/dist-types/commands/DescribeUserProfileCommand.d.ts +8 -1
  90. package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
  91. package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
  92. package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  93. package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  94. package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  95. package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
  96. package/dist-types/commands/ListClustersCommand.d.ts +87 -0
  97. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
  98. package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
  100. package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
  101. package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +2 -2
  102. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  104. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  105. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  106. package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
  107. package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
  108. package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
  109. package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
  110. package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
  111. package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
  112. package/dist-types/commands/SearchCommand.d.ts +16 -0
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
  114. package/dist-types/commands/UpdateDomainCommand.d.ts +11 -0
  115. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
  116. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
  117. package/dist-types/commands/UpdateSpaceCommand.d.ts +2 -0
  118. package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
  119. package/dist-types/commands/index.d.ts +13 -0
  120. package/dist-types/models/models_0.d.ts +409 -345
  121. package/dist-types/models/models_1.d.ts +708 -551
  122. package/dist-types/models/models_2.d.ts +5059 -5239
  123. package/dist-types/models/models_3.d.ts +4732 -4693
  124. package/dist-types/models/models_4.d.ts +1446 -4
  125. package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/index.d.ts +1 -0
  127. package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
  128. package/dist-types/ts3.4/SageMaker.d.ts +227 -0
  129. package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
  130. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
  131. package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +2 -4
  133. package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
  134. package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
  135. package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
  136. package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
  137. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  139. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
  142. package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
  143. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
  144. package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
  145. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
  146. package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +2 -4
  147. package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
  153. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
  154. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
  155. package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
  156. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
  170. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
  171. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
  172. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  173. package/dist-types/ts3.4/models/models_0.d.ts +124 -111
  174. package/dist-types/ts3.4/models/models_1.d.ts +188 -151
  175. package/dist-types/ts3.4/models/models_2.d.ts +227 -288
  176. package/dist-types/ts3.4/models/models_3.d.ts +349 -344
  177. package/dist-types/ts3.4/models/models_4.d.ts +372 -15
  178. package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  180. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
  181. package/package.json +2 -2
@@ -12,7 +12,6 @@ import {
12
12
  AppStatus,
13
13
  AppType,
14
14
  ArtifactSource,
15
- AssociationEdgeType,
16
15
  AsyncInferenceConfig,
17
16
  AuthMode,
18
17
  AutoMLCandidate,
@@ -34,15 +33,17 @@ import {
34
33
  Autotune,
35
34
  BatchDataCaptureConfig,
36
35
  BatchStrategy,
36
+ CaptureStatus,
37
37
  Channel,
38
38
  CheckpointConfig,
39
+ ClusterInstanceGroupDetails,
40
+ ClusterNodeDetails,
41
+ ClusterStatus,
39
42
  CognitoConfig,
43
+ CognitoMemberDefinition,
40
44
  CompilationJobStatus,
41
45
  ContainerDefinition,
42
46
  ContextSource,
43
- DataQualityAppSpecification,
44
- DataQualityBaselineConfig,
45
- DataQualityJobInput,
46
47
  GitConfig,
47
48
  HyperParameterTuningJobObjectiveType,
48
49
  InferenceSpecification,
@@ -52,8 +53,6 @@ import {
52
53
  ModelApprovalStatus,
53
54
  ModelDeployConfig,
54
55
  ModelPackageStatus,
55
- MonitoringOutputConfig,
56
- MonitoringResources,
57
56
  NeoVpcConfig,
58
57
  ObjectiveStatus,
59
58
  OutputConfig,
@@ -73,13 +72,13 @@ import {
73
72
  } from "./models_0";
74
73
  import {
75
74
  _InstanceType,
76
- CustomizedMetricSpecification,
77
75
  DataCaptureConfig,
78
- DataCaptureConfigSummary,
79
76
  DataProcessing,
77
+ DataQualityAppSpecification,
78
+ DataQualityBaselineConfig,
79
+ DataQualityJobInput,
80
80
  DebugHookConfig,
81
81
  DebugRuleConfiguration,
82
- DebugRuleEvaluationStatus,
83
82
  DefaultSpaceSettings,
84
83
  DeploymentConfig,
85
84
  DeviceSelectionConfig,
@@ -91,7 +90,6 @@ import {
91
90
  EdgeOutputConfig,
92
91
  EdgePresetDeploymentType,
93
92
  EndpointInfo,
94
- ExecutionRoleIdentityConfig,
95
93
  ExperimentConfig,
96
94
  ExplainerConfig,
97
95
  FeatureDefinition,
@@ -105,17 +103,19 @@ import {
105
103
  HyperParameterTrainingJobDefinition,
106
104
  HyperParameterTuningJobConfig,
107
105
  HyperParameterTuningJobWarmStartConfig,
106
+ InferenceComponentComputeResourceRequirements,
107
+ InferenceComponentStartupParameters,
108
108
  InferenceExecutionConfig,
109
109
  InferenceExperimentDataStorageConfig,
110
110
  InferenceExperimentSchedule,
111
111
  InferenceExperimentType,
112
+ InfraCheckConfig,
112
113
  InstanceMetadataServiceConfiguration,
113
114
  JobType,
114
115
  LabelingJobAlgorithmsConfig,
115
116
  LabelingJobInputConfig,
116
117
  LabelingJobOutputConfig,
117
118
  LabelingJobStoppingConditions,
118
- MemberDefinition,
119
119
  ModelBiasAppSpecification,
120
120
  ModelBiasBaselineConfig,
121
121
  ModelBiasJobInput,
@@ -133,13 +133,14 @@ import {
133
133
  ModelQualityBaselineConfig,
134
134
  ModelQualityJobInput,
135
135
  MonitoringNetworkConfig,
136
+ MonitoringOutputConfig,
137
+ MonitoringResources,
136
138
  MonitoringScheduleConfig,
137
139
  MonitoringStoppingCondition,
138
140
  MonitoringType,
139
141
  NetworkConfig,
140
142
  NotebookInstanceAcceleratorType,
141
143
  NotebookInstanceLifecycleHook,
142
- NotificationConfiguration,
143
144
  OfflineStoreConfig,
144
145
  OnlineStoreConfig,
145
146
  ParallelismConfiguration,
@@ -150,6 +151,8 @@ import {
150
151
  Processor,
151
152
  ProductionVariant,
152
153
  ProductionVariantAcceleratorType,
154
+ ProductionVariantManagedInstanceScaling,
155
+ ProductionVariantRoutingConfig,
153
156
  ProductionVariantServerlessConfig,
154
157
  ProfilerConfig,
155
158
  ProfilerRuleConfiguration,
@@ -158,12 +161,10 @@ import {
158
161
  RecommendationJobType,
159
162
  RetryStrategy,
160
163
  RootAccess,
161
- RuleEvaluationStatus,
162
164
  ServiceCatalogProvisioningDetails,
163
165
  ShadowModeConfig,
164
166
  SkipModelValidation,
165
167
  SourceAlgorithmSpecification,
166
- SourceIpConfig,
167
168
  SpaceSettings,
168
169
  StudioLifecycleConfigAppType,
169
170
  TensorBoardOutputConfig,
@@ -173,6 +174,142 @@ import {
173
174
  UserSettings,
174
175
  VendorGuidance,
175
176
  } from "./models_1";
177
+ export interface CreateUserProfileResponse {
178
+ UserProfileArn?: string;
179
+ }
180
+ export interface OidcConfig {
181
+ ClientId: string | undefined;
182
+ ClientSecret: string | undefined;
183
+ Issuer: string | undefined;
184
+ AuthorizationEndpoint: string | undefined;
185
+ TokenEndpoint: string | undefined;
186
+ UserInfoEndpoint: string | undefined;
187
+ LogoutEndpoint: string | undefined;
188
+ JwksUri: string | undefined;
189
+ }
190
+ export interface SourceIpConfig {
191
+ Cidrs: string[] | undefined;
192
+ }
193
+ export interface WorkforceVpcConfigRequest {
194
+ VpcId?: string;
195
+ SecurityGroupIds?: string[];
196
+ Subnets?: string[];
197
+ }
198
+ export interface CreateWorkforceRequest {
199
+ CognitoConfig?: CognitoConfig;
200
+ OidcConfig?: OidcConfig;
201
+ SourceIpConfig?: SourceIpConfig;
202
+ WorkforceName: string | undefined;
203
+ Tags?: Tag[];
204
+ WorkforceVpcConfig?: WorkforceVpcConfigRequest;
205
+ }
206
+ export interface CreateWorkforceResponse {
207
+ WorkforceArn: string | undefined;
208
+ }
209
+ export interface OidcMemberDefinition {
210
+ Groups: string[] | undefined;
211
+ }
212
+ export interface MemberDefinition {
213
+ CognitoMemberDefinition?: CognitoMemberDefinition;
214
+ OidcMemberDefinition?: OidcMemberDefinition;
215
+ }
216
+ export interface NotificationConfiguration {
217
+ NotificationTopicArn?: string;
218
+ }
219
+ export interface CreateWorkteamRequest {
220
+ WorkteamName: string | undefined;
221
+ WorkforceName?: string;
222
+ MemberDefinitions: MemberDefinition[] | undefined;
223
+ Description: string | undefined;
224
+ NotificationConfiguration?: NotificationConfiguration;
225
+ Tags?: Tag[];
226
+ }
227
+ export interface CreateWorkteamResponse {
228
+ WorkteamArn?: string;
229
+ }
230
+ export declare const CrossAccountFilterOption: {
231
+ readonly CROSS_ACCOUNT: "CrossAccount";
232
+ readonly SAME_ACCOUNT: "SameAccount";
233
+ };
234
+ export type CrossAccountFilterOption =
235
+ (typeof CrossAccountFilterOption)[keyof typeof CrossAccountFilterOption];
236
+ export declare const Statistic: {
237
+ readonly AVERAGE: "Average";
238
+ readonly MAXIMUM: "Maximum";
239
+ readonly MINIMUM: "Minimum";
240
+ readonly SAMPLE_COUNT: "SampleCount";
241
+ readonly SUM: "Sum";
242
+ };
243
+ export type Statistic = (typeof Statistic)[keyof typeof Statistic];
244
+ export interface CustomizedMetricSpecification {
245
+ MetricName?: string;
246
+ Namespace?: string;
247
+ Statistic?: Statistic;
248
+ }
249
+ export interface DataCaptureConfigSummary {
250
+ EnableCapture: boolean | undefined;
251
+ CaptureStatus: CaptureStatus | undefined;
252
+ CurrentSamplingPercentage: number | undefined;
253
+ DestinationS3Uri: string | undefined;
254
+ KmsKeyId: string | undefined;
255
+ }
256
+ export declare const RuleEvaluationStatus: {
257
+ readonly ERROR: "Error";
258
+ readonly IN_PROGRESS: "InProgress";
259
+ readonly ISSUES_FOUND: "IssuesFound";
260
+ readonly NO_ISSUES_FOUND: "NoIssuesFound";
261
+ readonly STOPPED: "Stopped";
262
+ readonly STOPPING: "Stopping";
263
+ };
264
+ export type RuleEvaluationStatus =
265
+ (typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
266
+ export interface DebugRuleEvaluationStatus {
267
+ RuleConfigurationName?: string;
268
+ RuleEvaluationJobArn?: string;
269
+ RuleEvaluationStatus?: RuleEvaluationStatus;
270
+ StatusDetails?: string;
271
+ LastModifiedTime?: Date;
272
+ }
273
+ export interface DeleteActionRequest {
274
+ ActionName: string | undefined;
275
+ }
276
+ export interface DeleteActionResponse {
277
+ ActionArn?: string;
278
+ }
279
+ export interface DeleteAlgorithmInput {
280
+ AlgorithmName: string | undefined;
281
+ }
282
+ export interface DeleteAppRequest {
283
+ DomainId: string | undefined;
284
+ UserProfileName?: string;
285
+ AppType: AppType | undefined;
286
+ AppName: string | undefined;
287
+ SpaceName?: string;
288
+ }
289
+ export interface DeleteAppImageConfigRequest {
290
+ AppImageConfigName: string | undefined;
291
+ }
292
+ export interface DeleteArtifactRequest {
293
+ ArtifactArn?: string;
294
+ Source?: ArtifactSource;
295
+ }
296
+ export interface DeleteArtifactResponse {
297
+ ArtifactArn?: string;
298
+ }
299
+ export interface DeleteAssociationRequest {
300
+ SourceArn: string | undefined;
301
+ DestinationArn: string | undefined;
302
+ }
303
+ export interface DeleteAssociationResponse {
304
+ SourceArn?: string;
305
+ DestinationArn?: string;
306
+ }
307
+ export interface DeleteClusterRequest {
308
+ ClusterName: string | undefined;
309
+ }
310
+ export interface DeleteClusterResponse {
311
+ ClusterArn: string | undefined;
312
+ }
176
313
  export interface DeleteCodeRepositoryInput {
177
314
  CodeRepositoryName: string | undefined;
178
315
  }
@@ -255,6 +392,9 @@ export interface DeleteImageVersionRequest {
255
392
  Alias?: string;
256
393
  }
257
394
  export interface DeleteImageVersionResponse {}
395
+ export interface DeleteInferenceComponentInput {
396
+ InferenceComponentName: string | undefined;
397
+ }
258
398
  export interface DeleteInferenceExperimentRequest {
259
399
  Name: string | undefined;
260
400
  }
@@ -538,6 +678,25 @@ export interface DescribeAutoMLJobV2Response {
538
678
  ResolvedAttributes?: AutoMLResolvedAttributes;
539
679
  AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName;
540
680
  }
681
+ export interface DescribeClusterRequest {
682
+ ClusterName: string | undefined;
683
+ }
684
+ export interface DescribeClusterResponse {
685
+ ClusterArn: string | undefined;
686
+ ClusterName?: string;
687
+ ClusterStatus: ClusterStatus | undefined;
688
+ CreationTime?: Date;
689
+ FailureMessage?: string;
690
+ InstanceGroups: ClusterInstanceGroupDetails[] | undefined;
691
+ VpcConfig?: VpcConfig;
692
+ }
693
+ export interface DescribeClusterNodeRequest {
694
+ ClusterName: string | undefined;
695
+ NodeId: string | undefined;
696
+ }
697
+ export interface DescribeClusterNodeResponse {
698
+ NodeDetails: ClusterNodeDetails | undefined;
699
+ }
541
700
  export interface DescribeCodeRepositoryInput {
542
701
  CodeRepositoryName: string | undefined;
543
702
  }
@@ -784,6 +943,8 @@ export interface PendingProductionVariantSummary {
784
943
  VariantStatus?: ProductionVariantStatus[];
785
944
  CurrentServerlessConfig?: ProductionVariantServerlessConfig;
786
945
  DesiredServerlessConfig?: ProductionVariantServerlessConfig;
946
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
947
+ RoutingConfig?: ProductionVariantRoutingConfig;
787
948
  }
788
949
  export interface PendingDeploymentSummary {
789
950
  EndpointConfigName: string | undefined;
@@ -801,6 +962,8 @@ export interface ProductionVariantSummary {
801
962
  VariantStatus?: ProductionVariantStatus[];
802
963
  CurrentServerlessConfig?: ProductionVariantServerlessConfig;
803
964
  DesiredServerlessConfig?: ProductionVariantServerlessConfig;
965
+ ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
966
+ RoutingConfig?: ProductionVariantRoutingConfig;
804
967
  }
805
968
  export interface DescribeEndpointOutput {
806
969
  EndpointName: string | undefined;
@@ -831,6 +994,9 @@ export interface DescribeEndpointConfigOutput {
831
994
  AsyncInferenceConfig?: AsyncInferenceConfig;
832
995
  ExplainerConfig?: ExplainerConfig;
833
996
  ShadowProductionVariants?: ProductionVariant[];
997
+ ExecutionRoleArn?: string;
998
+ VpcConfig?: VpcConfig;
999
+ EnableNetworkIsolation?: boolean;
834
1000
  }
835
1001
  export interface DescribeExperimentRequest {
836
1002
  ExperimentName: string | undefined;
@@ -1162,6 +1328,46 @@ export interface DescribeImageVersionResponse {
1162
1328
  Horovod?: boolean;
1163
1329
  ReleaseNotes?: string;
1164
1330
  }
1331
+ export interface DescribeInferenceComponentInput {
1332
+ InferenceComponentName: string | undefined;
1333
+ }
1334
+ export declare const InferenceComponentStatus: {
1335
+ readonly CREATING: "Creating";
1336
+ readonly DELETING: "Deleting";
1337
+ readonly FAILED: "Failed";
1338
+ readonly IN_SERVICE: "InService";
1339
+ readonly UPDATING: "Updating";
1340
+ };
1341
+ export type InferenceComponentStatus =
1342
+ (typeof InferenceComponentStatus)[keyof typeof InferenceComponentStatus];
1343
+ export interface InferenceComponentRuntimeConfigSummary {
1344
+ DesiredCopyCount?: number;
1345
+ CurrentCopyCount?: number;
1346
+ }
1347
+ export interface InferenceComponentContainerSpecificationSummary {
1348
+ DeployedImage?: DeployedImage;
1349
+ ArtifactUrl?: string;
1350
+ Environment?: Record<string, string>;
1351
+ }
1352
+ export interface InferenceComponentSpecificationSummary {
1353
+ ModelName?: string;
1354
+ Container?: InferenceComponentContainerSpecificationSummary;
1355
+ StartupParameters?: InferenceComponentStartupParameters;
1356
+ ComputeResourceRequirements?: InferenceComponentComputeResourceRequirements;
1357
+ }
1358
+ export interface DescribeInferenceComponentOutput {
1359
+ InferenceComponentName: string | undefined;
1360
+ InferenceComponentArn: string | undefined;
1361
+ EndpointName: string | undefined;
1362
+ EndpointArn: string | undefined;
1363
+ VariantName?: string;
1364
+ FailureReason?: string;
1365
+ Specification?: InferenceComponentSpecificationSummary;
1366
+ RuntimeConfig?: InferenceComponentRuntimeConfigSummary;
1367
+ CreationTime: Date | undefined;
1368
+ LastModifiedTime: Date | undefined;
1369
+ InferenceComponentStatus?: InferenceComponentStatus;
1370
+ }
1165
1371
  export interface DescribeInferenceExperimentRequest {
1166
1372
  Name: string | undefined;
1167
1373
  }
@@ -1352,7 +1558,7 @@ export interface DescribeModelOutput {
1352
1558
  PrimaryContainer?: ContainerDefinition;
1353
1559
  Containers?: ContainerDefinition[];
1354
1560
  InferenceExecutionConfig?: InferenceExecutionConfig;
1355
- ExecutionRoleArn: string | undefined;
1561
+ ExecutionRoleArn?: string;
1356
1562
  VpcConfig?: VpcConfig;
1357
1563
  CreationTime: Date | undefined;
1358
1564
  ModelArn: string | undefined;
@@ -1787,6 +1993,7 @@ export interface DescribeSpaceResponse {
1787
1993
  CreationTime?: Date;
1788
1994
  FailureReason?: string;
1789
1995
  SpaceSettings?: SpaceSettings;
1996
+ Url?: string;
1790
1997
  }
1791
1998
  export interface DescribeStudioLifecycleConfigRequest {
1792
1999
  StudioLifecycleConfigName: string | undefined;
@@ -1914,6 +2121,7 @@ export interface DescribeTrainingJobResponse {
1914
2121
  RetryStrategy?: RetryStrategy;
1915
2122
  Environment?: Record<string, string>;
1916
2123
  WarmPoolStatus?: WarmPoolStatus;
2124
+ InfraCheckConfig?: InfraCheckConfig;
1917
2125
  }
1918
2126
  export interface DescribeTransformJobRequest {
1919
2127
  TransformJobName: string | undefined;
@@ -2022,279 +2230,10 @@ export declare const UserProfileStatus: {
2022
2230
  };
2023
2231
  export type UserProfileStatus =
2024
2232
  (typeof UserProfileStatus)[keyof typeof UserProfileStatus];
2025
- export interface DescribeUserProfileResponse {
2026
- DomainId?: string;
2027
- UserProfileArn?: string;
2028
- UserProfileName?: string;
2029
- HomeEfsFileSystemUid?: string;
2030
- Status?: UserProfileStatus;
2031
- LastModifiedTime?: Date;
2032
- CreationTime?: Date;
2033
- FailureReason?: string;
2034
- SingleSignOnUserIdentifier?: string;
2035
- SingleSignOnUserValue?: string;
2036
- UserSettings?: UserSettings;
2037
- }
2038
- export interface DescribeWorkforceRequest {
2039
- WorkforceName: string | undefined;
2040
- }
2041
- export interface OidcConfigForResponse {
2042
- ClientId?: string;
2043
- Issuer?: string;
2044
- AuthorizationEndpoint?: string;
2045
- TokenEndpoint?: string;
2046
- UserInfoEndpoint?: string;
2047
- LogoutEndpoint?: string;
2048
- JwksUri?: string;
2049
- }
2050
- export declare const WorkforceStatus: {
2051
- readonly ACTIVE: "Active";
2052
- readonly DELETING: "Deleting";
2053
- readonly FAILED: "Failed";
2054
- readonly INITIALIZING: "Initializing";
2055
- readonly UPDATING: "Updating";
2056
- };
2057
- export type WorkforceStatus =
2058
- (typeof WorkforceStatus)[keyof typeof WorkforceStatus];
2059
- export interface WorkforceVpcConfigResponse {
2060
- VpcId: string | undefined;
2061
- SecurityGroupIds: string[] | undefined;
2062
- Subnets: string[] | undefined;
2063
- VpcEndpointId?: string;
2064
- }
2065
- export interface Workforce {
2066
- WorkforceName: string | undefined;
2067
- WorkforceArn: string | undefined;
2068
- LastUpdatedDate?: Date;
2069
- SourceIpConfig?: SourceIpConfig;
2070
- SubDomain?: string;
2071
- CognitoConfig?: CognitoConfig;
2072
- OidcConfig?: OidcConfigForResponse;
2073
- CreateDate?: Date;
2074
- WorkforceVpcConfig?: WorkforceVpcConfigResponse;
2075
- Status?: WorkforceStatus;
2076
- FailureReason?: string;
2077
- }
2078
- export interface DescribeWorkforceResponse {
2079
- Workforce: Workforce | undefined;
2080
- }
2081
- export interface DescribeWorkteamRequest {
2082
- WorkteamName: string | undefined;
2083
- }
2084
- export interface Workteam {
2085
- WorkteamName: string | undefined;
2086
- MemberDefinitions: MemberDefinition[] | undefined;
2087
- WorkteamArn: string | undefined;
2088
- WorkforceArn?: string;
2089
- ProductListingIds?: string[];
2090
- Description: string | undefined;
2091
- SubDomain?: string;
2092
- CreateDate?: Date;
2093
- LastUpdatedDate?: Date;
2094
- NotificationConfiguration?: NotificationConfiguration;
2095
- }
2096
- export interface DescribeWorkteamResponse {
2097
- Workteam: Workteam | undefined;
2098
- }
2099
- export interface ProductionVariantServerlessUpdateConfig {
2100
- MaxConcurrency?: number;
2101
- ProvisionedConcurrency?: number;
2102
- }
2103
- export interface DesiredWeightAndCapacity {
2104
- VariantName: string | undefined;
2105
- DesiredWeight?: number;
2106
- DesiredInstanceCount?: number;
2107
- ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig;
2108
- }
2109
- export interface Device {
2110
- DeviceName: string | undefined;
2111
- Description?: string;
2112
- IotThingName?: string;
2113
- }
2114
- export declare const DeviceDeploymentStatus: {
2115
- readonly Deployed: "DEPLOYED";
2116
- readonly Failed: "FAILED";
2117
- readonly InProgress: "INPROGRESS";
2118
- readonly ReadyToDeploy: "READYTODEPLOY";
2119
- readonly Stopped: "STOPPED";
2120
- readonly Stopping: "STOPPING";
2121
- };
2122
- export type DeviceDeploymentStatus =
2123
- (typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
2124
- export interface DeviceDeploymentSummary {
2125
- EdgeDeploymentPlanArn: string | undefined;
2126
- EdgeDeploymentPlanName: string | undefined;
2127
- StageName: string | undefined;
2128
- DeployedStageName?: string;
2129
- DeviceFleetName?: string;
2130
- DeviceName: string | undefined;
2131
- DeviceArn: string | undefined;
2132
- DeviceDeploymentStatus?: DeviceDeploymentStatus;
2133
- DeviceDeploymentStatusMessage?: string;
2134
- Description?: string;
2135
- DeploymentStartTime?: Date;
2136
- }
2137
- export interface DeviceFleetSummary {
2138
- DeviceFleetArn: string | undefined;
2139
- DeviceFleetName: string | undefined;
2140
- CreationTime?: Date;
2141
- LastModifiedTime?: Date;
2142
- }
2143
- export interface DeviceStats {
2144
- ConnectedDeviceCount: number | undefined;
2145
- RegisteredDeviceCount: number | undefined;
2146
- }
2147
- export interface EdgeModelSummary {
2148
- ModelName: string | undefined;
2149
- ModelVersion: string | undefined;
2150
- }
2151
- export interface DeviceSummary {
2152
- DeviceName: string | undefined;
2153
- DeviceArn: string | undefined;
2154
- Description?: string;
2155
- DeviceFleetName?: string;
2156
- IotThingName?: string;
2157
- RegistrationTime?: Date;
2158
- LatestHeartbeat?: Date;
2159
- Models?: EdgeModelSummary[];
2160
- AgentVersion?: string;
2161
- }
2162
- export declare const Direction: {
2163
- readonly ASCENDANTS: "Ascendants";
2164
- readonly BOTH: "Both";
2165
- readonly DESCENDANTS: "Descendants";
2166
- };
2167
- export type Direction = (typeof Direction)[keyof typeof Direction];
2168
- export interface DisableSagemakerServicecatalogPortfolioInput {}
2169
- export interface DisableSagemakerServicecatalogPortfolioOutput {}
2170
- export interface DisassociateTrialComponentRequest {
2171
- TrialComponentName: string | undefined;
2172
- TrialName: string | undefined;
2173
- }
2174
- export interface DisassociateTrialComponentResponse {
2175
- TrialComponentArn?: string;
2176
- TrialArn?: string;
2177
- }
2178
- export interface DomainDetails {
2179
- DomainArn?: string;
2180
- DomainId?: string;
2181
- DomainName?: string;
2182
- Status?: DomainStatus;
2183
- CreationTime?: Date;
2184
- LastModifiedTime?: Date;
2185
- Url?: string;
2186
- }
2187
- export interface RStudioServerProDomainSettingsForUpdate {
2188
- DomainExecutionRoleArn: string | undefined;
2189
- DefaultResourceSpec?: ResourceSpec;
2190
- RStudioConnectUrl?: string;
2191
- RStudioPackageManagerUrl?: string;
2192
- }
2193
- export interface DomainSettingsForUpdate {
2194
- RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
2195
- ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
2196
- SecurityGroupIds?: string[];
2197
- }
2198
- export interface PredefinedMetricSpecification {
2199
- PredefinedMetricType?: string;
2200
- }
2201
- export type MetricSpecification =
2202
- | MetricSpecification.CustomizedMember
2203
- | MetricSpecification.PredefinedMember
2204
- | MetricSpecification.$UnknownMember;
2205
- export declare namespace MetricSpecification {
2206
- interface PredefinedMember {
2207
- Predefined: PredefinedMetricSpecification;
2208
- Customized?: never;
2209
- $unknown?: never;
2210
- }
2211
- interface CustomizedMember {
2212
- Predefined?: never;
2213
- Customized: CustomizedMetricSpecification;
2214
- $unknown?: never;
2215
- }
2216
- interface $UnknownMember {
2217
- Predefined?: never;
2218
- Customized?: never;
2219
- $unknown: [string, any];
2220
- }
2221
- interface Visitor<T> {
2222
- Predefined: (value: PredefinedMetricSpecification) => T;
2223
- Customized: (value: CustomizedMetricSpecification) => T;
2224
- _: (name: string, value: any) => T;
2225
- }
2226
- const visit: <T>(value: MetricSpecification, visitor: Visitor<T>) => T;
2227
- }
2228
- export interface TargetTrackingScalingPolicyConfiguration {
2229
- MetricSpecification?: MetricSpecification;
2230
- TargetValue?: number;
2231
- }
2232
- export type ScalingPolicy =
2233
- | ScalingPolicy.TargetTrackingMember
2234
- | ScalingPolicy.$UnknownMember;
2235
- export declare namespace ScalingPolicy {
2236
- interface TargetTrackingMember {
2237
- TargetTracking: TargetTrackingScalingPolicyConfiguration;
2238
- $unknown?: never;
2239
- }
2240
- interface $UnknownMember {
2241
- TargetTracking?: never;
2242
- $unknown: [string, any];
2243
- }
2244
- interface Visitor<T> {
2245
- TargetTracking: (value: TargetTrackingScalingPolicyConfiguration) => T;
2246
- _: (name: string, value: any) => T;
2247
- }
2248
- const visit: <T>(value: ScalingPolicy, visitor: Visitor<T>) => T;
2249
- }
2250
- export interface DynamicScalingConfiguration {
2251
- MinCapacity?: number;
2252
- MaxCapacity?: number;
2253
- ScaleInCooldown?: number;
2254
- ScaleOutCooldown?: number;
2255
- ScalingPolicies?: ScalingPolicy[];
2256
- }
2257
- export interface Edge {
2258
- SourceArn?: string;
2259
- DestinationArn?: string;
2260
- AssociationType?: AssociationEdgeType;
2261
- }
2262
- export interface EdgeDeploymentPlanSummary {
2263
- EdgeDeploymentPlanArn: string | undefined;
2264
- EdgeDeploymentPlanName: string | undefined;
2265
- DeviceFleetName: string | undefined;
2266
- EdgeDeploymentSuccess: number | undefined;
2267
- EdgeDeploymentPending: number | undefined;
2268
- EdgeDeploymentFailed: number | undefined;
2269
- CreationTime?: Date;
2270
- LastModifiedTime?: Date;
2271
- }
2272
- export interface EdgeModelStat {
2273
- ModelName: string | undefined;
2274
- ModelVersion: string | undefined;
2275
- OfflineDeviceCount: number | undefined;
2276
- ConnectedDeviceCount: number | undefined;
2277
- ActiveDeviceCount: number | undefined;
2278
- SamplingDeviceCount: number | undefined;
2279
- }
2280
- export interface EdgePackagingJobSummary {
2281
- EdgePackagingJobArn: string | undefined;
2282
- EdgePackagingJobName: string | undefined;
2283
- EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
2284
- CompilationJobName?: string;
2285
- ModelName?: string;
2286
- ModelVersion?: string;
2287
- CreationTime?: Date;
2288
- LastModifiedTime?: Date;
2289
- }
2290
- export interface EMRStepMetadata {
2291
- ClusterId?: string;
2292
- StepId?: string;
2293
- StepName?: string;
2294
- LogFilePath?: string;
2295
- }
2296
- export interface EnableSagemakerServicecatalogPortfolioInput {}
2297
- export interface EnableSagemakerServicecatalogPortfolioOutput {}
2233
+ export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
2234
+ export declare const CreateWorkforceRequestFilterSensitiveLog: (
2235
+ obj: CreateWorkforceRequest
2236
+ ) => any;
2298
2237
  export declare const DescribeModelCardResponseFilterSensitiveLog: (
2299
2238
  obj: DescribeModelCardResponse
2300
2239
  ) => any;