@aws-sdk/client-sagemaker 3.841.0 → 3.844.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 (64) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +135 -28
  3. package/dist-es/SageMaker.js +4 -0
  4. package/dist-es/commands/CreateHubContentPresignedUrlsCommand.js +22 -0
  5. package/dist-es/commands/CreateModelPackageCommand.js +1 -1
  6. package/dist-es/commands/StartSessionCommand.js +22 -0
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/models/models_0.js +0 -4
  9. package/dist-es/models/models_1.js +9 -4
  10. package/dist-es/models/models_2.js +5 -17
  11. package/dist-es/models/models_3.js +12 -0
  12. package/dist-es/pagination/CreateHubContentPresignedUrlsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/protocols/Aws_json1_1.js +67 -0
  15. package/dist-types/SageMaker.d.ts +14 -0
  16. package/dist-types/SageMakerClient.d.ts +4 -2
  17. package/dist-types/commands/CreateDomainCommand.d.ts +2 -2
  18. package/dist-types/commands/CreateHubContentPresignedUrlsCommand.d.ts +87 -0
  19. package/dist-types/commands/CreateModelPackageCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateModelPackageGroupCommand.d.ts +1 -2
  21. package/dist-types/commands/CreateSpaceCommand.d.ts +1 -0
  22. package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
  23. package/dist-types/commands/DescribeSpaceCommand.d.ts +1 -0
  24. package/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListAutoMLJobsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListSpacesCommand.d.ts +1 -0
  27. package/dist-types/commands/SendPipelineExecutionStepFailureCommand.d.ts +2 -1
  28. package/dist-types/commands/SendPipelineExecutionStepSuccessCommand.d.ts +1 -1
  29. package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +1 -1
  30. package/dist-types/commands/StartSessionCommand.d.ts +80 -0
  31. package/dist-types/commands/UpdateSpaceCommand.d.ts +1 -0
  32. package/dist-types/commands/index.d.ts +2 -0
  33. package/dist-types/models/models_0.d.ts +16 -12
  34. package/dist-types/models/models_1.d.ts +99 -189
  35. package/dist-types/models/models_2.d.ts +191 -72
  36. package/dist-types/models/models_3.d.ts +62 -148
  37. package/dist-types/models/models_4.d.ts +154 -59
  38. package/dist-types/models/models_5.d.ts +88 -3
  39. package/dist-types/pagination/CreateHubContentPresignedUrlsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  42. package/dist-types/ts3.4/SageMaker.d.ts +34 -0
  43. package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
  44. package/dist-types/ts3.4/commands/CreateHubContentPresignedUrlsCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/CreateModelPackageCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/CreateModelPackageGroupCommand.d.ts +4 -2
  47. package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
  48. package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/ListAutoMLJobsCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/SendPipelineExecutionStepFailureCommand.d.ts +2 -4
  51. package/dist-types/ts3.4/commands/SendPipelineExecutionStepSuccessCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +47 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +4 -6
  56. package/dist-types/ts3.4/models/models_1.d.ts +33 -52
  57. package/dist-types/ts3.4/models/models_2.d.ts +58 -31
  58. package/dist-types/ts3.4/models/models_3.d.ts +26 -42
  59. package/dist-types/ts3.4/models/models_4.d.ts +44 -19
  60. package/dist-types/ts3.4/models/models_5.d.ts +25 -1
  61. package/dist-types/ts3.4/pagination/CreateHubContentPresignedUrlsPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  63. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  64. package/package.json +14 -14
@@ -186,6 +186,12 @@ export const se_CreateHubCommand = async (input, context) => {
186
186
  body = JSON.stringify(_json(input));
187
187
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
188
188
  };
189
+ export const se_CreateHubContentPresignedUrlsCommand = async (input, context) => {
190
+ const headers = sharedHeaders("CreateHubContentPresignedUrls");
191
+ let body;
192
+ body = JSON.stringify(_json(input));
193
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
194
+ };
189
195
  export const se_CreateHubContentReferenceCommand = async (input, context) => {
190
196
  const headers = sharedHeaders("CreateHubContentReference");
191
197
  let body;
@@ -1800,6 +1806,12 @@ export const se_StartPipelineExecutionCommand = async (input, context) => {
1800
1806
  body = JSON.stringify(se_StartPipelineExecutionRequest(input, context));
1801
1807
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1802
1808
  };
1809
+ export const se_StartSessionCommand = async (input, context) => {
1810
+ const headers = sharedHeaders("StartSession");
1811
+ let body;
1812
+ body = JSON.stringify(_json(input));
1813
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1814
+ };
1803
1815
  export const se_StopAutoMLJobCommand = async (input, context) => {
1804
1816
  const headers = sharedHeaders("StopAutoMLJob");
1805
1817
  let body;
@@ -2535,6 +2547,19 @@ export const de_CreateHubCommand = async (output, context) => {
2535
2547
  };
2536
2548
  return response;
2537
2549
  };
2550
+ export const de_CreateHubContentPresignedUrlsCommand = async (output, context) => {
2551
+ if (output.statusCode >= 300) {
2552
+ return de_CommandError(output, context);
2553
+ }
2554
+ const data = await parseBody(output.body, context);
2555
+ let contents = {};
2556
+ contents = de_CreateHubContentPresignedUrlsResponse(data, context);
2557
+ const response = {
2558
+ $metadata: deserializeMetadata(output),
2559
+ ...contents,
2560
+ };
2561
+ return response;
2562
+ };
2538
2563
  export const de_CreateHubContentReferenceCommand = async (output, context) => {
2539
2564
  if (output.statusCode >= 300) {
2540
2565
  return de_CommandError(output, context);
@@ -5909,6 +5934,19 @@ export const de_StartPipelineExecutionCommand = async (output, context) => {
5909
5934
  };
5910
5935
  return response;
5911
5936
  };
5937
+ export const de_StartSessionCommand = async (output, context) => {
5938
+ if (output.statusCode >= 300) {
5939
+ return de_CommandError(output, context);
5940
+ }
5941
+ const data = await parseBody(output.body, context);
5942
+ let contents = {};
5943
+ contents = de_StartSessionResponse(data, context);
5944
+ const response = {
5945
+ $metadata: deserializeMetadata(output),
5946
+ ...contents,
5947
+ };
5948
+ return response;
5949
+ };
5912
5950
  export const de_StopAutoMLJobCommand = async (output, context) => {
5913
5951
  if (output.statusCode >= 300) {
5914
5952
  return de_CommandError(output, context);
@@ -8521,6 +8559,20 @@ const de_AuthenticationRequestExtraParams = (output, context) => {
8521
8559
  return acc;
8522
8560
  }, {});
8523
8561
  };
8562
+ const de_AuthorizedUrl = (output, context) => {
8563
+ return take(output, {
8564
+ LocalPath: __expectString,
8565
+ Url: __expectString,
8566
+ });
8567
+ };
8568
+ const de_AuthorizedUrlConfigs = (output, context) => {
8569
+ const retVal = (output || [])
8570
+ .filter((e) => e != null)
8571
+ .map((entry) => {
8572
+ return de_AuthorizedUrl(entry, context);
8573
+ });
8574
+ return retVal;
8575
+ };
8524
8576
  const de_AutoMLAlgorithmConfig = (output, context) => {
8525
8577
  return take(output, {
8526
8578
  AutoMLAlgorithms: (_) => de_AutoMLAlgorithms(_, context),
@@ -9747,6 +9799,12 @@ const de_CreateFlowDefinitionResponse = (output, context) => {
9747
9799
  FlowDefinitionArn: __expectString,
9748
9800
  });
9749
9801
  };
9802
+ const de_CreateHubContentPresignedUrlsResponse = (output, context) => {
9803
+ return take(output, {
9804
+ AuthorizedUrlConfigs: (_) => de_AuthorizedUrlConfigs(_, context),
9805
+ NextToken: __expectString,
9806
+ });
9807
+ };
9750
9808
  const de_CreateHubContentReferenceResponse = (output, context) => {
9751
9809
  return take(output, {
9752
9810
  HubArn: __expectString,
@@ -16493,6 +16551,7 @@ const de_SpaceSettings = (output, context) => {
16493
16551
  JupyterLabAppSettings: (_) => de_SpaceJupyterLabAppSettings(_, context),
16494
16552
  JupyterServerAppSettings: (_) => de_JupyterServerAppSettings(_, context),
16495
16553
  KernelGatewayAppSettings: (_) => de_KernelGatewayAppSettings(_, context),
16554
+ RemoteAccess: __expectString,
16496
16555
  SpaceManagedResources: __expectString,
16497
16556
  SpaceStorageSettings: (_) => de_SpaceStorageSettings(_, context),
16498
16557
  });
@@ -16500,6 +16559,7 @@ const de_SpaceSettings = (output, context) => {
16500
16559
  const de_SpaceSettingsSummary = (output, context) => {
16501
16560
  return take(output, {
16502
16561
  AppType: __expectString,
16562
+ RemoteAccess: __expectString,
16503
16563
  SpaceStorageSettings: (_) => de_SpaceStorageSettings(_, context),
16504
16564
  });
16505
16565
  };
@@ -16540,6 +16600,13 @@ const de_StartPipelineExecutionResponse = (output, context) => {
16540
16600
  PipelineExecutionArn: __expectString,
16541
16601
  });
16542
16602
  };
16603
+ const de_StartSessionResponse = (output, context) => {
16604
+ return take(output, {
16605
+ SessionId: __expectString,
16606
+ StreamUrl: __expectString,
16607
+ TokenValue: __expectString,
16608
+ });
16609
+ };
16543
16610
  const de_StopInferenceExperimentResponse = (output, context) => {
16544
16611
  return take(output, {
16545
16612
  InferenceExperimentArn: __expectString,
@@ -29,6 +29,7 @@ import { CreateExperimentCommandInput, CreateExperimentCommandOutput } from "./c
29
29
  import { CreateFeatureGroupCommandInput, CreateFeatureGroupCommandOutput } from "./commands/CreateFeatureGroupCommand";
30
30
  import { CreateFlowDefinitionCommandInput, CreateFlowDefinitionCommandOutput } from "./commands/CreateFlowDefinitionCommand";
31
31
  import { CreateHubCommandInput, CreateHubCommandOutput } from "./commands/CreateHubCommand";
32
+ import { CreateHubContentPresignedUrlsCommandInput, CreateHubContentPresignedUrlsCommandOutput } from "./commands/CreateHubContentPresignedUrlsCommand";
32
33
  import { CreateHubContentReferenceCommandInput, CreateHubContentReferenceCommandOutput } from "./commands/CreateHubContentReferenceCommand";
33
34
  import { CreateHumanTaskUiCommandInput, CreateHumanTaskUiCommandOutput } from "./commands/CreateHumanTaskUiCommand";
34
35
  import { CreateHyperParameterTuningJobCommandInput, CreateHyperParameterTuningJobCommandOutput } from "./commands/CreateHyperParameterTuningJobCommand";
@@ -298,6 +299,7 @@ import { StartMlflowTrackingServerCommandInput, StartMlflowTrackingServerCommand
298
299
  import { StartMonitoringScheduleCommandInput, StartMonitoringScheduleCommandOutput } from "./commands/StartMonitoringScheduleCommand";
299
300
  import { StartNotebookInstanceCommandInput, StartNotebookInstanceCommandOutput } from "./commands/StartNotebookInstanceCommand";
300
301
  import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
302
+ import { StartSessionCommandInput, StartSessionCommandOutput } from "./commands/StartSessionCommand";
301
303
  import { StopAutoMLJobCommandInput, StopAutoMLJobCommandOutput } from "./commands/StopAutoMLJobCommand";
302
304
  import { StopCompilationJobCommandInput, StopCompilationJobCommandOutput } from "./commands/StopCompilationJobCommand";
303
305
  import { StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput } from "./commands/StopEdgeDeploymentStageCommand";
@@ -539,6 +541,12 @@ export interface SageMaker {
539
541
  createHub(args: CreateHubCommandInput, options?: __HttpHandlerOptions): Promise<CreateHubCommandOutput>;
540
542
  createHub(args: CreateHubCommandInput, cb: (err: any, data?: CreateHubCommandOutput) => void): void;
541
543
  createHub(args: CreateHubCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHubCommandOutput) => void): void;
544
+ /**
545
+ * @see {@link CreateHubContentPresignedUrlsCommand}
546
+ */
547
+ createHubContentPresignedUrls(args: CreateHubContentPresignedUrlsCommandInput, options?: __HttpHandlerOptions): Promise<CreateHubContentPresignedUrlsCommandOutput>;
548
+ createHubContentPresignedUrls(args: CreateHubContentPresignedUrlsCommandInput, cb: (err: any, data?: CreateHubContentPresignedUrlsCommandOutput) => void): void;
549
+ createHubContentPresignedUrls(args: CreateHubContentPresignedUrlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHubContentPresignedUrlsCommandOutput) => void): void;
542
550
  /**
543
551
  * @see {@link CreateHubContentReferenceCommand}
544
552
  */
@@ -2224,6 +2232,12 @@ export interface SageMaker {
2224
2232
  startPipelineExecution(args: StartPipelineExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartPipelineExecutionCommandOutput>;
2225
2233
  startPipelineExecution(args: StartPipelineExecutionCommandInput, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
2226
2234
  startPipelineExecution(args: StartPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
2235
+ /**
2236
+ * @see {@link StartSessionCommand}
2237
+ */
2238
+ startSession(args: StartSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartSessionCommandOutput>;
2239
+ startSession(args: StartSessionCommandInput, cb: (err: any, data?: StartSessionCommandOutput) => void): void;
2240
+ startSession(args: StartSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSessionCommandOutput) => void): void;
2227
2241
  /**
2228
2242
  * @see {@link StopAutoMLJobCommand}
2229
2243
  */
@@ -37,6 +37,7 @@ import { CreateExperimentCommandInput, CreateExperimentCommandOutput } from "./c
37
37
  import { CreateFeatureGroupCommandInput, CreateFeatureGroupCommandOutput } from "./commands/CreateFeatureGroupCommand";
38
38
  import { CreateFlowDefinitionCommandInput, CreateFlowDefinitionCommandOutput } from "./commands/CreateFlowDefinitionCommand";
39
39
  import { CreateHubCommandInput, CreateHubCommandOutput } from "./commands/CreateHubCommand";
40
+ import { CreateHubContentPresignedUrlsCommandInput, CreateHubContentPresignedUrlsCommandOutput } from "./commands/CreateHubContentPresignedUrlsCommand";
40
41
  import { CreateHubContentReferenceCommandInput, CreateHubContentReferenceCommandOutput } from "./commands/CreateHubContentReferenceCommand";
41
42
  import { CreateHumanTaskUiCommandInput, CreateHumanTaskUiCommandOutput } from "./commands/CreateHumanTaskUiCommand";
42
43
  import { CreateHyperParameterTuningJobCommandInput, CreateHyperParameterTuningJobCommandOutput } from "./commands/CreateHyperParameterTuningJobCommand";
@@ -306,6 +307,7 @@ import { StartMlflowTrackingServerCommandInput, StartMlflowTrackingServerCommand
306
307
  import { StartMonitoringScheduleCommandInput, StartMonitoringScheduleCommandOutput } from "./commands/StartMonitoringScheduleCommand";
307
308
  import { StartNotebookInstanceCommandInput, StartNotebookInstanceCommandOutput } from "./commands/StartNotebookInstanceCommand";
308
309
  import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
310
+ import { StartSessionCommandInput, StartSessionCommandOutput } from "./commands/StartSessionCommand";
309
311
  import { StopAutoMLJobCommandInput, StopAutoMLJobCommandOutput } from "./commands/StopAutoMLJobCommand";
310
312
  import { StopCompilationJobCommandInput, StopCompilationJobCommandOutput } from "./commands/StopCompilationJobCommand";
311
313
  import { StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput } from "./commands/StopEdgeDeploymentStageCommand";
@@ -371,11 +373,11 @@ export { __Client };
371
373
  /**
372
374
  * @public
373
375
  */
374
- export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDeleteClusterNodesCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateClusterSchedulerConfigCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateComputeQuotaCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHubContentReferenceCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateMlflowTrackingServerCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreateOptimizationJobCommandInput | CreatePartnerAppCommandInput | CreatePartnerAppPresignedUrlCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedMlflowTrackingServerUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTrainingPlanCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteClusterSchedulerConfigCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteComputeQuotaCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHubContentReferenceCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteMlflowTrackingServerCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeleteOptimizationJobCommandInput | DeletePartnerAppCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterNodeCommandInput | DescribeClusterSchedulerConfigCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeComputeQuotaCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeMlflowTrackingServerCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribeOptimizationJobCommandInput | DescribePartnerAppCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTrainingPlanCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterNodesCommandInput | ListClusterSchedulerConfigsCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListComputeQuotasCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHubContentVersionsCommandInput | ListHubContentsCommandInput | ListHubsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceComponentsCommandInput | ListInferenceExperimentsCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListMlflowTrackingServersCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListOptimizationJobsCommandInput | ListPartnerAppsCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTrainingPlansCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SearchTrainingPlanOfferingsCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMlflowTrackingServerCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMlflowTrackingServerCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopOptimizationJobCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSchedulerConfigCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateComputeQuotaCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateHubContentCommandInput | UpdateHubContentReferenceCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateMlflowTrackingServerCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePartnerAppCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
376
+ export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDeleteClusterNodesCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateClusterSchedulerConfigCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateComputeQuotaCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHubContentPresignedUrlsCommandInput | CreateHubContentReferenceCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateMlflowTrackingServerCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreateOptimizationJobCommandInput | CreatePartnerAppCommandInput | CreatePartnerAppPresignedUrlCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedMlflowTrackingServerUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTrainingPlanCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteClusterSchedulerConfigCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteComputeQuotaCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHubContentReferenceCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteMlflowTrackingServerCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeleteOptimizationJobCommandInput | DeletePartnerAppCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterNodeCommandInput | DescribeClusterSchedulerConfigCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeComputeQuotaCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeMlflowTrackingServerCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribeOptimizationJobCommandInput | DescribePartnerAppCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTrainingPlanCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterNodesCommandInput | ListClusterSchedulerConfigsCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListComputeQuotasCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHubContentVersionsCommandInput | ListHubContentsCommandInput | ListHubsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceComponentsCommandInput | ListInferenceExperimentsCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListMlflowTrackingServersCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListOptimizationJobsCommandInput | ListPartnerAppsCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTrainingPlansCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SearchTrainingPlanOfferingsCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMlflowTrackingServerCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StartSessionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMlflowTrackingServerCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopOptimizationJobCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSchedulerConfigCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateComputeQuotaCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateHubContentCommandInput | UpdateHubContentReferenceCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateMlflowTrackingServerCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePartnerAppCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
375
377
  /**
376
378
  * @public
377
379
  */
378
- export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDeleteClusterNodesCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateClusterSchedulerConfigCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateComputeQuotaCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHubContentReferenceCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateMlflowTrackingServerCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreateOptimizationJobCommandOutput | CreatePartnerAppCommandOutput | CreatePartnerAppPresignedUrlCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedMlflowTrackingServerUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTrainingPlanCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteClusterSchedulerConfigCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteComputeQuotaCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHubContentReferenceCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteMlflowTrackingServerCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeleteOptimizationJobCommandOutput | DeletePartnerAppCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterNodeCommandOutput | DescribeClusterSchedulerConfigCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeComputeQuotaCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeMlflowTrackingServerCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribeOptimizationJobCommandOutput | DescribePartnerAppCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTrainingPlanCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterNodesCommandOutput | ListClusterSchedulerConfigsCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListComputeQuotasCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHubContentVersionsCommandOutput | ListHubContentsCommandOutput | ListHubsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceComponentsCommandOutput | ListInferenceExperimentsCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListMlflowTrackingServersCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListOptimizationJobsCommandOutput | ListPartnerAppsCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTrainingPlansCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SearchTrainingPlanOfferingsCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMlflowTrackingServerCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMlflowTrackingServerCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopOptimizationJobCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSchedulerConfigCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateComputeQuotaCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateHubContentCommandOutput | UpdateHubContentReferenceCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateMlflowTrackingServerCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePartnerAppCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
380
+ export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDeleteClusterNodesCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateClusterSchedulerConfigCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateComputeQuotaCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHubContentPresignedUrlsCommandOutput | CreateHubContentReferenceCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateMlflowTrackingServerCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreateOptimizationJobCommandOutput | CreatePartnerAppCommandOutput | CreatePartnerAppPresignedUrlCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedMlflowTrackingServerUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTrainingPlanCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteClusterSchedulerConfigCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteComputeQuotaCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHubContentReferenceCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteMlflowTrackingServerCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeleteOptimizationJobCommandOutput | DeletePartnerAppCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterNodeCommandOutput | DescribeClusterSchedulerConfigCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeComputeQuotaCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeMlflowTrackingServerCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribeOptimizationJobCommandOutput | DescribePartnerAppCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTrainingPlanCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterNodesCommandOutput | ListClusterSchedulerConfigsCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListComputeQuotasCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHubContentVersionsCommandOutput | ListHubContentsCommandOutput | ListHubsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceComponentsCommandOutput | ListInferenceExperimentsCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListMlflowTrackingServersCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListOptimizationJobsCommandOutput | ListPartnerAppsCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTrainingPlansCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SearchTrainingPlanOfferingsCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMlflowTrackingServerCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StartSessionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMlflowTrackingServerCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopOptimizationJobCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSchedulerConfigCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateComputeQuotaCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateHubContentCommandOutput | UpdateHubContentReferenceCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateMlflowTrackingServerCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePartnerAppCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
379
381
  /**
380
382
  * @public
381
383
  */
@@ -286,10 +286,10 @@ declare const CreateDomainCommand_base: {
286
286
  * SingleSignOnApplicationArn: "STRING_VALUE",
287
287
  * },
288
288
  * },
289
- * SubnetIds: [ // Subnets // required
289
+ * SubnetIds: [ // Subnets
290
290
  * "STRING_VALUE",
291
291
  * ],
292
- * VpcId: "STRING_VALUE", // required
292
+ * VpcId: "STRING_VALUE",
293
293
  * Tags: [ // TagList
294
294
  * { // Tag
295
295
  * Key: "STRING_VALUE", // required
@@ -0,0 +1,87 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateHubContentPresignedUrlsRequest, CreateHubContentPresignedUrlsResponse } from "../models/models_1";
4
+ import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateHubContentPresignedUrlsCommand}.
14
+ */
15
+ export interface CreateHubContentPresignedUrlsCommandInput extends CreateHubContentPresignedUrlsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateHubContentPresignedUrlsCommand}.
21
+ */
22
+ export interface CreateHubContentPresignedUrlsCommandOutput extends CreateHubContentPresignedUrlsResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateHubContentPresignedUrlsCommand_base: {
25
+ new (input: CreateHubContentPresignedUrlsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHubContentPresignedUrlsCommandInput, CreateHubContentPresignedUrlsCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateHubContentPresignedUrlsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHubContentPresignedUrlsCommandInput, CreateHubContentPresignedUrlsCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates presigned URLs for accessing hub content artifacts. This operation generates time-limited, secure URLs that allow direct download of model artifacts and associated files from Amazon SageMaker hub content, including gated models that require end-user license agreement acceptance.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SageMakerClient, CreateHubContentPresignedUrlsCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
35
+ * // const { SageMakerClient, CreateHubContentPresignedUrlsCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
36
+ * const client = new SageMakerClient(config);
37
+ * const input = { // CreateHubContentPresignedUrlsRequest
38
+ * HubName: "STRING_VALUE", // required
39
+ * HubContentType: "Model" || "Notebook" || "ModelReference", // required
40
+ * HubContentName: "STRING_VALUE", // required
41
+ * HubContentVersion: "STRING_VALUE",
42
+ * AccessConfig: { // PresignedUrlAccessConfig
43
+ * AcceptEula: true || false,
44
+ * ExpectedS3Url: "STRING_VALUE",
45
+ * },
46
+ * MaxResults: Number("int"),
47
+ * NextToken: "STRING_VALUE",
48
+ * };
49
+ * const command = new CreateHubContentPresignedUrlsCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // CreateHubContentPresignedUrlsResponse
52
+ * // AuthorizedUrlConfigs: [ // AuthorizedUrlConfigs // required
53
+ * // { // AuthorizedUrl
54
+ * // Url: "STRING_VALUE",
55
+ * // LocalPath: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // NextToken: "STRING_VALUE",
59
+ * // };
60
+ *
61
+ * ```
62
+ *
63
+ * @param CreateHubContentPresignedUrlsCommandInput - {@link CreateHubContentPresignedUrlsCommandInput}
64
+ * @returns {@link CreateHubContentPresignedUrlsCommandOutput}
65
+ * @see {@link CreateHubContentPresignedUrlsCommandInput} for command's `input` shape.
66
+ * @see {@link CreateHubContentPresignedUrlsCommandOutput} for command's `response` shape.
67
+ * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
68
+ *
69
+ * @throws {@link SageMakerServiceException}
70
+ * <p>Base exception class for all service exceptions from SageMaker service.</p>
71
+ *
72
+ *
73
+ * @public
74
+ */
75
+ export declare class CreateHubContentPresignedUrlsCommand extends CreateHubContentPresignedUrlsCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: CreateHubContentPresignedUrlsRequest;
80
+ output: CreateHubContentPresignedUrlsResponse;
81
+ };
82
+ sdk: {
83
+ input: CreateHubContentPresignedUrlsCommandInput;
84
+ output: CreateHubContentPresignedUrlsCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -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 { CreateModelPackageInput, CreateModelPackageOutput } from "../models/models_1";
3
+ import { CreateModelPackageInput, CreateModelPackageOutput } from "../models/models_2";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { CreateModelPackageGroupInput } from "../models/models_1";
4
- import { CreateModelPackageGroupOutput } from "../models/models_2";
3
+ import { CreateModelPackageGroupInput, CreateModelPackageGroupOutput } from "../models/models_2";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -130,6 +130,7 @@ declare const CreateSpaceCommand_base: {
130
130
  * },
131
131
  * },
132
132
  * ],
133
+ * RemoteAccess: "ENABLED" || "DISABLED",
133
134
  * },
134
135
  * OwnershipSettings: { // OwnershipSettings
135
136
  * OwnerUserProfileName: "STRING_VALUE", // required
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeFeatureGroupRequest } from "../models/models_2";
4
- import { DescribeFeatureGroupResponse } from "../models/models_3";
3
+ import { DescribeFeatureGroupRequest, DescribeFeatureGroupResponse } from "../models/models_3";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -136,6 +136,7 @@ declare const DescribeSpaceCommand_base: {
136
136
  * // },
137
137
  * // },
138
138
  * // ],
139
+ * // RemoteAccess: "ENABLED" || "DISABLED",
139
140
  * // },
140
141
  * // OwnershipSettings: { // OwnershipSettings
141
142
  * // OwnerUserProfileName: "STRING_VALUE", // required
@@ -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 { ListAssociationsRequest, ListAssociationsResponse } from "../models/models_3";
3
+ import { ListAssociationsRequest, ListAssociationsResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -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 { ListAutoMLJobsRequest, ListAutoMLJobsResponse } from "../models/models_3";
3
+ import { ListAutoMLJobsRequest, ListAutoMLJobsResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -54,6 +54,7 @@ declare const ListSpacesCommand_base: {
54
54
  * // LastModifiedTime: new Date("TIMESTAMP"),
55
55
  * // SpaceSettingsSummary: { // SpaceSettingsSummary
56
56
  * // AppType: "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
57
+ * // RemoteAccess: "ENABLED" || "DISABLED",
57
58
  * // SpaceStorageSettings: { // SpaceStorageSettings
58
59
  * // EbsStorageSettings: { // EbsStorageSettings
59
60
  * // EbsVolumeSizeInGb: Number("int"), // required
@@ -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 { SendPipelineExecutionStepFailureRequest, SendPipelineExecutionStepFailureResponse } from "../models/models_4";
3
+ import { SendPipelineExecutionStepFailureRequest } from "../models/models_4";
4
+ import { SendPipelineExecutionStepFailureResponse } from "../models/models_5";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -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 { SendPipelineExecutionStepSuccessRequest, SendPipelineExecutionStepSuccessResponse } from "../models/models_4";
3
+ import { SendPipelineExecutionStepSuccessRequest, SendPipelineExecutionStepSuccessResponse } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -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 { StartEdgeDeploymentStageRequest } from "../models/models_4";
3
+ import { StartEdgeDeploymentStageRequest } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -0,0 +1,80 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { StartSessionRequest, StartSessionResponse } from "../models/models_5";
4
+ import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartSessionCommand}.
14
+ */
15
+ export interface StartSessionCommandInput extends StartSessionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartSessionCommand}.
21
+ */
22
+ export interface StartSessionCommandOutput extends StartSessionResponse, __MetadataBearer {
23
+ }
24
+ declare const StartSessionCommand_base: {
25
+ new (input: StartSessionCommandInput): import("@smithy/smithy-client").CommandImpl<StartSessionCommandInput, StartSessionCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: StartSessionCommandInput): import("@smithy/smithy-client").CommandImpl<StartSessionCommandInput, StartSessionCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Initiates a remote connection session between a local integrated development environments (IDEs) and a remote SageMaker space.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SageMakerClient, StartSessionCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
35
+ * // const { SageMakerClient, StartSessionCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
36
+ * const client = new SageMakerClient(config);
37
+ * const input = { // StartSessionRequest
38
+ * ResourceIdentifier: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new StartSessionCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // StartSessionResponse
43
+ * // SessionId: "STRING_VALUE",
44
+ * // StreamUrl: "STRING_VALUE",
45
+ * // TokenValue: "STRING_VALUE",
46
+ * // };
47
+ *
48
+ * ```
49
+ *
50
+ * @param StartSessionCommandInput - {@link StartSessionCommandInput}
51
+ * @returns {@link StartSessionCommandOutput}
52
+ * @see {@link StartSessionCommandInput} for command's `input` shape.
53
+ * @see {@link StartSessionCommandOutput} for command's `response` shape.
54
+ * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
55
+ *
56
+ * @throws {@link ResourceLimitExceeded} (client fault)
57
+ * <p> You have exceeded an SageMaker resource limit. For example, you might have too many training jobs created. </p>
58
+ *
59
+ * @throws {@link ResourceNotFound} (client fault)
60
+ * <p>Resource being access is not found.</p>
61
+ *
62
+ * @throws {@link SageMakerServiceException}
63
+ * <p>Base exception class for all service exceptions from SageMaker service.</p>
64
+ *
65
+ *
66
+ * @public
67
+ */
68
+ export declare class StartSessionCommand extends StartSessionCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: StartSessionRequest;
73
+ output: StartSessionResponse;
74
+ };
75
+ sdk: {
76
+ input: StartSessionCommandInput;
77
+ output: StartSessionCommandOutput;
78
+ };
79
+ };
80
+ }
@@ -124,6 +124,7 @@ declare const UpdateSpaceCommand_base: {
124
124
  * },
125
125
  * },
126
126
  * ],
127
+ * RemoteAccess: "ENABLED" || "DISABLED",
127
128
  * },
128
129
  * SpaceDisplayName: "STRING_VALUE",
129
130
  * };
@@ -28,6 +28,7 @@ export * from "./CreateExperimentCommand";
28
28
  export * from "./CreateFeatureGroupCommand";
29
29
  export * from "./CreateFlowDefinitionCommand";
30
30
  export * from "./CreateHubCommand";
31
+ export * from "./CreateHubContentPresignedUrlsCommand";
31
32
  export * from "./CreateHubContentReferenceCommand";
32
33
  export * from "./CreateHumanTaskUiCommand";
33
34
  export * from "./CreateHyperParameterTuningJobCommand";
@@ -297,6 +298,7 @@ export * from "./StartMlflowTrackingServerCommand";
297
298
  export * from "./StartMonitoringScheduleCommand";
298
299
  export * from "./StartNotebookInstanceCommand";
299
300
  export * from "./StartPipelineExecutionCommand";
301
+ export * from "./StartSessionCommand";
300
302
  export * from "./StopAutoMLJobCommand";
301
303
  export * from "./StopCompilationJobCommand";
302
304
  export * from "./StopEdgeDeploymentStageCommand";