@aws-sdk/client-sagemaker 3.194.0 → 3.196.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/CHANGELOG.md +19 -0
- package/dist-cjs/SageMaker.js +15 -0
- package/dist-cjs/commands/ListInferenceRecommendationsJobStepsCommand.js +46 -0
- package/dist-cjs/commands/ListModelMetadataCommand.js +2 -1
- package/dist-cjs/commands/ListModelPackageGroupsCommand.js +1 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/models/models_2.js +24 -25
- package/dist-cjs/models/models_3.js +26 -5
- package/dist-cjs/pagination/ListInferenceRecommendationsJobStepsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +94 -8
- package/dist-es/SageMaker.js +15 -0
- package/dist-es/commands/ListInferenceRecommendationsJobStepsCommand.js +42 -0
- package/dist-es/commands/ListModelMetadataCommand.js +2 -1
- package/dist-es/commands/ListModelPackageGroupsCommand.js +1 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +16 -17
- package/dist-es/models/models_3.js +17 -0
- package/dist-es/pagination/ListInferenceRecommendationsJobStepsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +84 -0
- package/dist-types/SageMaker.d.ts +8 -0
- package/dist-types/SageMakerClient.d.ts +3 -2
- package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +38 -0
- package/dist-types/commands/ListModelMetadataCommand.d.ts +2 -1
- package/dist-types/commands/ListModelPackageGroupsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1 -0
- package/dist-types/models/models_2.d.ts +98 -113
- package/dist-types/models/models_3.d.ts +114 -1
- package/dist-types/pagination/ListInferenceRecommendationsJobStepsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/ts3.4/SageMaker.d.ts +23 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListModelMetadataCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListModelPackageGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +38 -43
- package/dist-types/ts3.4/models/models_3.d.ts +43 -1
- package/dist-types/ts3.4/pagination/ListInferenceRecommendationsJobStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -178,6 +178,7 @@ import { ListHyperParameterTuningJobsCommandInput, ListHyperParameterTuningJobsC
|
|
|
178
178
|
import { ListImagesCommandInput, ListImagesCommandOutput } from "./commands/ListImagesCommand";
|
|
179
179
|
import { ListImageVersionsCommandInput, ListImageVersionsCommandOutput } from "./commands/ListImageVersionsCommand";
|
|
180
180
|
import { ListInferenceRecommendationsJobsCommandInput, ListInferenceRecommendationsJobsCommandOutput } from "./commands/ListInferenceRecommendationsJobsCommand";
|
|
181
|
+
import { ListInferenceRecommendationsJobStepsCommandInput, ListInferenceRecommendationsJobStepsCommandOutput } from "./commands/ListInferenceRecommendationsJobStepsCommand";
|
|
181
182
|
import { ListLabelingJobsCommandInput, ListLabelingJobsCommandOutput } from "./commands/ListLabelingJobsCommand";
|
|
182
183
|
import { ListLabelingJobsForWorkteamCommandInput, ListLabelingJobsForWorkteamCommandOutput } from "./commands/ListLabelingJobsForWorkteamCommand";
|
|
183
184
|
import { ListLineageGroupsCommandInput, ListLineageGroupsCommandOutput } from "./commands/ListLineageGroupsCommand";
|
|
@@ -2092,6 +2093,13 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
2092
2093
|
listInferenceRecommendationsJobs(args: ListInferenceRecommendationsJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceRecommendationsJobsCommandOutput>;
|
|
2093
2094
|
listInferenceRecommendationsJobs(args: ListInferenceRecommendationsJobsCommandInput, cb: (err: any, data?: ListInferenceRecommendationsJobsCommandOutput) => void): void;
|
|
2094
2095
|
listInferenceRecommendationsJobs(args: ListInferenceRecommendationsJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceRecommendationsJobsCommandOutput) => void): void;
|
|
2096
|
+
/**
|
|
2097
|
+
* <p>Returns a list of the subtasks for an Inference Recommender job.</p>
|
|
2098
|
+
* <p>The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.</p>
|
|
2099
|
+
*/
|
|
2100
|
+
listInferenceRecommendationsJobSteps(args: ListInferenceRecommendationsJobStepsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
2101
|
+
listInferenceRecommendationsJobSteps(args: ListInferenceRecommendationsJobStepsCommandInput, cb: (err: any, data?: ListInferenceRecommendationsJobStepsCommandOutput) => void): void;
|
|
2102
|
+
listInferenceRecommendationsJobSteps(args: ListInferenceRecommendationsJobStepsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceRecommendationsJobStepsCommandOutput) => void): void;
|
|
2095
2103
|
/**
|
|
2096
2104
|
* <p>Gets a list of labeling jobs.</p>
|
|
2097
2105
|
*/
|
|
@@ -186,6 +186,7 @@ import { ListHyperParameterTuningJobsCommandInput, ListHyperParameterTuningJobsC
|
|
|
186
186
|
import { ListImagesCommandInput, ListImagesCommandOutput } from "./commands/ListImagesCommand";
|
|
187
187
|
import { ListImageVersionsCommandInput, ListImageVersionsCommandOutput } from "./commands/ListImageVersionsCommand";
|
|
188
188
|
import { ListInferenceRecommendationsJobsCommandInput, ListInferenceRecommendationsJobsCommandOutput } from "./commands/ListInferenceRecommendationsJobsCommand";
|
|
189
|
+
import { ListInferenceRecommendationsJobStepsCommandInput, ListInferenceRecommendationsJobStepsCommandOutput } from "./commands/ListInferenceRecommendationsJobStepsCommand";
|
|
189
190
|
import { ListLabelingJobsCommandInput, ListLabelingJobsCommandOutput } from "./commands/ListLabelingJobsCommand";
|
|
190
191
|
import { ListLabelingJobsForWorkteamCommandInput, ListLabelingJobsForWorkteamCommandOutput } from "./commands/ListLabelingJobsForWorkteamCommand";
|
|
191
192
|
import { ListLineageGroupsCommandInput, ListLineageGroupsCommandOutput } from "./commands/ListLineageGroupsCommand";
|
|
@@ -271,8 +272,8 @@ import { UpdateUserProfileCommandInput, UpdateUserProfileCommandOutput } from ".
|
|
|
271
272
|
import { UpdateWorkforceCommandInput, UpdateWorkforceCommandOutput } from "./commands/UpdateWorkforceCommand";
|
|
272
273
|
import { UpdateWorkteamCommandInput, UpdateWorkteamCommandOutput } from "./commands/UpdateWorkteamCommand";
|
|
273
274
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
274
|
-
export declare type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteCodeRepositoryCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHumanTaskUiCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetSearchSuggestionsCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateImageCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
275
|
-
export declare type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetSearchSuggestionsCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateImageCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
275
|
+
export declare type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteCodeRepositoryCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHumanTaskUiCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetSearchSuggestionsCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateImageCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
276
|
+
export declare type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetSearchSuggestionsCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateImageCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
276
277
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
277
278
|
/**
|
|
278
279
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { ListInferenceRecommendationsJobStepsRequest, ListInferenceRecommendationsJobStepsResponse } from "../models/models_2";
|
|
5
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
|
+
export interface ListInferenceRecommendationsJobStepsCommandInput extends ListInferenceRecommendationsJobStepsRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface ListInferenceRecommendationsJobStepsCommandOutput extends ListInferenceRecommendationsJobStepsResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Returns a list of the subtasks for an Inference Recommender job.</p>
|
|
12
|
+
* <p>The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.</p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { SageMakerClient, ListInferenceRecommendationsJobStepsCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
17
|
+
* // const { SageMakerClient, ListInferenceRecommendationsJobStepsCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
18
|
+
* const client = new SageMakerClient(config);
|
|
19
|
+
* const command = new ListInferenceRecommendationsJobStepsCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link ListInferenceRecommendationsJobStepsCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link ListInferenceRecommendationsJobStepsCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class ListInferenceRecommendationsJobStepsCommand extends $Command<ListInferenceRecommendationsJobStepsCommandInput, ListInferenceRecommendationsJobStepsCommandOutput, SageMakerClientResolvedConfig> {
|
|
29
|
+
readonly input: ListInferenceRecommendationsJobStepsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListInferenceRecommendationsJobStepsCommandInput);
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInferenceRecommendationsJobStepsCommandInput, ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { ListModelMetadataRequest
|
|
4
|
+
import { ListModelMetadataRequest } from "../models/models_2";
|
|
5
|
+
import { ListModelMetadataResponse } from "../models/models_3";
|
|
5
6
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
7
|
export interface ListModelMetadataCommandInput extends ListModelMetadataRequest {
|
|
7
8
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { ListModelPackageGroupsInput } from "../models/
|
|
5
|
-
import { ListModelPackageGroupsOutput } from "../models/models_3";
|
|
4
|
+
import { ListModelPackageGroupsInput, ListModelPackageGroupsOutput } from "../models/models_3";
|
|
6
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
7
6
|
export interface ListModelPackageGroupsCommandInput extends ListModelPackageGroupsInput {
|
|
8
7
|
}
|
|
@@ -176,6 +176,7 @@ export * from "./ListHumanTaskUisCommand";
|
|
|
176
176
|
export * from "./ListHyperParameterTuningJobsCommand";
|
|
177
177
|
export * from "./ListImageVersionsCommand";
|
|
178
178
|
export * from "./ListImagesCommand";
|
|
179
|
+
export * from "./ListInferenceRecommendationsJobStepsCommand";
|
|
179
180
|
export * from "./ListInferenceRecommendationsJobsCommand";
|
|
180
181
|
export * from "./ListLabelingJobsCommand";
|
|
181
182
|
export * from "./ListLabelingJobsForWorkteamCommand";
|
|
@@ -5576,6 +5576,54 @@ export interface InferenceRecommendationsJob {
|
|
|
5576
5576
|
*/
|
|
5577
5577
|
FailureReason?: string;
|
|
5578
5578
|
}
|
|
5579
|
+
/**
|
|
5580
|
+
* <p>The details for a specific benchmark from an Inference Recommender job.</p>
|
|
5581
|
+
*/
|
|
5582
|
+
export interface RecommendationJobInferenceBenchmark {
|
|
5583
|
+
/**
|
|
5584
|
+
* <p>The metrics of recommendations.</p>
|
|
5585
|
+
*/
|
|
5586
|
+
Metrics?: RecommendationMetrics;
|
|
5587
|
+
/**
|
|
5588
|
+
* <p>The endpoint configuration made by Inference Recommender during a recommendation job.</p>
|
|
5589
|
+
*/
|
|
5590
|
+
EndpointConfiguration?: EndpointOutputConfiguration;
|
|
5591
|
+
/**
|
|
5592
|
+
* <p>Defines the model configuration. Includes the specification name and environment parameters.</p>
|
|
5593
|
+
*/
|
|
5594
|
+
ModelConfiguration: ModelConfiguration | undefined;
|
|
5595
|
+
/**
|
|
5596
|
+
* <p>The reason why a benchmark failed.</p>
|
|
5597
|
+
*/
|
|
5598
|
+
FailureReason?: string;
|
|
5599
|
+
}
|
|
5600
|
+
export declare enum RecommendationStepType {
|
|
5601
|
+
BENCHMARK = "BENCHMARK"
|
|
5602
|
+
}
|
|
5603
|
+
/**
|
|
5604
|
+
* <p>A returned array object for the <code>Steps</code> response field in the
|
|
5605
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_InferenceRecommendationsJobStep.html">ListInferenceRecommendationsJobSteps</a> API command.</p>
|
|
5606
|
+
*/
|
|
5607
|
+
export interface InferenceRecommendationsJobStep {
|
|
5608
|
+
/**
|
|
5609
|
+
* <p>The type of the subtask.</p>
|
|
5610
|
+
* <p>
|
|
5611
|
+
* <code>BENCHMARK</code>: Evaluate the performance of your model on different instance types.</p>
|
|
5612
|
+
*/
|
|
5613
|
+
StepType: RecommendationStepType | string | undefined;
|
|
5614
|
+
/**
|
|
5615
|
+
* <p>The name of the Inference Recommender job.</p>
|
|
5616
|
+
*/
|
|
5617
|
+
JobName: string | undefined;
|
|
5618
|
+
/**
|
|
5619
|
+
* <p>The current status of the benchmark.</p>
|
|
5620
|
+
*/
|
|
5621
|
+
Status: RecommendationJobStatus | string | undefined;
|
|
5622
|
+
/**
|
|
5623
|
+
* <p>The details for a specific benchmark.</p>
|
|
5624
|
+
*/
|
|
5625
|
+
InferenceBenchmark?: RecommendationJobInferenceBenchmark;
|
|
5626
|
+
}
|
|
5579
5627
|
/**
|
|
5580
5628
|
* <p>Provides counts for human-labeled tasks in the labeling job.</p>
|
|
5581
5629
|
*/
|
|
@@ -7115,6 +7163,40 @@ export interface ListInferenceRecommendationsJobsResponse {
|
|
|
7115
7163
|
*/
|
|
7116
7164
|
NextToken?: string;
|
|
7117
7165
|
}
|
|
7166
|
+
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
7167
|
+
/**
|
|
7168
|
+
* <p>The name for the Inference Recommender job.</p>
|
|
7169
|
+
*/
|
|
7170
|
+
JobName: string | undefined;
|
|
7171
|
+
/**
|
|
7172
|
+
* <p>A filter to return benchmarks of a specified status. If this field is left empty, then all benchmarks are returned.</p>
|
|
7173
|
+
*/
|
|
7174
|
+
Status?: RecommendationJobStatus | string;
|
|
7175
|
+
/**
|
|
7176
|
+
* <p>A filter to return details about the specified type of subtask.</p>
|
|
7177
|
+
* <p>
|
|
7178
|
+
* <code>BENCHMARK</code>: Evaluate the performance of your model on different instance types.</p>
|
|
7179
|
+
*/
|
|
7180
|
+
StepType?: RecommendationStepType | string;
|
|
7181
|
+
/**
|
|
7182
|
+
* <p>The maximum number of results to return.</p>
|
|
7183
|
+
*/
|
|
7184
|
+
MaxResults?: number;
|
|
7185
|
+
/**
|
|
7186
|
+
* <p>A token that you can specify to return more results from the list. Specify this field if you have a token that was returned from a previous request.</p>
|
|
7187
|
+
*/
|
|
7188
|
+
NextToken?: string;
|
|
7189
|
+
}
|
|
7190
|
+
export interface ListInferenceRecommendationsJobStepsResponse {
|
|
7191
|
+
/**
|
|
7192
|
+
* <p>A list of all subtask details in Inference Recommender.</p>
|
|
7193
|
+
*/
|
|
7194
|
+
Steps?: InferenceRecommendationsJobStep[];
|
|
7195
|
+
/**
|
|
7196
|
+
* <p>A token that you can specify in your next request to return more results from the list.</p>
|
|
7197
|
+
*/
|
|
7198
|
+
NextToken?: string;
|
|
7199
|
+
}
|
|
7118
7200
|
export declare enum SortBy {
|
|
7119
7201
|
CREATION_TIME = "CreationTime",
|
|
7120
7202
|
NAME = "Name",
|
|
@@ -7429,103 +7511,6 @@ export interface ListModelMetadataRequest {
|
|
|
7429
7511
|
*/
|
|
7430
7512
|
MaxResults?: number;
|
|
7431
7513
|
}
|
|
7432
|
-
/**
|
|
7433
|
-
* <p>A summary of the model metadata.</p>
|
|
7434
|
-
*/
|
|
7435
|
-
export interface ModelMetadataSummary {
|
|
7436
|
-
/**
|
|
7437
|
-
* <p>The machine learning domain of the model.</p>
|
|
7438
|
-
*/
|
|
7439
|
-
Domain: string | undefined;
|
|
7440
|
-
/**
|
|
7441
|
-
* <p>The machine learning framework of the model.</p>
|
|
7442
|
-
*/
|
|
7443
|
-
Framework: string | undefined;
|
|
7444
|
-
/**
|
|
7445
|
-
* <p>The machine learning task of the model.</p>
|
|
7446
|
-
*/
|
|
7447
|
-
Task: string | undefined;
|
|
7448
|
-
/**
|
|
7449
|
-
* <p>The name of the model.</p>
|
|
7450
|
-
*/
|
|
7451
|
-
Model: string | undefined;
|
|
7452
|
-
/**
|
|
7453
|
-
* <p>The framework version of the model.</p>
|
|
7454
|
-
*/
|
|
7455
|
-
FrameworkVersion: string | undefined;
|
|
7456
|
-
}
|
|
7457
|
-
export interface ListModelMetadataResponse {
|
|
7458
|
-
/**
|
|
7459
|
-
* <p>A structure that holds model metadata.</p>
|
|
7460
|
-
*/
|
|
7461
|
-
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
7462
|
-
/**
|
|
7463
|
-
* <p>A token for getting the next set of recommendations, if there are any.</p>
|
|
7464
|
-
*/
|
|
7465
|
-
NextToken?: string;
|
|
7466
|
-
}
|
|
7467
|
-
export declare enum ModelPackageGroupSortBy {
|
|
7468
|
-
CREATION_TIME = "CreationTime",
|
|
7469
|
-
NAME = "Name"
|
|
7470
|
-
}
|
|
7471
|
-
export interface ListModelPackageGroupsInput {
|
|
7472
|
-
/**
|
|
7473
|
-
* <p>A filter that returns only model groups created after the specified time.</p>
|
|
7474
|
-
*/
|
|
7475
|
-
CreationTimeAfter?: Date;
|
|
7476
|
-
/**
|
|
7477
|
-
* <p>A filter that returns only model groups created before the specified time.</p>
|
|
7478
|
-
*/
|
|
7479
|
-
CreationTimeBefore?: Date;
|
|
7480
|
-
/**
|
|
7481
|
-
* <p>The maximum number of results to return in the response.</p>
|
|
7482
|
-
*/
|
|
7483
|
-
MaxResults?: number;
|
|
7484
|
-
/**
|
|
7485
|
-
* <p>A string in the model group name. This filter returns only model groups whose name
|
|
7486
|
-
* contains the specified string.</p>
|
|
7487
|
-
*/
|
|
7488
|
-
NameContains?: string;
|
|
7489
|
-
/**
|
|
7490
|
-
* <p>If the result of the previous <code>ListModelPackageGroups</code> request was
|
|
7491
|
-
* truncated, the response includes a <code>NextToken</code>. To retrieve the next set of
|
|
7492
|
-
* model groups, use the token in the next request.</p>
|
|
7493
|
-
*/
|
|
7494
|
-
NextToken?: string;
|
|
7495
|
-
/**
|
|
7496
|
-
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
7497
|
-
*/
|
|
7498
|
-
SortBy?: ModelPackageGroupSortBy | string;
|
|
7499
|
-
/**
|
|
7500
|
-
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
7501
|
-
*/
|
|
7502
|
-
SortOrder?: SortOrder | string;
|
|
7503
|
-
}
|
|
7504
|
-
/**
|
|
7505
|
-
* <p>Summary information about a model group.</p>
|
|
7506
|
-
*/
|
|
7507
|
-
export interface ModelPackageGroupSummary {
|
|
7508
|
-
/**
|
|
7509
|
-
* <p>The name of the model group.</p>
|
|
7510
|
-
*/
|
|
7511
|
-
ModelPackageGroupName: string | undefined;
|
|
7512
|
-
/**
|
|
7513
|
-
* <p>The Amazon Resource Name (ARN) of the model group.</p>
|
|
7514
|
-
*/
|
|
7515
|
-
ModelPackageGroupArn: string | undefined;
|
|
7516
|
-
/**
|
|
7517
|
-
* <p>A description of the model group.</p>
|
|
7518
|
-
*/
|
|
7519
|
-
ModelPackageGroupDescription?: string;
|
|
7520
|
-
/**
|
|
7521
|
-
* <p>The time that the model group was created.</p>
|
|
7522
|
-
*/
|
|
7523
|
-
CreationTime: Date | undefined;
|
|
7524
|
-
/**
|
|
7525
|
-
* <p>The status of the model group.</p>
|
|
7526
|
-
*/
|
|
7527
|
-
ModelPackageGroupStatus: ModelPackageGroupStatus | string | undefined;
|
|
7528
|
-
}
|
|
7529
7514
|
/**
|
|
7530
7515
|
* @internal
|
|
7531
7516
|
*/
|
|
@@ -8178,6 +8163,14 @@ export declare const ImageVersionFilterSensitiveLog: (obj: ImageVersion) => any;
|
|
|
8178
8163
|
* @internal
|
|
8179
8164
|
*/
|
|
8180
8165
|
export declare const InferenceRecommendationsJobFilterSensitiveLog: (obj: InferenceRecommendationsJob) => any;
|
|
8166
|
+
/**
|
|
8167
|
+
* @internal
|
|
8168
|
+
*/
|
|
8169
|
+
export declare const RecommendationJobInferenceBenchmarkFilterSensitiveLog: (obj: RecommendationJobInferenceBenchmark) => any;
|
|
8170
|
+
/**
|
|
8171
|
+
* @internal
|
|
8172
|
+
*/
|
|
8173
|
+
export declare const InferenceRecommendationsJobStepFilterSensitiveLog: (obj: InferenceRecommendationsJobStep) => any;
|
|
8181
8174
|
/**
|
|
8182
8175
|
* @internal
|
|
8183
8176
|
*/
|
|
@@ -8418,6 +8411,14 @@ export declare const ListInferenceRecommendationsJobsRequestFilterSensitiveLog:
|
|
|
8418
8411
|
* @internal
|
|
8419
8412
|
*/
|
|
8420
8413
|
export declare const ListInferenceRecommendationsJobsResponseFilterSensitiveLog: (obj: ListInferenceRecommendationsJobsResponse) => any;
|
|
8414
|
+
/**
|
|
8415
|
+
* @internal
|
|
8416
|
+
*/
|
|
8417
|
+
export declare const ListInferenceRecommendationsJobStepsRequestFilterSensitiveLog: (obj: ListInferenceRecommendationsJobStepsRequest) => any;
|
|
8418
|
+
/**
|
|
8419
|
+
* @internal
|
|
8420
|
+
*/
|
|
8421
|
+
export declare const ListInferenceRecommendationsJobStepsResponseFilterSensitiveLog: (obj: ListInferenceRecommendationsJobStepsResponse) => any;
|
|
8421
8422
|
/**
|
|
8422
8423
|
* @internal
|
|
8423
8424
|
*/
|
|
@@ -8470,19 +8471,3 @@ export declare const ModelMetadataSearchExpressionFilterSensitiveLog: (obj: Mode
|
|
|
8470
8471
|
* @internal
|
|
8471
8472
|
*/
|
|
8472
8473
|
export declare const ListModelMetadataRequestFilterSensitiveLog: (obj: ListModelMetadataRequest) => any;
|
|
8473
|
-
/**
|
|
8474
|
-
* @internal
|
|
8475
|
-
*/
|
|
8476
|
-
export declare const ModelMetadataSummaryFilterSensitiveLog: (obj: ModelMetadataSummary) => any;
|
|
8477
|
-
/**
|
|
8478
|
-
* @internal
|
|
8479
|
-
*/
|
|
8480
|
-
export declare const ListModelMetadataResponseFilterSensitiveLog: (obj: ListModelMetadataResponse) => any;
|
|
8481
|
-
/**
|
|
8482
|
-
* @internal
|
|
8483
|
-
*/
|
|
8484
|
-
export declare const ListModelPackageGroupsInputFilterSensitiveLog: (obj: ListModelPackageGroupsInput) => any;
|
|
8485
|
-
/**
|
|
8486
|
-
* @internal
|
|
8487
|
-
*/
|
|
8488
|
-
export declare const ModelPackageGroupSummaryFilterSensitiveLog: (obj: ModelPackageGroupSummary) => any;
|
|
@@ -1,6 +1,103 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ConditionStepMetadata, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UiTemplate, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, ExecutionStatus, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus,
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, ExecutionStatus, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, MonitoringJobDefinitionSortKey, MonitoringJobDefinitionSummary, NotebookInstanceStatus, OrderKey, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* <p>A summary of the model metadata.</p>
|
|
6
|
+
*/
|
|
7
|
+
export interface ModelMetadataSummary {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The machine learning domain of the model.</p>
|
|
10
|
+
*/
|
|
11
|
+
Domain: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The machine learning framework of the model.</p>
|
|
14
|
+
*/
|
|
15
|
+
Framework: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The machine learning task of the model.</p>
|
|
18
|
+
*/
|
|
19
|
+
Task: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The name of the model.</p>
|
|
22
|
+
*/
|
|
23
|
+
Model: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The framework version of the model.</p>
|
|
26
|
+
*/
|
|
27
|
+
FrameworkVersion: string | undefined;
|
|
28
|
+
}
|
|
29
|
+
export interface ListModelMetadataResponse {
|
|
30
|
+
/**
|
|
31
|
+
* <p>A structure that holds model metadata.</p>
|
|
32
|
+
*/
|
|
33
|
+
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>A token for getting the next set of recommendations, if there are any.</p>
|
|
36
|
+
*/
|
|
37
|
+
NextToken?: string;
|
|
38
|
+
}
|
|
39
|
+
export declare enum ModelPackageGroupSortBy {
|
|
40
|
+
CREATION_TIME = "CreationTime",
|
|
41
|
+
NAME = "Name"
|
|
42
|
+
}
|
|
43
|
+
export interface ListModelPackageGroupsInput {
|
|
44
|
+
/**
|
|
45
|
+
* <p>A filter that returns only model groups created after the specified time.</p>
|
|
46
|
+
*/
|
|
47
|
+
CreationTimeAfter?: Date;
|
|
48
|
+
/**
|
|
49
|
+
* <p>A filter that returns only model groups created before the specified time.</p>
|
|
50
|
+
*/
|
|
51
|
+
CreationTimeBefore?: Date;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The maximum number of results to return in the response.</p>
|
|
54
|
+
*/
|
|
55
|
+
MaxResults?: number;
|
|
56
|
+
/**
|
|
57
|
+
* <p>A string in the model group name. This filter returns only model groups whose name
|
|
58
|
+
* contains the specified string.</p>
|
|
59
|
+
*/
|
|
60
|
+
NameContains?: string;
|
|
61
|
+
/**
|
|
62
|
+
* <p>If the result of the previous <code>ListModelPackageGroups</code> request was
|
|
63
|
+
* truncated, the response includes a <code>NextToken</code>. To retrieve the next set of
|
|
64
|
+
* model groups, use the token in the next request.</p>
|
|
65
|
+
*/
|
|
66
|
+
NextToken?: string;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
69
|
+
*/
|
|
70
|
+
SortBy?: ModelPackageGroupSortBy | string;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
73
|
+
*/
|
|
74
|
+
SortOrder?: SortOrder | string;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>Summary information about a model group.</p>
|
|
78
|
+
*/
|
|
79
|
+
export interface ModelPackageGroupSummary {
|
|
80
|
+
/**
|
|
81
|
+
* <p>The name of the model group.</p>
|
|
82
|
+
*/
|
|
83
|
+
ModelPackageGroupName: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* <p>The Amazon Resource Name (ARN) of the model group.</p>
|
|
86
|
+
*/
|
|
87
|
+
ModelPackageGroupArn: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>A description of the model group.</p>
|
|
90
|
+
*/
|
|
91
|
+
ModelPackageGroupDescription?: string;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The time that the model group was created.</p>
|
|
94
|
+
*/
|
|
95
|
+
CreationTime: Date | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>The status of the model group.</p>
|
|
98
|
+
*/
|
|
99
|
+
ModelPackageGroupStatus: ModelPackageGroupStatus | string | undefined;
|
|
100
|
+
}
|
|
4
101
|
export interface ListModelPackageGroupsOutput {
|
|
5
102
|
/**
|
|
6
103
|
* <p>A list of summaries of the model groups in your Amazon Web Services account.</p>
|
|
@@ -4868,6 +4965,22 @@ export interface SearchRequest {
|
|
|
4868
4965
|
*/
|
|
4869
4966
|
MaxResults?: number;
|
|
4870
4967
|
}
|
|
4968
|
+
/**
|
|
4969
|
+
* @internal
|
|
4970
|
+
*/
|
|
4971
|
+
export declare const ModelMetadataSummaryFilterSensitiveLog: (obj: ModelMetadataSummary) => any;
|
|
4972
|
+
/**
|
|
4973
|
+
* @internal
|
|
4974
|
+
*/
|
|
4975
|
+
export declare const ListModelMetadataResponseFilterSensitiveLog: (obj: ListModelMetadataResponse) => any;
|
|
4976
|
+
/**
|
|
4977
|
+
* @internal
|
|
4978
|
+
*/
|
|
4979
|
+
export declare const ListModelPackageGroupsInputFilterSensitiveLog: (obj: ListModelPackageGroupsInput) => any;
|
|
4980
|
+
/**
|
|
4981
|
+
* @internal
|
|
4982
|
+
*/
|
|
4983
|
+
export declare const ModelPackageGroupSummaryFilterSensitiveLog: (obj: ModelPackageGroupSummary) => any;
|
|
4871
4984
|
/**
|
|
4872
4985
|
* @internal
|
|
4873
4986
|
*/
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListInferenceRecommendationsJobStepsCommandInput, ListInferenceRecommendationsJobStepsCommandOutput } from "../commands/ListInferenceRecommendationsJobStepsCommand";
|
|
3
|
+
import { SageMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListInferenceRecommendationsJobSteps(config: SageMakerPaginationConfiguration, input: ListInferenceRecommendationsJobStepsCommandInput, ...additionalArguments: any): Paginator<ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
@@ -24,6 +24,7 @@ export * from "./ListHumanTaskUisPaginator";
|
|
|
24
24
|
export * from "./ListHyperParameterTuningJobsPaginator";
|
|
25
25
|
export * from "./ListImageVersionsPaginator";
|
|
26
26
|
export * from "./ListImagesPaginator";
|
|
27
|
+
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
27
28
|
export * from "./ListInferenceRecommendationsJobsPaginator";
|
|
28
29
|
export * from "./ListLabelingJobsForWorkteamPaginator";
|
|
29
30
|
export * from "./ListLabelingJobsPaginator";
|
|
@@ -179,6 +179,7 @@ import { ListHyperParameterTuningJobsCommandInput, ListHyperParameterTuningJobsC
|
|
|
179
179
|
import { ListImagesCommandInput, ListImagesCommandOutput } from "../commands/ListImagesCommand";
|
|
180
180
|
import { ListImageVersionsCommandInput, ListImageVersionsCommandOutput } from "../commands/ListImageVersionsCommand";
|
|
181
181
|
import { ListInferenceRecommendationsJobsCommandInput, ListInferenceRecommendationsJobsCommandOutput } from "../commands/ListInferenceRecommendationsJobsCommand";
|
|
182
|
+
import { ListInferenceRecommendationsJobStepsCommandInput, ListInferenceRecommendationsJobStepsCommandOutput } from "../commands/ListInferenceRecommendationsJobStepsCommand";
|
|
182
183
|
import { ListLabelingJobsCommandInput, ListLabelingJobsCommandOutput } from "../commands/ListLabelingJobsCommand";
|
|
183
184
|
import { ListLabelingJobsForWorkteamCommandInput, ListLabelingJobsForWorkteamCommandOutput } from "../commands/ListLabelingJobsForWorkteamCommand";
|
|
184
185
|
import { ListLineageGroupsCommandInput, ListLineageGroupsCommandOutput } from "../commands/ListLineageGroupsCommand";
|
|
@@ -442,6 +443,7 @@ export declare const serializeAws_json1_1ListHyperParameterTuningJobsCommand: (i
|
|
|
442
443
|
export declare const serializeAws_json1_1ListImagesCommand: (input: ListImagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
443
444
|
export declare const serializeAws_json1_1ListImageVersionsCommand: (input: ListImageVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
444
445
|
export declare const serializeAws_json1_1ListInferenceRecommendationsJobsCommand: (input: ListInferenceRecommendationsJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
446
|
+
export declare const serializeAws_json1_1ListInferenceRecommendationsJobStepsCommand: (input: ListInferenceRecommendationsJobStepsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
445
447
|
export declare const serializeAws_json1_1ListLabelingJobsCommand: (input: ListLabelingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
446
448
|
export declare const serializeAws_json1_1ListLabelingJobsForWorkteamCommand: (input: ListLabelingJobsForWorkteamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
447
449
|
export declare const serializeAws_json1_1ListLineageGroupsCommand: (input: ListLineageGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -705,6 +707,7 @@ export declare const deserializeAws_json1_1ListHyperParameterTuningJobsCommand:
|
|
|
705
707
|
export declare const deserializeAws_json1_1ListImagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImagesCommandOutput>;
|
|
706
708
|
export declare const deserializeAws_json1_1ListImageVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImageVersionsCommandOutput>;
|
|
707
709
|
export declare const deserializeAws_json1_1ListInferenceRecommendationsJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceRecommendationsJobsCommandOutput>;
|
|
710
|
+
export declare const deserializeAws_json1_1ListInferenceRecommendationsJobStepsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
708
711
|
export declare const deserializeAws_json1_1ListLabelingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLabelingJobsCommandOutput>;
|
|
709
712
|
export declare const deserializeAws_json1_1ListLabelingJobsForWorkteamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLabelingJobsForWorkteamCommandOutput>;
|
|
710
713
|
export declare const deserializeAws_json1_1ListLineageGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLineageGroupsCommandOutput>;
|