@aws-sdk/client-sagemaker 3.602.0 → 3.606.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/index.js CHANGED
@@ -429,6 +429,7 @@ __export(src_exports, {
429
429
  ManagedInstanceScalingStatus: () => ManagedInstanceScalingStatus,
430
430
  MetricSetSource: () => MetricSetSource,
431
431
  MetricSpecification: () => MetricSpecification,
432
+ MlTools: () => MlTools,
432
433
  ModelApprovalStatus: () => ModelApprovalStatus,
433
434
  ModelCacheSetting: () => ModelCacheSetting,
434
435
  ModelCardExportJobSortBy: () => ModelCardExportJobSortBy,
@@ -2285,6 +2286,21 @@ var StudioWebPortal = {
2285
2286
  Disabled: "DISABLED",
2286
2287
  Enabled: "ENABLED"
2287
2288
  };
2289
+ var MlTools = {
2290
+ AUTO_ML: "AutoMl",
2291
+ DATA_WRANGLER: "DataWrangler",
2292
+ EMR_CLUSTERS: "EmrClusters",
2293
+ ENDPOINTS: "Endpoints",
2294
+ EXPERIMENTS: "Experiments",
2295
+ FEATURE_STORE: "FeatureStore",
2296
+ INFERENCE_RECOMMENDER: "InferenceRecommender",
2297
+ JUMP_START: "JumpStart",
2298
+ MODELS: "Models",
2299
+ MODEL_EVALUATION: "ModelEvaluation",
2300
+ PIPELINES: "Pipelines",
2301
+ PROJECTS: "Projects",
2302
+ TRAINING: "Training"
2303
+ };
2288
2304
  var ExecutionRoleIdentityConfig = {
2289
2305
  DISABLED: "DISABLED",
2290
2306
  USER_PROFILE_NAME: "USER_PROFILE_NAME"
@@ -2947,15 +2963,6 @@ var ModelPackageGroupStatus = {
2947
2963
  IN_PROGRESS: "InProgress",
2948
2964
  PENDING: "Pending"
2949
2965
  };
2950
- var ExecutionStatus = {
2951
- COMPLETED: "Completed",
2952
- COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations",
2953
- FAILED: "Failed",
2954
- IN_PROGRESS: "InProgress",
2955
- PENDING: "Pending",
2956
- STOPPED: "Stopped",
2957
- STOPPING: "Stopping"
2958
- };
2959
2966
  var OidcConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
2960
2967
  ...obj,
2961
2968
  ...obj.ClientSecret && { ClientSecret: import_smithy_client.SENSITIVE_STRING }
@@ -14085,6 +14092,18 @@ var de_Groups = /* @__PURE__ */ __name((output, context) => {
14085
14092
  });
14086
14093
  return retVal;
14087
14094
  }, "de_Groups");
14095
+ var de_HiddenAppTypesList = /* @__PURE__ */ __name((output, context) => {
14096
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
14097
+ return (0, import_smithy_client.expectString)(entry);
14098
+ });
14099
+ return retVal;
14100
+ }, "de_HiddenAppTypesList");
14101
+ var de_HiddenMlToolsList = /* @__PURE__ */ __name((output, context) => {
14102
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
14103
+ return (0, import_smithy_client.expectString)(entry);
14104
+ });
14105
+ return retVal;
14106
+ }, "de_HiddenMlToolsList");
14088
14107
  var de_HolidayConfig = /* @__PURE__ */ __name((output, context) => {
14089
14108
  const retVal = (output || []).filter((e) => e != null).map((entry) => {
14090
14109
  return de_HolidayConfigAttributes(entry, context);
@@ -17650,6 +17669,12 @@ var de_StudioLifecycleConfigsList = /* @__PURE__ */ __name((output, context) =>
17650
17669
  });
17651
17670
  return retVal;
17652
17671
  }, "de_StudioLifecycleConfigsList");
17672
+ var de_StudioWebPortalSettings = /* @__PURE__ */ __name((output, context) => {
17673
+ return (0, import_smithy_client.take)(output, {
17674
+ HiddenAppTypes: (_) => de_HiddenAppTypesList(_, context),
17675
+ HiddenMlTools: (_) => de_HiddenMlToolsList(_, context)
17676
+ });
17677
+ }, "de_StudioWebPortalSettings");
17653
17678
  var de_Subnets = /* @__PURE__ */ __name((output, context) => {
17654
17679
  const retVal = (output || []).filter((e) => e != null).map((entry) => {
17655
17680
  return (0, import_smithy_client.expectString)(entry);
@@ -18502,6 +18527,7 @@ var de_UserSettings = /* @__PURE__ */ __name((output, context) => {
18502
18527
  SharingSettings: (_) => de_SharingSettings(_, context),
18503
18528
  SpaceStorageSettings: (_) => de_DefaultSpaceStorageSettings(_, context),
18504
18529
  StudioWebPortal: import_smithy_client.expectString,
18530
+ StudioWebPortalSettings: (_) => de_StudioWebPortalSettings(_, context),
18505
18531
  TensorBoardAppSettings: (_) => de_TensorBoardAppSettings(_, context)
18506
18532
  });
18507
18533
  }, "de_UserSettings");
@@ -22946,6 +22972,10 @@ var RetryPipelineExecutionCommand = _RetryPipelineExecutionCommand;
22946
22972
 
22947
22973
  // src/models/models_4.ts
22948
22974
 
22975
+ var MonitoringAlertHistorySortKey = {
22976
+ CreationTime: "CreationTime",
22977
+ Status: "Status"
22978
+ };
22949
22979
  var MonitoringAlertStatus = {
22950
22980
  IN_ALERT: "InAlert",
22951
22981
  OK: "OK"
@@ -25261,6 +25291,15 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
25261
25291
  }, "waitUntilTransformJobCompletedOrStopped");
25262
25292
 
25263
25293
  // src/models/models_3.ts
25294
+ var ExecutionStatus = {
25295
+ COMPLETED: "Completed",
25296
+ COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations",
25297
+ FAILED: "Failed",
25298
+ IN_PROGRESS: "InProgress",
25299
+ PENDING: "Pending",
25300
+ STOPPED: "Stopped",
25301
+ STOPPING: "Stopping"
25302
+ };
25264
25303
  var ScheduleStatus = {
25265
25304
  FAILED: "Failed",
25266
25305
  PENDING: "Pending",
@@ -25631,10 +25670,6 @@ var ModelSortKey = {
25631
25670
  CreationTime: "CreationTime",
25632
25671
  Name: "Name"
25633
25672
  };
25634
- var MonitoringAlertHistorySortKey = {
25635
- CreationTime: "CreationTime",
25636
- Status: "Status"
25637
- };
25638
25673
  // Annotate the CommonJS export names for ESM import in node:
25639
25674
 
25640
25675
  0 && (module.exports = {
@@ -26182,6 +26217,7 @@ var MonitoringAlertHistorySortKey = {
26182
26217
  RStudioServerProUserGroup,
26183
26218
  NotebookOutputOption,
26184
26219
  StudioWebPortal,
26220
+ MlTools,
26185
26221
  ExecutionRoleIdentityConfig,
26186
26222
  FailureHandlingPolicy,
26187
26223
  DeviceSubsetType,
@@ -26268,11 +26304,11 @@ var MonitoringAlertHistorySortKey = {
26268
26304
  ModelCardExportJobStatus,
26269
26305
  DetailedModelPackageStatus,
26270
26306
  ModelPackageGroupStatus,
26271
- ExecutionStatus,
26272
26307
  OidcConfigFilterSensitiveLog,
26273
26308
  CreateWorkforceRequestFilterSensitiveLog,
26274
26309
  DescribeModelCardResponseFilterSensitiveLog,
26275
26310
  DescribeModelPackageOutputFilterSensitiveLog,
26311
+ ExecutionStatus,
26276
26312
  ScheduleStatus,
26277
26313
  NotebookInstanceStatus,
26278
26314
  PipelineStatus,
@@ -87,6 +87,21 @@ export const StudioWebPortal = {
87
87
  Disabled: "DISABLED",
88
88
  Enabled: "ENABLED",
89
89
  };
90
+ export const MlTools = {
91
+ AUTO_ML: "AutoMl",
92
+ DATA_WRANGLER: "DataWrangler",
93
+ EMR_CLUSTERS: "EmrClusters",
94
+ ENDPOINTS: "Endpoints",
95
+ EXPERIMENTS: "Experiments",
96
+ FEATURE_STORE: "FeatureStore",
97
+ INFERENCE_RECOMMENDER: "InferenceRecommender",
98
+ JUMP_START: "JumpStart",
99
+ MODELS: "Models",
100
+ MODEL_EVALUATION: "ModelEvaluation",
101
+ PIPELINES: "Pipelines",
102
+ PROJECTS: "Projects",
103
+ TRAINING: "Training",
104
+ };
90
105
  export const ExecutionRoleIdentityConfig = {
91
106
  DISABLED: "DISABLED",
92
107
  USER_PROFILE_NAME: "USER_PROFILE_NAME",
@@ -297,15 +297,6 @@ export const ModelPackageGroupStatus = {
297
297
  IN_PROGRESS: "InProgress",
298
298
  PENDING: "Pending",
299
299
  };
300
- export const ExecutionStatus = {
301
- COMPLETED: "Completed",
302
- COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations",
303
- FAILED: "Failed",
304
- IN_PROGRESS: "InProgress",
305
- PENDING: "Pending",
306
- STOPPED: "Stopped",
307
- STOPPING: "Stopping",
308
- };
309
300
  export const OidcConfigFilterSensitiveLog = (obj) => ({
310
301
  ...obj,
311
302
  ...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
@@ -1,3 +1,12 @@
1
+ export const ExecutionStatus = {
2
+ COMPLETED: "Completed",
3
+ COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations",
4
+ FAILED: "Failed",
5
+ IN_PROGRESS: "InProgress",
6
+ PENDING: "Pending",
7
+ STOPPED: "Stopped",
8
+ STOPPING: "Stopping",
9
+ };
1
10
  export const ScheduleStatus = {
2
11
  FAILED: "Failed",
3
12
  PENDING: "Pending",
@@ -368,7 +377,3 @@ export const ModelSortKey = {
368
377
  CreationTime: "CreationTime",
369
378
  Name: "Name",
370
379
  };
371
- export const MonitoringAlertHistorySortKey = {
372
- CreationTime: "CreationTime",
373
- Status: "Status",
374
- };
@@ -1,6 +1,10 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
3
3
  import { OidcConfigFilterSensitiveLog, } from "./models_2";
4
+ export const MonitoringAlertHistorySortKey = {
5
+ CreationTime: "CreationTime",
6
+ Status: "Status",
7
+ };
4
8
  export const MonitoringAlertStatus = {
5
9
  IN_ALERT: "InAlert",
6
10
  OK: "OK",
@@ -11292,6 +11292,22 @@ const de_Groups = (output, context) => {
11292
11292
  });
11293
11293
  return retVal;
11294
11294
  };
11295
+ const de_HiddenAppTypesList = (output, context) => {
11296
+ const retVal = (output || [])
11297
+ .filter((e) => e != null)
11298
+ .map((entry) => {
11299
+ return __expectString(entry);
11300
+ });
11301
+ return retVal;
11302
+ };
11303
+ const de_HiddenMlToolsList = (output, context) => {
11304
+ const retVal = (output || [])
11305
+ .filter((e) => e != null)
11306
+ .map((entry) => {
11307
+ return __expectString(entry);
11308
+ });
11309
+ return retVal;
11310
+ };
11295
11311
  const de_HolidayConfig = (output, context) => {
11296
11312
  const retVal = (output || [])
11297
11313
  .filter((e) => e != null)
@@ -15081,6 +15097,12 @@ const de_StudioLifecycleConfigsList = (output, context) => {
15081
15097
  });
15082
15098
  return retVal;
15083
15099
  };
15100
+ const de_StudioWebPortalSettings = (output, context) => {
15101
+ return take(output, {
15102
+ HiddenAppTypes: (_) => de_HiddenAppTypesList(_, context),
15103
+ HiddenMlTools: (_) => de_HiddenMlToolsList(_, context),
15104
+ });
15105
+ };
15084
15106
  const de_Subnets = (output, context) => {
15085
15107
  const retVal = (output || [])
15086
15108
  .filter((e) => e != null)
@@ -15964,6 +15986,7 @@ const de_UserSettings = (output, context) => {
15964
15986
  SharingSettings: (_) => de_SharingSettings(_, context),
15965
15987
  SpaceStorageSettings: (_) => de_DefaultSpaceStorageSettings(_, context),
15966
15988
  StudioWebPortal: __expectString,
15989
+ StudioWebPortalSettings: (_) => de_StudioWebPortalSettings(_, context),
15967
15990
  TensorBoardAppSettings: (_) => de_TensorBoardAppSettings(_, context),
15968
15991
  });
15969
15992
  };
@@ -242,6 +242,14 @@ declare const CreateDomainCommand_base: {
242
242
  * },
243
243
  * },
244
244
  * ],
245
+ * StudioWebPortalSettings: { // StudioWebPortalSettings
246
+ * HiddenMlTools: [ // HiddenMlToolsList
247
+ * "DataWrangler" || "FeatureStore" || "EmrClusters" || "AutoMl" || "Experiments" || "Training" || "ModelEvaluation" || "Pipelines" || "Models" || "JumpStart" || "InferenceRecommender" || "Endpoints" || "Projects",
248
+ * ],
249
+ * HiddenAppTypes: [ // HiddenAppTypesList
250
+ * "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
251
+ * ],
252
+ * },
245
253
  * },
246
254
  * DomainSettings: { // DomainSettings
247
255
  * SecurityGroupIds: [ // DomainSecurityGroupIds
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { CreateProjectInput, CreateProjectOutput } from "../models/models_1";
3
+ import { CreateProjectInput, CreateProjectOutput } from "../models/models_2";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -213,6 +213,14 @@ declare const CreateUserProfileCommand_base: {
213
213
  * },
214
214
  * },
215
215
  * ],
216
+ * StudioWebPortalSettings: { // StudioWebPortalSettings
217
+ * HiddenMlTools: [ // HiddenMlToolsList
218
+ * "DataWrangler" || "FeatureStore" || "EmrClusters" || "AutoMl" || "Experiments" || "Training" || "ModelEvaluation" || "Pipelines" || "Models" || "JumpStart" || "InferenceRecommender" || "Endpoints" || "Projects",
219
+ * ],
220
+ * HiddenAppTypes: [ // HiddenAppTypesList
221
+ * "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
222
+ * ],
223
+ * },
216
224
  * },
217
225
  * };
218
226
  * const command = new CreateUserProfileCommand(input);
@@ -214,6 +214,14 @@ declare const DescribeDomainCommand_base: {
214
214
  * // },
215
215
  * // },
216
216
  * // ],
217
+ * // StudioWebPortalSettings: { // StudioWebPortalSettings
218
+ * // HiddenMlTools: [ // HiddenMlToolsList
219
+ * // "DataWrangler" || "FeatureStore" || "EmrClusters" || "AutoMl" || "Experiments" || "Training" || "ModelEvaluation" || "Pipelines" || "Models" || "JumpStart" || "InferenceRecommender" || "Endpoints" || "Projects",
220
+ * // ],
221
+ * // HiddenAppTypes: [ // HiddenAppTypesList
222
+ * // "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
223
+ * // ],
224
+ * // },
217
225
  * // },
218
226
  * // DomainSettings: { // DomainSettings
219
227
  * // SecurityGroupIds: [ // DomainSecurityGroupIds
@@ -213,6 +213,14 @@ declare const DescribeUserProfileCommand_base: {
213
213
  * // },
214
214
  * // },
215
215
  * // ],
216
+ * // StudioWebPortalSettings: { // StudioWebPortalSettings
217
+ * // HiddenMlTools: [ // HiddenMlToolsList
218
+ * // "DataWrangler" || "FeatureStore" || "EmrClusters" || "AutoMl" || "Experiments" || "Training" || "ModelEvaluation" || "Pipelines" || "Models" || "JumpStart" || "InferenceRecommender" || "Endpoints" || "Projects",
219
+ * // ],
220
+ * // HiddenAppTypes: [ // HiddenAppTypesList
221
+ * // "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
222
+ * // ],
223
+ * // },
216
224
  * // },
217
225
  * // };
218
226
  *
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListModelsInput, ListModelsOutput } from "../models/models_3";
3
+ import { ListModelsInput } from "../models/models_3";
4
+ import { ListModelsOutput } from "../models/models_4";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -198,6 +198,14 @@ declare const UpdateDomainCommand_base: {
198
198
  * },
199
199
  * },
200
200
  * ],
201
+ * StudioWebPortalSettings: { // StudioWebPortalSettings
202
+ * HiddenMlTools: [ // HiddenMlToolsList
203
+ * "DataWrangler" || "FeatureStore" || "EmrClusters" || "AutoMl" || "Experiments" || "Training" || "ModelEvaluation" || "Pipelines" || "Models" || "JumpStart" || "InferenceRecommender" || "Endpoints" || "Projects",
204
+ * ],
205
+ * HiddenAppTypes: [ // HiddenAppTypesList
206
+ * "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
207
+ * ],
208
+ * },
201
209
  * },
202
210
  * DomainSettingsForUpdate: { // DomainSettingsForUpdate
203
211
  * RStudioServerProDomainSettingsForUpdate: { // RStudioServerProDomainSettingsForUpdate
@@ -199,6 +199,14 @@ declare const UpdateUserProfileCommand_base: {
199
199
  * },
200
200
  * },
201
201
  * ],
202
+ * StudioWebPortalSettings: { // StudioWebPortalSettings
203
+ * HiddenMlTools: [ // HiddenMlToolsList
204
+ * "DataWrangler" || "FeatureStore" || "EmrClusters" || "AutoMl" || "Experiments" || "Training" || "ModelEvaluation" || "Pipelines" || "Models" || "JumpStart" || "InferenceRecommender" || "Endpoints" || "Projects",
205
+ * ],
206
+ * HiddenAppTypes: [ // HiddenAppTypesList
207
+ * "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
208
+ * ],
209
+ * },
202
210
  * },
203
211
  * };
204
212
  * const command = new UpdateUserProfileCommand(input);
@@ -8248,7 +8248,7 @@ export interface ClarifyExplainerConfig {
8248
8248
  }
8249
8249
  /**
8250
8250
  * <p>Defines the configuration for attaching an additional Amazon Elastic Block Store (EBS)
8251
- * volume to each instance of the SageMaker HyperPod cluster instance group.</p>
8251
+ * volume to each instance of the SageMaker HyperPod cluster instance group. To learn more, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-release-notes.html#sagemaker-hyperpod-release-notes-20240620">SageMaker HyperPod release notes: June 20, 2024</a>.</p>
8252
8252
  * @public
8253
8253
  */
8254
8254
  export interface ClusterEbsVolumeConfig {
@@ -8263,7 +8263,7 @@ export interface ClusterEbsVolumeConfig {
8263
8263
  }
8264
8264
  /**
8265
8265
  * <p>Defines the configuration for attaching additional storage to the instances in the
8266
- * SageMaker HyperPod cluster instance group.</p>
8266
+ * SageMaker HyperPod cluster instance group. To learn more, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-release-notes.html#sagemaker-hyperpod-release-notes-20240620">SageMaker HyperPod release notes: June 20, 2024</a>.</p>
8267
8267
  * @public
8268
8268
  */
8269
8269
  export type ClusterInstanceStorageConfig = ClusterInstanceStorageConfig.EbsVolumeConfigMember | ClusterInstanceStorageConfig.$UnknownMember;
@@ -1,5 +1,5 @@
1
1
  import { LazyJsonString as __LazyJsonString } from "@smithy/smithy-client";
2
- import { AdditionalInferenceSpecificationDefinition, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, CollectionType, ContainerDefinition, ContentClassifier, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, FeatureStatus, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, TrainingInputMode, TrainingInstanceType, TransformJobDefinition, VpcConfig } from "./models_0";
2
+ import { AdditionalInferenceSpecificationDefinition, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, CollectionType, ContainerDefinition, ContentClassifier, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, FeatureStatus, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, TrainingInputMode, TrainingInstanceType, TransformJobDefinition, VpcConfig } from "./models_0";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1811,6 +1811,45 @@ export declare const StudioWebPortal: {
1811
1811
  * @public
1812
1812
  */
1813
1813
  export type StudioWebPortal = (typeof StudioWebPortal)[keyof typeof StudioWebPortal];
1814
+ /**
1815
+ * @public
1816
+ * @enum
1817
+ */
1818
+ export declare const MlTools: {
1819
+ readonly AUTO_ML: "AutoMl";
1820
+ readonly DATA_WRANGLER: "DataWrangler";
1821
+ readonly EMR_CLUSTERS: "EmrClusters";
1822
+ readonly ENDPOINTS: "Endpoints";
1823
+ readonly EXPERIMENTS: "Experiments";
1824
+ readonly FEATURE_STORE: "FeatureStore";
1825
+ readonly INFERENCE_RECOMMENDER: "InferenceRecommender";
1826
+ readonly JUMP_START: "JumpStart";
1827
+ readonly MODELS: "Models";
1828
+ readonly MODEL_EVALUATION: "ModelEvaluation";
1829
+ readonly PIPELINES: "Pipelines";
1830
+ readonly PROJECTS: "Projects";
1831
+ readonly TRAINING: "Training";
1832
+ };
1833
+ /**
1834
+ * @public
1835
+ */
1836
+ export type MlTools = (typeof MlTools)[keyof typeof MlTools];
1837
+ /**
1838
+ * <p>Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.</p>
1839
+ * @public
1840
+ */
1841
+ export interface StudioWebPortalSettings {
1842
+ /**
1843
+ * <p>The machine learning tools that are hidden from the Studio left navigation pane.</p>
1844
+ * @public
1845
+ */
1846
+ HiddenMlTools?: MlTools[];
1847
+ /**
1848
+ * <p>The <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/studio-updated-apps.html">Applications supported in Studio</a> that are hidden from the Studio left navigation pane.</p>
1849
+ * @public
1850
+ */
1851
+ HiddenAppTypes?: AppType[];
1852
+ }
1814
1853
  /**
1815
1854
  * <p>The TensorBoard app settings.</p>
1816
1855
  * @public
@@ -1931,6 +1970,11 @@ export interface UserSettings {
1931
1970
  * @public
1932
1971
  */
1933
1972
  CustomFileSystemConfigs?: CustomFileSystemConfig[];
1973
+ /**
1974
+ * <p>Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.</p>
1975
+ * @public
1976
+ */
1977
+ StudioWebPortalSettings?: StudioWebPortalSettings;
1934
1978
  }
1935
1979
  /**
1936
1980
  * <p>A collection of settings that configure the domain's Docker interaction.</p>
@@ -11620,50 +11664,6 @@ export interface ServiceCatalogProvisioningDetails {
11620
11664
  */
11621
11665
  ProvisioningParameters?: ProvisioningParameter[];
11622
11666
  }
11623
- /**
11624
- * @public
11625
- */
11626
- export interface CreateProjectInput {
11627
- /**
11628
- * <p>The name of the project.</p>
11629
- * @public
11630
- */
11631
- ProjectName: string | undefined;
11632
- /**
11633
- * <p>A description for the project.</p>
11634
- * @public
11635
- */
11636
- ProjectDescription?: string;
11637
- /**
11638
- * <p>The product ID and provisioning artifact ID to provision a service catalog. The provisioning
11639
- * artifact ID will default to the latest provisioning artifact ID of the product, if you don't
11640
- * provide the provisioning artifact ID. For more information, see <a href="https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html">What is Amazon Web Services Service
11641
- * Catalog</a>.</p>
11642
- * @public
11643
- */
11644
- ServiceCatalogProvisioningDetails: ServiceCatalogProvisioningDetails | undefined;
11645
- /**
11646
- * <p>An array of key-value pairs that you want to use to organize and track your Amazon Web Services
11647
- * resource costs. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
11648
- * @public
11649
- */
11650
- Tags?: Tag[];
11651
- }
11652
- /**
11653
- * @public
11654
- */
11655
- export interface CreateProjectOutput {
11656
- /**
11657
- * <p>The Amazon Resource Name (ARN) of the project.</p>
11658
- * @public
11659
- */
11660
- ProjectArn: string | undefined;
11661
- /**
11662
- * <p>The ID of the new project.</p>
11663
- * @public
11664
- */
11665
- ProjectId: string | undefined;
11666
- }
11667
11667
  /**
11668
11668
  * @internal
11669
11669
  */
@@ -1,5 +1,49 @@
1
1
  import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CodeEditorAppImageConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, JobType, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, MonitoringType, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ProcessingInstanceType, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, TrackingServerSize, UserSettings, VendorGuidance } from "./models_1";
2
+ import { DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, JobType, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ProcessingInstanceType, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, TrackingServerSize, UserSettings, VendorGuidance } from "./models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface CreateProjectInput {
7
+ /**
8
+ * <p>The name of the project.</p>
9
+ * @public
10
+ */
11
+ ProjectName: string | undefined;
12
+ /**
13
+ * <p>A description for the project.</p>
14
+ * @public
15
+ */
16
+ ProjectDescription?: string;
17
+ /**
18
+ * <p>The product ID and provisioning artifact ID to provision a service catalog. The provisioning
19
+ * artifact ID will default to the latest provisioning artifact ID of the product, if you don't
20
+ * provide the provisioning artifact ID. For more information, see <a href="https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html">What is Amazon Web Services Service
21
+ * Catalog</a>.</p>
22
+ * @public
23
+ */
24
+ ServiceCatalogProvisioningDetails: ServiceCatalogProvisioningDetails | undefined;
25
+ /**
26
+ * <p>An array of key-value pairs that you want to use to organize and track your Amazon Web Services
27
+ * resource costs. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
28
+ * @public
29
+ */
30
+ Tags?: Tag[];
31
+ }
32
+ /**
33
+ * @public
34
+ */
35
+ export interface CreateProjectOutput {
36
+ /**
37
+ * <p>The Amazon Resource Name (ARN) of the project.</p>
38
+ * @public
39
+ */
40
+ ProjectArn: string | undefined;
41
+ /**
42
+ * <p>The ID of the new project.</p>
43
+ * @public
44
+ */
45
+ ProjectId: string | undefined;
46
+ }
3
47
  /**
4
48
  * <p>The collection of ownership settings for a space.</p>
5
49
  * @public
@@ -2087,7 +2131,7 @@ export interface DeleteHubContentReferenceRequest {
2087
2131
  */
2088
2132
  HubName: string | undefined;
2089
2133
  /**
2090
- * <p>The type of hub content to delete.</p>
2134
+ * <p>The type of hub content reference to delete. The only supported type of hub content reference to delete is <code>ModelReference</code>.</p>
2091
2135
  * @public
2092
2136
  */
2093
2137
  HubContentType: HubContentType | undefined;
@@ -8283,79 +8327,6 @@ export interface DescribeMonitoringScheduleRequest {
8283
8327
  */
8284
8328
  MonitoringScheduleName: string | undefined;
8285
8329
  }
8286
- /**
8287
- * @public
8288
- * @enum
8289
- */
8290
- export declare const ExecutionStatus: {
8291
- readonly COMPLETED: "Completed";
8292
- readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
8293
- readonly FAILED: "Failed";
8294
- readonly IN_PROGRESS: "InProgress";
8295
- readonly PENDING: "Pending";
8296
- readonly STOPPED: "Stopped";
8297
- readonly STOPPING: "Stopping";
8298
- };
8299
- /**
8300
- * @public
8301
- */
8302
- export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
8303
- /**
8304
- * <p>Summary of information about the last monitoring job to run.</p>
8305
- * @public
8306
- */
8307
- export interface MonitoringExecutionSummary {
8308
- /**
8309
- * <p>The name of the monitoring schedule.</p>
8310
- * @public
8311
- */
8312
- MonitoringScheduleName: string | undefined;
8313
- /**
8314
- * <p>The time the monitoring job was scheduled.</p>
8315
- * @public
8316
- */
8317
- ScheduledTime: Date | undefined;
8318
- /**
8319
- * <p>The time at which the monitoring job was created.</p>
8320
- * @public
8321
- */
8322
- CreationTime: Date | undefined;
8323
- /**
8324
- * <p>A timestamp that indicates the last time the monitoring job was modified.</p>
8325
- * @public
8326
- */
8327
- LastModifiedTime: Date | undefined;
8328
- /**
8329
- * <p>The status of the monitoring job.</p>
8330
- * @public
8331
- */
8332
- MonitoringExecutionStatus: ExecutionStatus | undefined;
8333
- /**
8334
- * <p>The Amazon Resource Name (ARN) of the monitoring job.</p>
8335
- * @public
8336
- */
8337
- ProcessingJobArn?: string;
8338
- /**
8339
- * <p>The name of the endpoint used to run the monitoring job.</p>
8340
- * @public
8341
- */
8342
- EndpointName?: string;
8343
- /**
8344
- * <p>Contains the reason a monitoring job failed, if it failed.</p>
8345
- * @public
8346
- */
8347
- FailureReason?: string;
8348
- /**
8349
- * <p>The name of the monitoring job.</p>
8350
- * @public
8351
- */
8352
- MonitoringJobDefinitionName?: string;
8353
- /**
8354
- * <p>The type of the monitoring job.</p>
8355
- * @public
8356
- */
8357
- MonitoringType?: MonitoringType;
8358
- }
8359
8330
  /**
8360
8331
  * @internal
8361
8332
  */
@@ -1,6 +1,79 @@
1
1
  import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, DirectInternetAccess, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, RecommendationJobType, ResourceLimits, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, UserSettings } from "./models_1";
3
- import { CrossAccountFilterOption, CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentSupportStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, OwnershipSettings, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration } from "./models_2";
3
+ import { CrossAccountFilterOption, CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentSupportStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, OwnershipSettings, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration } from "./models_2";
4
+ /**
5
+ * @public
6
+ * @enum
7
+ */
8
+ export declare const ExecutionStatus: {
9
+ readonly COMPLETED: "Completed";
10
+ readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
11
+ readonly FAILED: "Failed";
12
+ readonly IN_PROGRESS: "InProgress";
13
+ readonly PENDING: "Pending";
14
+ readonly STOPPED: "Stopped";
15
+ readonly STOPPING: "Stopping";
16
+ };
17
+ /**
18
+ * @public
19
+ */
20
+ export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
21
+ /**
22
+ * <p>Summary of information about the last monitoring job to run.</p>
23
+ * @public
24
+ */
25
+ export interface MonitoringExecutionSummary {
26
+ /**
27
+ * <p>The name of the monitoring schedule.</p>
28
+ * @public
29
+ */
30
+ MonitoringScheduleName: string | undefined;
31
+ /**
32
+ * <p>The time the monitoring job was scheduled.</p>
33
+ * @public
34
+ */
35
+ ScheduledTime: Date | undefined;
36
+ /**
37
+ * <p>The time at which the monitoring job was created.</p>
38
+ * @public
39
+ */
40
+ CreationTime: Date | undefined;
41
+ /**
42
+ * <p>A timestamp that indicates the last time the monitoring job was modified.</p>
43
+ * @public
44
+ */
45
+ LastModifiedTime: Date | undefined;
46
+ /**
47
+ * <p>The status of the monitoring job.</p>
48
+ * @public
49
+ */
50
+ MonitoringExecutionStatus: ExecutionStatus | undefined;
51
+ /**
52
+ * <p>The Amazon Resource Name (ARN) of the monitoring job.</p>
53
+ * @public
54
+ */
55
+ ProcessingJobArn?: string;
56
+ /**
57
+ * <p>The name of the endpoint used to run the monitoring job.</p>
58
+ * @public
59
+ */
60
+ EndpointName?: string;
61
+ /**
62
+ * <p>Contains the reason a monitoring job failed, if it failed.</p>
63
+ * @public
64
+ */
65
+ FailureReason?: string;
66
+ /**
67
+ * <p>The name of the monitoring job.</p>
68
+ * @public
69
+ */
70
+ MonitoringJobDefinitionName?: string;
71
+ /**
72
+ * <p>The type of the monitoring job.</p>
73
+ * @public
74
+ */
75
+ MonitoringType?: MonitoringType;
76
+ }
4
77
  /**
5
78
  * @public
6
79
  * @enum
@@ -9744,32 +9817,3 @@ export interface ModelSummary {
9744
9817
  */
9745
9818
  CreationTime: Date | undefined;
9746
9819
  }
9747
- /**
9748
- * @public
9749
- */
9750
- export interface ListModelsOutput {
9751
- /**
9752
- * <p>An array of <code>ModelSummary</code> objects, each of which lists a
9753
- * model.</p>
9754
- * @public
9755
- */
9756
- Models: ModelSummary[] | undefined;
9757
- /**
9758
- * <p> If the response is truncated, SageMaker returns this token. To retrieve the next set of
9759
- * models, use it in the subsequent request. </p>
9760
- * @public
9761
- */
9762
- NextToken?: string;
9763
- }
9764
- /**
9765
- * @public
9766
- * @enum
9767
- */
9768
- export declare const MonitoringAlertHistorySortKey: {
9769
- readonly CreationTime: "CreationTime";
9770
- readonly Status: "Status";
9771
- };
9772
- /**
9773
- * @public
9774
- */
9775
- export type MonitoringAlertHistorySortKey = (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
@@ -1,7 +1,36 @@
1
1
  import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AutoMLJobStepMetadata, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ClusterInstanceGroupSpecification, CodeEditorAppImageConfig, ConditionStepMetadata, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, TrackingServerSize, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
3
- import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, ExecutionStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, ProfilerConfig, ProfilerRuleConfiguration, SharingType, SourceIpConfig, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
4
- import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, MonitoringAlertHistorySortKey, NotebookInstanceStatus, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SpaceStatus, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
3
+ import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, NotificationConfiguration, OidcConfig, ProfilerConfig, ProfilerRuleConfiguration, SharingType, SourceIpConfig, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
4
+ import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, ExecutionStatus, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, ModelSummary, MonitoringExecutionSummary, NotebookInstanceStatus, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SpaceStatus, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface ListModelsOutput {
9
+ /**
10
+ * <p>An array of <code>ModelSummary</code> objects, each of which lists a
11
+ * model.</p>
12
+ * @public
13
+ */
14
+ Models: ModelSummary[] | undefined;
15
+ /**
16
+ * <p> If the response is truncated, SageMaker returns this token. To retrieve the next set of
17
+ * models, use it in the subsequent request. </p>
18
+ * @public
19
+ */
20
+ NextToken?: string;
21
+ }
22
+ /**
23
+ * @public
24
+ * @enum
25
+ */
26
+ export declare const MonitoringAlertHistorySortKey: {
27
+ readonly CreationTime: "CreationTime";
28
+ readonly Status: "Status";
29
+ };
30
+ /**
31
+ * @public
32
+ */
33
+ export type MonitoringAlertHistorySortKey = (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
5
34
  /**
6
35
  * @public
7
36
  * @enum
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { CreateProjectInput, CreateProjectOutput } from "../models/models_1";
3
+ import { CreateProjectInput, CreateProjectOutput } from "../models/models_2";
4
4
  import {
5
5
  SageMakerClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListModelsInput, ListModelsOutput } from "../models/models_3";
3
+ import { ListModelsInput } from "../models/models_3";
4
+ import { ListModelsOutput } from "../models/models_4";
4
5
  import {
5
6
  SageMakerClientResolvedConfig,
6
7
  ServiceInputTypes,
@@ -5,6 +5,7 @@ import {
5
5
  AppNetworkAccessType,
6
6
  AppSecurityGroupManagement,
7
7
  AppSpecification,
8
+ AppType,
8
9
  AsyncInferenceConfig,
9
10
  AthenaDatasetDefinition,
10
11
  AuthMode,
@@ -371,6 +372,26 @@ export declare const StudioWebPortal: {
371
372
  };
372
373
  export type StudioWebPortal =
373
374
  (typeof StudioWebPortal)[keyof typeof StudioWebPortal];
375
+ export declare const MlTools: {
376
+ readonly AUTO_ML: "AutoMl";
377
+ readonly DATA_WRANGLER: "DataWrangler";
378
+ readonly EMR_CLUSTERS: "EmrClusters";
379
+ readonly ENDPOINTS: "Endpoints";
380
+ readonly EXPERIMENTS: "Experiments";
381
+ readonly FEATURE_STORE: "FeatureStore";
382
+ readonly INFERENCE_RECOMMENDER: "InferenceRecommender";
383
+ readonly JUMP_START: "JumpStart";
384
+ readonly MODELS: "Models";
385
+ readonly MODEL_EVALUATION: "ModelEvaluation";
386
+ readonly PIPELINES: "Pipelines";
387
+ readonly PROJECTS: "Projects";
388
+ readonly TRAINING: "Training";
389
+ };
390
+ export type MlTools = (typeof MlTools)[keyof typeof MlTools];
391
+ export interface StudioWebPortalSettings {
392
+ HiddenMlTools?: MlTools[];
393
+ HiddenAppTypes?: AppType[];
394
+ }
374
395
  export interface TensorBoardAppSettings {
375
396
  DefaultResourceSpec?: ResourceSpec;
376
397
  }
@@ -391,6 +412,7 @@ export interface UserSettings {
391
412
  StudioWebPortal?: StudioWebPortal;
392
413
  CustomPosixUserConfig?: CustomPosixUserConfig;
393
414
  CustomFileSystemConfigs?: CustomFileSystemConfig[];
415
+ StudioWebPortalSettings?: StudioWebPortalSettings;
394
416
  }
395
417
  export interface DockerSettings {
396
418
  EnableDockerAccess?: FeatureStatus;
@@ -1970,18 +1992,6 @@ export interface ServiceCatalogProvisioningDetails {
1970
1992
  PathId?: string;
1971
1993
  ProvisioningParameters?: ProvisioningParameter[];
1972
1994
  }
1973
- export interface CreateProjectInput {
1974
- ProjectName: string | undefined;
1975
- ProjectDescription?: string;
1976
- ServiceCatalogProvisioningDetails:
1977
- | ServiceCatalogProvisioningDetails
1978
- | undefined;
1979
- Tags?: Tag[];
1980
- }
1981
- export interface CreateProjectOutput {
1982
- ProjectArn: string | undefined;
1983
- ProjectId: string | undefined;
1984
- }
1985
1995
  export declare const CreateModelCardRequestFilterSensitiveLog: (
1986
1996
  obj: CreateModelCardRequest
1987
1997
  ) => any;
@@ -133,7 +133,6 @@ import {
133
133
  MonitoringOutputConfig,
134
134
  MonitoringResources,
135
135
  MonitoringStoppingCondition,
136
- MonitoringType,
137
136
  NeoVpcConfig,
138
137
  OfflineStoreConfig,
139
138
  OnlineStoreConfig,
@@ -149,6 +148,7 @@ import {
149
148
  RecommendationJobStoppingConditions,
150
149
  RecommendationJobType,
151
150
  RetryStrategy,
151
+ ServiceCatalogProvisioningDetails,
152
152
  ShadowModeConfig,
153
153
  SkipModelValidation,
154
154
  SourceAlgorithmSpecification,
@@ -157,6 +157,18 @@ import {
157
157
  UserSettings,
158
158
  VendorGuidance,
159
159
  } from "./models_1";
160
+ export interface CreateProjectInput {
161
+ ProjectName: string | undefined;
162
+ ProjectDescription?: string;
163
+ ServiceCatalogProvisioningDetails:
164
+ | ServiceCatalogProvisioningDetails
165
+ | undefined;
166
+ Tags?: Tag[];
167
+ }
168
+ export interface CreateProjectOutput {
169
+ ProjectArn: string | undefined;
170
+ ProjectId: string | undefined;
171
+ }
160
172
  export interface OwnershipSettings {
161
173
  OwnerUserProfileName: string | undefined;
162
174
  }
@@ -2099,29 +2111,6 @@ export interface DescribeModelQualityJobDefinitionResponse {
2099
2111
  export interface DescribeMonitoringScheduleRequest {
2100
2112
  MonitoringScheduleName: string | undefined;
2101
2113
  }
2102
- export declare const ExecutionStatus: {
2103
- readonly COMPLETED: "Completed";
2104
- readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
2105
- readonly FAILED: "Failed";
2106
- readonly IN_PROGRESS: "InProgress";
2107
- readonly PENDING: "Pending";
2108
- readonly STOPPED: "Stopped";
2109
- readonly STOPPING: "Stopping";
2110
- };
2111
- export type ExecutionStatus =
2112
- (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
2113
- export interface MonitoringExecutionSummary {
2114
- MonitoringScheduleName: string | undefined;
2115
- ScheduledTime: Date | undefined;
2116
- CreationTime: Date | undefined;
2117
- LastModifiedTime: Date | undefined;
2118
- MonitoringExecutionStatus: ExecutionStatus | undefined;
2119
- ProcessingJobArn?: string;
2120
- EndpointName?: string;
2121
- FailureReason?: string;
2122
- MonitoringJobDefinitionName?: string;
2123
- MonitoringType?: MonitoringType;
2124
- }
2125
2114
  export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
2126
2115
  export declare const CreateWorkforceRequestFilterSensitiveLog: (
2127
2116
  obj: CreateWorkforceRequest
@@ -126,7 +126,6 @@ import {
126
126
  ModelClientConfig,
127
127
  ModelConfiguration,
128
128
  ModelPackageGroupStatus,
129
- MonitoringExecutionSummary,
130
129
  NotificationConfiguration,
131
130
  ObjectiveStatusCounters,
132
131
  OfflineStoreStatus,
@@ -152,6 +151,29 @@ import {
152
151
  TrialComponentStatus,
153
152
  WorkerAccessConfiguration,
154
153
  } from "./models_2";
154
+ export declare const ExecutionStatus: {
155
+ readonly COMPLETED: "Completed";
156
+ readonly COMPLETED_WITH_VIOLATIONS: "CompletedWithViolations";
157
+ readonly FAILED: "Failed";
158
+ readonly IN_PROGRESS: "InProgress";
159
+ readonly PENDING: "Pending";
160
+ readonly STOPPED: "Stopped";
161
+ readonly STOPPING: "Stopping";
162
+ };
163
+ export type ExecutionStatus =
164
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
165
+ export interface MonitoringExecutionSummary {
166
+ MonitoringScheduleName: string | undefined;
167
+ ScheduledTime: Date | undefined;
168
+ CreationTime: Date | undefined;
169
+ LastModifiedTime: Date | undefined;
170
+ MonitoringExecutionStatus: ExecutionStatus | undefined;
171
+ ProcessingJobArn?: string;
172
+ EndpointName?: string;
173
+ FailureReason?: string;
174
+ MonitoringJobDefinitionName?: string;
175
+ MonitoringType?: MonitoringType;
176
+ }
155
177
  export declare const ScheduleStatus: {
156
178
  readonly FAILED: "Failed";
157
179
  readonly PENDING: "Pending";
@@ -2370,13 +2392,3 @@ export interface ModelSummary {
2370
2392
  ModelArn: string | undefined;
2371
2393
  CreationTime: Date | undefined;
2372
2394
  }
2373
- export interface ListModelsOutput {
2374
- Models: ModelSummary[] | undefined;
2375
- NextToken?: string;
2376
- }
2377
- export declare const MonitoringAlertHistorySortKey: {
2378
- readonly CreationTime: "CreationTime";
2379
- readonly Status: "Status";
2380
- };
2381
- export type MonitoringAlertHistorySortKey =
2382
- (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
@@ -93,7 +93,6 @@ import {
93
93
  DebugRuleEvaluationStatus,
94
94
  DeploymentRecommendation,
95
95
  EndpointStatus,
96
- ExecutionStatus,
97
96
  FeatureParameter,
98
97
  HyperParameterTrainingJobSummary,
99
98
  MemberDefinition,
@@ -101,7 +100,6 @@ import {
101
100
  ModelClientConfig,
102
101
  ModelPackageGroupStatus,
103
102
  ModelPackageStatusDetails,
104
- MonitoringExecutionSummary,
105
103
  NotificationConfiguration,
106
104
  OidcConfig,
107
105
  ProfilerConfig,
@@ -128,6 +126,7 @@ import {
128
126
  Edge,
129
127
  EMRStepMetadata,
130
128
  Endpoint,
129
+ ExecutionStatus,
131
130
  Experiment,
132
131
  FailStepMetadata,
133
132
  FeatureGroup,
@@ -139,7 +138,8 @@ import {
139
138
  LambdaStepMetadata,
140
139
  LineageType,
141
140
  MetricData,
142
- MonitoringAlertHistorySortKey,
141
+ ModelSummary,
142
+ MonitoringExecutionSummary,
143
143
  NotebookInstanceStatus,
144
144
  PipelineExecutionStatus,
145
145
  PipelineExperimentConfig,
@@ -166,6 +166,16 @@ import {
166
166
  Workforce,
167
167
  Workteam,
168
168
  } from "./models_3";
169
+ export interface ListModelsOutput {
170
+ Models: ModelSummary[] | undefined;
171
+ NextToken?: string;
172
+ }
173
+ export declare const MonitoringAlertHistorySortKey: {
174
+ readonly CreationTime: "CreationTime";
175
+ readonly Status: "Status";
176
+ };
177
+ export type MonitoringAlertHistorySortKey =
178
+ (typeof MonitoringAlertHistorySortKey)[keyof typeof MonitoringAlertHistorySortKey];
169
179
  export declare const MonitoringAlertStatus: {
170
180
  readonly IN_ALERT: "InAlert";
171
181
  readonly OK: "OK";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.602.0",
4
+ "version": "3.606.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
@@ -20,8 +20,8 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.600.0",
24
- "@aws-sdk/client-sts": "3.600.0",
23
+ "@aws-sdk/client-sso-oidc": "3.606.0",
24
+ "@aws-sdk/client-sts": "3.606.0",
25
25
  "@aws-sdk/core": "3.598.0",
26
26
  "@aws-sdk/credential-provider-node": "3.600.0",
27
27
  "@aws-sdk/middleware-host-header": "3.598.0",