@aws-sdk/client-sagemaker 3.461.0 → 3.464.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist-cjs/SageMaker.js +26 -0
- package/dist-cjs/commands/CreateClusterCommand.js +51 -0
- package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
- package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
- package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
- package/dist-cjs/commands/ListClustersCommand.js +51 -0
- package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +77 -64
- package/dist-cjs/models/models_1.js +85 -51
- package/dist-cjs/models/models_2.js +58 -83
- package/dist-cjs/models/models_3.js +89 -64
- package/dist-cjs/models/models_4.js +65 -3
- package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1046 -36
- package/dist-es/SageMaker.js +26 -0
- package/dist-es/commands/CreateClusterCommand.js +47 -0
- package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/CreateWorkforceCommand.js +1 -1
- package/dist-es/commands/DeleteClusterCommand.js +47 -0
- package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
- package/dist-es/commands/DescribeClusterCommand.js +47 -0
- package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
- package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
- package/dist-es/commands/ListClusterNodesCommand.js +47 -0
- package/dist-es/commands/ListClustersCommand.js +47 -0
- package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
- package/dist-es/commands/UpdateClusterCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +74 -62
- package/dist-es/models/models_1.js +84 -48
- package/dist-es/models/models_2.js +55 -82
- package/dist-es/models/models_3.js +87 -62
- package/dist-es/models/models_4.js +63 -1
- package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1006 -22
- package/dist-types/SageMaker.d.ts +91 -0
- package/dist-types/SageMakerClient.d.ts +15 -2
- package/dist-types/commands/AddTagsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppCommand.d.ts +3 -2
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +64 -17
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +45 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +4 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +56 -2
- package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
- package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAppCommand.d.ts +3 -2
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +56 -9
- package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +46 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +5 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +55 -1
- package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +13 -0
- package/dist-types/commands/ListAppsCommand.d.ts +8 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
- package/dist-types/commands/ListClustersCommand.d.ts +87 -0
- package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +4 -4
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +58 -7
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
- package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +39 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +616 -544
- package/dist-types/models/models_1.d.ts +7904 -8160
- package/dist-types/models/models_2.d.ts +4780 -5344
- package/dist-types/models/models_3.d.ts +5386 -4662
- package/dist-types/models/models_4.d.ts +2031 -4
- package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
- package/dist-types/ts3.4/SageMaker.d.ts +227 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -175
- package/dist-types/ts3.4/models/models_1.d.ts +302 -309
- package/dist-types/ts3.4/models/models_2.d.ts +388 -490
- package/dist-types/ts3.4/models/models_3.d.ts +574 -472
- package/dist-types/ts3.4/models/models_4.d.ts +534 -29
- package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.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 +156 -0
- package/package.json +2 -2
|
@@ -1,7 +1,1915 @@
|
|
|
1
|
-
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSecurityGroupManagement, AppSpecification, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, Channel, CheckpointConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType,
|
|
3
|
-
import {
|
|
4
|
-
import { Endpoint, Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType,
|
|
1
|
+
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, Channel, CheckpointConfig, ClusterInstanceGroupSpecification, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DebugHookConfig, DebugRuleConfiguration, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProfilerConfig, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SharingType, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
+
import { CrossAccountFilterOption, DataProcessing, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, MetricData, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProfilerRuleConfiguration, ProjectStatus, ScheduleStatus, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SourceIpConfig, SpaceStatus, SubscribedWorkteam, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_2";
|
|
4
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, PipelineExecutionStepMetadata, ResourceType, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionResult, SortBy, SortOrder, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const StepStatus: {
|
|
10
|
+
readonly EXECUTING: "Executing";
|
|
11
|
+
readonly FAILED: "Failed";
|
|
12
|
+
readonly STARTING: "Starting";
|
|
13
|
+
readonly STOPPED: "Stopped";
|
|
14
|
+
readonly STOPPING: "Stopping";
|
|
15
|
+
readonly SUCCEEDED: "Succeeded";
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
* <p>An execution of a step in a pipeline.</p>
|
|
24
|
+
*/
|
|
25
|
+
export interface PipelineExecutionStep {
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* <p>The name of the step that is executed.</p>
|
|
29
|
+
*/
|
|
30
|
+
StepName?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* <p>The display name of the step.</p>
|
|
34
|
+
*/
|
|
35
|
+
StepDisplayName?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* <p>The description of the step.</p>
|
|
39
|
+
*/
|
|
40
|
+
StepDescription?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* <p>The time that the step started executing.</p>
|
|
44
|
+
*/
|
|
45
|
+
StartTime?: Date;
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* <p>The time that the step stopped executing.</p>
|
|
49
|
+
*/
|
|
50
|
+
EndTime?: Date;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* <p>The status of the step execution.</p>
|
|
54
|
+
*/
|
|
55
|
+
StepStatus?: StepStatus;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
* <p>If this pipeline execution step was cached, details on the cache hit.</p>
|
|
59
|
+
*/
|
|
60
|
+
CacheHitResult?: CacheHitResult;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* <p>The current attempt of the execution step. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html">Retry Policy for SageMaker Pipelines steps</a>.</p>
|
|
64
|
+
*/
|
|
65
|
+
AttemptCount?: number;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* <p>The reason why the step failed execution. This is only returned if the step failed its execution.</p>
|
|
69
|
+
*/
|
|
70
|
+
FailureReason?: string;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
* <p>Metadata to run the pipeline step.</p>
|
|
74
|
+
*/
|
|
75
|
+
Metadata?: PipelineExecutionStepMetadata;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* <p>The ARN from an execution of the current pipeline from which
|
|
79
|
+
* results are reused for this step.</p>
|
|
80
|
+
*/
|
|
81
|
+
SelectiveExecutionResult?: SelectiveExecutionResult;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export interface ListPipelineExecutionStepsResponse {
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* <p>A list of <code>PipeLineExecutionStep</code> objects. Each
|
|
90
|
+
* <code>PipeLineExecutionStep</code> consists of StepName, StartTime, EndTime, StepStatus,
|
|
91
|
+
* and Metadata. Metadata is an object with properties for each job that contains relevant
|
|
92
|
+
* information about the job created by the step.</p>
|
|
93
|
+
*/
|
|
94
|
+
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
* <p>If the result of the previous <code>ListPipelineExecutionSteps</code> request was truncated,
|
|
98
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipeline execution steps, use the token in the next request.</p>
|
|
99
|
+
*/
|
|
100
|
+
NextToken?: string;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface ListPipelineParametersForExecutionRequest {
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
|
|
109
|
+
*/
|
|
110
|
+
PipelineExecutionArn: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* <p>If the result of the previous <code>ListPipelineParametersForExecution</code> request was truncated,
|
|
114
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of parameters, use the token in the next request.</p>
|
|
115
|
+
*/
|
|
116
|
+
NextToken?: string;
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* <p>The maximum number of parameters to return in the response.</p>
|
|
120
|
+
*/
|
|
121
|
+
MaxResults?: number;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* <p>Assigns a value to a named Pipeline parameter.</p>
|
|
126
|
+
*/
|
|
127
|
+
export interface Parameter {
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
* <p>The name of the parameter to assign a value to. This
|
|
131
|
+
* parameter name must match a named parameter in the
|
|
132
|
+
* pipeline definition.</p>
|
|
133
|
+
*/
|
|
134
|
+
Name: string | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* <p>The literal value for the parameter.</p>
|
|
138
|
+
*/
|
|
139
|
+
Value: string | undefined;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export interface ListPipelineParametersForExecutionResponse {
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* <p>Contains a list of pipeline parameters. This list can be empty. </p>
|
|
148
|
+
*/
|
|
149
|
+
PipelineParameters?: Parameter[];
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
* <p>If the result of the previous <code>ListPipelineParametersForExecution</code> request was truncated,
|
|
153
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of parameters, use the token in the next request.</p>
|
|
154
|
+
*/
|
|
155
|
+
NextToken?: string;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* @enum
|
|
160
|
+
*/
|
|
161
|
+
export declare const SortPipelinesBy: {
|
|
162
|
+
readonly CREATION_TIME: "CreationTime";
|
|
163
|
+
readonly NAME: "Name";
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
export type SortPipelinesBy = (typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export interface ListPipelinesRequest {
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* <p>The prefix of the pipeline name.</p>
|
|
176
|
+
*/
|
|
177
|
+
PipelineNamePrefix?: string;
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
* <p>A filter that returns the pipelines that were created after a specified
|
|
181
|
+
* time.</p>
|
|
182
|
+
*/
|
|
183
|
+
CreatedAfter?: Date;
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
* <p>A filter that returns the pipelines that were created before a specified
|
|
187
|
+
* time.</p>
|
|
188
|
+
*/
|
|
189
|
+
CreatedBefore?: Date;
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
* <p>The field by which to sort results. The default is <code>CreatedTime</code>.</p>
|
|
193
|
+
*/
|
|
194
|
+
SortBy?: SortPipelinesBy;
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
* <p>The sort order for results.</p>
|
|
198
|
+
*/
|
|
199
|
+
SortOrder?: SortOrder;
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* <p>If the result of the previous <code>ListPipelines</code> request was truncated,
|
|
203
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipelines, use the token in the next request.</p>
|
|
204
|
+
*/
|
|
205
|
+
NextToken?: string;
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
* <p>The maximum number of pipelines to return in the response.</p>
|
|
209
|
+
*/
|
|
210
|
+
MaxResults?: number;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* @public
|
|
214
|
+
* <p>A summary of a pipeline.</p>
|
|
215
|
+
*/
|
|
216
|
+
export interface PipelineSummary {
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* <p> The Amazon Resource Name (ARN) of the pipeline.</p>
|
|
220
|
+
*/
|
|
221
|
+
PipelineArn?: string;
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* <p>The name of the pipeline.</p>
|
|
225
|
+
*/
|
|
226
|
+
PipelineName?: string;
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
* <p>The display name of the pipeline.</p>
|
|
230
|
+
*/
|
|
231
|
+
PipelineDisplayName?: string;
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
* <p>The description of the pipeline.</p>
|
|
235
|
+
*/
|
|
236
|
+
PipelineDescription?: string;
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
* <p>The Amazon Resource Name (ARN) that the pipeline used to execute.</p>
|
|
240
|
+
*/
|
|
241
|
+
RoleArn?: string;
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
* <p>The creation time of the pipeline.</p>
|
|
245
|
+
*/
|
|
246
|
+
CreationTime?: Date;
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
* <p>The time that the pipeline was last modified.</p>
|
|
250
|
+
*/
|
|
251
|
+
LastModifiedTime?: Date;
|
|
252
|
+
/**
|
|
253
|
+
* @public
|
|
254
|
+
* <p>The last time that a pipeline execution began.</p>
|
|
255
|
+
*/
|
|
256
|
+
LastExecutionTime?: Date;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
export interface ListPipelinesResponse {
|
|
262
|
+
/**
|
|
263
|
+
* @public
|
|
264
|
+
* <p>Contains a sorted list of <code>PipelineSummary</code> objects matching the specified
|
|
265
|
+
* filters. Each <code>PipelineSummary</code> consists of PipelineArn, PipelineName,
|
|
266
|
+
* ExperimentName, PipelineDescription, CreationTime, LastModifiedTime, LastRunTime, and
|
|
267
|
+
* RoleArn. This list can be empty. </p>
|
|
268
|
+
*/
|
|
269
|
+
PipelineSummaries?: PipelineSummary[];
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
* <p>If the result of the previous <code>ListPipelines</code> request was truncated,
|
|
273
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of pipelines, use the token in the next request.</p>
|
|
274
|
+
*/
|
|
275
|
+
NextToken?: string;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
export interface ListProcessingJobsRequest {
|
|
281
|
+
/**
|
|
282
|
+
* @public
|
|
283
|
+
* <p>A filter that returns only processing jobs created after the specified time.</p>
|
|
284
|
+
*/
|
|
285
|
+
CreationTimeAfter?: Date;
|
|
286
|
+
/**
|
|
287
|
+
* @public
|
|
288
|
+
* <p>A filter that returns only processing jobs created after the specified time.</p>
|
|
289
|
+
*/
|
|
290
|
+
CreationTimeBefore?: Date;
|
|
291
|
+
/**
|
|
292
|
+
* @public
|
|
293
|
+
* <p>A filter that returns only processing jobs modified after the specified time.</p>
|
|
294
|
+
*/
|
|
295
|
+
LastModifiedTimeAfter?: Date;
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
* <p>A filter that returns only processing jobs modified before the specified time.</p>
|
|
299
|
+
*/
|
|
300
|
+
LastModifiedTimeBefore?: Date;
|
|
301
|
+
/**
|
|
302
|
+
* @public
|
|
303
|
+
* <p>A string in the processing job name. This filter returns only processing jobs whose
|
|
304
|
+
* name contains the specified string.</p>
|
|
305
|
+
*/
|
|
306
|
+
NameContains?: string;
|
|
307
|
+
/**
|
|
308
|
+
* @public
|
|
309
|
+
* <p>A filter that retrieves only processing jobs with a specific status.</p>
|
|
310
|
+
*/
|
|
311
|
+
StatusEquals?: ProcessingJobStatus;
|
|
312
|
+
/**
|
|
313
|
+
* @public
|
|
314
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
315
|
+
*/
|
|
316
|
+
SortBy?: SortBy;
|
|
317
|
+
/**
|
|
318
|
+
* @public
|
|
319
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
320
|
+
*/
|
|
321
|
+
SortOrder?: SortOrder;
|
|
322
|
+
/**
|
|
323
|
+
* @public
|
|
324
|
+
* <p>If the result of the previous <code>ListProcessingJobs</code> request was truncated,
|
|
325
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of processing
|
|
326
|
+
* jobs, use the token in the next request.</p>
|
|
327
|
+
*/
|
|
328
|
+
NextToken?: string;
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
* <p>The maximum number of processing jobs to return in the response.</p>
|
|
332
|
+
*/
|
|
333
|
+
MaxResults?: number;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* @public
|
|
337
|
+
* <p>Summary of information about a processing job.</p>
|
|
338
|
+
*/
|
|
339
|
+
export interface ProcessingJobSummary {
|
|
340
|
+
/**
|
|
341
|
+
* @public
|
|
342
|
+
* <p>The name of the processing job.</p>
|
|
343
|
+
*/
|
|
344
|
+
ProcessingJobName: string | undefined;
|
|
345
|
+
/**
|
|
346
|
+
* @public
|
|
347
|
+
* <p>The Amazon Resource Name (ARN) of the processing job..</p>
|
|
348
|
+
*/
|
|
349
|
+
ProcessingJobArn: string | undefined;
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
* <p>The time at which the processing job was created.</p>
|
|
353
|
+
*/
|
|
354
|
+
CreationTime: Date | undefined;
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
* <p>The time at which the processing job completed.</p>
|
|
358
|
+
*/
|
|
359
|
+
ProcessingEndTime?: Date;
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
* <p>A timestamp that indicates the last time the processing job was modified.</p>
|
|
363
|
+
*/
|
|
364
|
+
LastModifiedTime?: Date;
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
* <p>The status of the processing job.</p>
|
|
368
|
+
*/
|
|
369
|
+
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
370
|
+
/**
|
|
371
|
+
* @public
|
|
372
|
+
* <p>A string, up to one KB in size, that contains the reason a processing job failed, if
|
|
373
|
+
* it failed.</p>
|
|
374
|
+
*/
|
|
375
|
+
FailureReason?: string;
|
|
376
|
+
/**
|
|
377
|
+
* @public
|
|
378
|
+
* <p>An optional string, up to one KB in size, that contains metadata from the processing
|
|
379
|
+
* container when the processing job exits.</p>
|
|
380
|
+
*/
|
|
381
|
+
ExitMessage?: string;
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
export interface ListProcessingJobsResponse {
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
* <p>An array of <code>ProcessingJobSummary</code> objects, each listing a processing
|
|
390
|
+
* job.</p>
|
|
391
|
+
*/
|
|
392
|
+
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
393
|
+
/**
|
|
394
|
+
* @public
|
|
395
|
+
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
|
|
396
|
+
* processing jobs, use it in the subsequent request.</p>
|
|
397
|
+
*/
|
|
398
|
+
NextToken?: string;
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* @public
|
|
402
|
+
* @enum
|
|
403
|
+
*/
|
|
404
|
+
export declare const ProjectSortBy: {
|
|
405
|
+
readonly CREATION_TIME: "CreationTime";
|
|
406
|
+
readonly NAME: "Name";
|
|
407
|
+
};
|
|
408
|
+
/**
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
* @enum
|
|
415
|
+
*/
|
|
416
|
+
export declare const ProjectSortOrder: {
|
|
417
|
+
readonly ASCENDING: "Ascending";
|
|
418
|
+
readonly DESCENDING: "Descending";
|
|
419
|
+
};
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
*/
|
|
423
|
+
export type ProjectSortOrder = (typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
424
|
+
/**
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
export interface ListProjectsInput {
|
|
428
|
+
/**
|
|
429
|
+
* @public
|
|
430
|
+
* <p>A filter that returns the projects that were created after a specified
|
|
431
|
+
* time.</p>
|
|
432
|
+
*/
|
|
433
|
+
CreationTimeAfter?: Date;
|
|
434
|
+
/**
|
|
435
|
+
* @public
|
|
436
|
+
* <p>A filter that returns the projects that were created before a specified
|
|
437
|
+
* time.</p>
|
|
438
|
+
*/
|
|
439
|
+
CreationTimeBefore?: Date;
|
|
440
|
+
/**
|
|
441
|
+
* @public
|
|
442
|
+
* <p>The maximum number of projects to return in the response.</p>
|
|
443
|
+
*/
|
|
444
|
+
MaxResults?: number;
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
* <p>A filter that returns the projects whose name contains a specified
|
|
448
|
+
* string.</p>
|
|
449
|
+
*/
|
|
450
|
+
NameContains?: string;
|
|
451
|
+
/**
|
|
452
|
+
* @public
|
|
453
|
+
* <p>If the result of the previous <code>ListProjects</code> request was truncated,
|
|
454
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of projects, use the token in the next request.</p>
|
|
455
|
+
*/
|
|
456
|
+
NextToken?: string;
|
|
457
|
+
/**
|
|
458
|
+
* @public
|
|
459
|
+
* <p>The field by which to sort results. The default is <code>CreationTime</code>.</p>
|
|
460
|
+
*/
|
|
461
|
+
SortBy?: ProjectSortBy;
|
|
462
|
+
/**
|
|
463
|
+
* @public
|
|
464
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
465
|
+
*/
|
|
466
|
+
SortOrder?: ProjectSortOrder;
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* @public
|
|
470
|
+
* <p>Information about a project.</p>
|
|
471
|
+
*/
|
|
472
|
+
export interface ProjectSummary {
|
|
473
|
+
/**
|
|
474
|
+
* @public
|
|
475
|
+
* <p>The name of the project.</p>
|
|
476
|
+
*/
|
|
477
|
+
ProjectName: string | undefined;
|
|
478
|
+
/**
|
|
479
|
+
* @public
|
|
480
|
+
* <p>The description of the project.</p>
|
|
481
|
+
*/
|
|
482
|
+
ProjectDescription?: string;
|
|
483
|
+
/**
|
|
484
|
+
* @public
|
|
485
|
+
* <p>The Amazon Resource Name (ARN) of the project.</p>
|
|
486
|
+
*/
|
|
487
|
+
ProjectArn: string | undefined;
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
* <p>The ID of the project.</p>
|
|
491
|
+
*/
|
|
492
|
+
ProjectId: string | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* @public
|
|
495
|
+
* <p>The time that the project was created.</p>
|
|
496
|
+
*/
|
|
497
|
+
CreationTime: Date | undefined;
|
|
498
|
+
/**
|
|
499
|
+
* @public
|
|
500
|
+
* <p>The status of the project.</p>
|
|
501
|
+
*/
|
|
502
|
+
ProjectStatus: ProjectStatus | undefined;
|
|
503
|
+
}
|
|
504
|
+
/**
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
export interface ListProjectsOutput {
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* <p>A list of summaries of projects.</p>
|
|
511
|
+
*/
|
|
512
|
+
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
513
|
+
/**
|
|
514
|
+
* @public
|
|
515
|
+
* <p>If the result of the previous <code>ListCompilationJobs</code> request was truncated,
|
|
516
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of model
|
|
517
|
+
* compilation jobs, use the token in the next request.</p>
|
|
518
|
+
*/
|
|
519
|
+
NextToken?: string;
|
|
520
|
+
}
|
|
521
|
+
/**
|
|
522
|
+
* @public
|
|
523
|
+
* @enum
|
|
524
|
+
*/
|
|
525
|
+
export declare const ResourceCatalogSortBy: {
|
|
526
|
+
readonly CREATION_TIME: "CreationTime";
|
|
527
|
+
};
|
|
528
|
+
/**
|
|
529
|
+
* @public
|
|
530
|
+
*/
|
|
531
|
+
export type ResourceCatalogSortBy = (typeof ResourceCatalogSortBy)[keyof typeof ResourceCatalogSortBy];
|
|
532
|
+
/**
|
|
533
|
+
* @public
|
|
534
|
+
* @enum
|
|
535
|
+
*/
|
|
536
|
+
export declare const ResourceCatalogSortOrder: {
|
|
537
|
+
readonly ASCENDING: "Ascending";
|
|
538
|
+
readonly DESCENDING: "Descending";
|
|
539
|
+
};
|
|
540
|
+
/**
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
export type ResourceCatalogSortOrder = (typeof ResourceCatalogSortOrder)[keyof typeof ResourceCatalogSortOrder];
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
*/
|
|
547
|
+
export interface ListResourceCatalogsRequest {
|
|
548
|
+
/**
|
|
549
|
+
* @public
|
|
550
|
+
* <p> A string that partially matches one or more <code>ResourceCatalog</code>s names.
|
|
551
|
+
* Filters <code>ResourceCatalog</code> by name. </p>
|
|
552
|
+
*/
|
|
553
|
+
NameContains?: string;
|
|
554
|
+
/**
|
|
555
|
+
* @public
|
|
556
|
+
* <p> Use this parameter to search for <code>ResourceCatalog</code>s created after a
|
|
557
|
+
* specific date and time. </p>
|
|
558
|
+
*/
|
|
559
|
+
CreationTimeAfter?: Date;
|
|
560
|
+
/**
|
|
561
|
+
* @public
|
|
562
|
+
* <p> Use this parameter to search for <code>ResourceCatalog</code>s created before a
|
|
563
|
+
* specific date and time. </p>
|
|
564
|
+
*/
|
|
565
|
+
CreationTimeBefore?: Date;
|
|
566
|
+
/**
|
|
567
|
+
* @public
|
|
568
|
+
* <p> The order in which the resource catalogs are listed. </p>
|
|
569
|
+
*/
|
|
570
|
+
SortOrder?: ResourceCatalogSortOrder;
|
|
571
|
+
/**
|
|
572
|
+
* @public
|
|
573
|
+
* <p> The value on which the resource catalog list is sorted. </p>
|
|
574
|
+
*/
|
|
575
|
+
SortBy?: ResourceCatalogSortBy;
|
|
576
|
+
/**
|
|
577
|
+
* @public
|
|
578
|
+
* <p> The maximum number of results returned by <code>ListResourceCatalogs</code>. </p>
|
|
579
|
+
*/
|
|
580
|
+
MaxResults?: number;
|
|
581
|
+
/**
|
|
582
|
+
* @public
|
|
583
|
+
* <p> A token to resume pagination of <code>ListResourceCatalogs</code> results. </p>
|
|
584
|
+
*/
|
|
585
|
+
NextToken?: string;
|
|
586
|
+
}
|
|
587
|
+
/**
|
|
588
|
+
* @public
|
|
589
|
+
* <p> A resource catalog containing all of the resources of a specific resource type within
|
|
590
|
+
* a resource owner account. For an example on sharing the Amazon SageMaker Feature Store
|
|
591
|
+
* <code>DefaultFeatureGroupCatalog</code>, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/feature-store-cross-account-discoverability-share-sagemaker-catalog.html">Share Amazon SageMaker Catalog resource type</a> in the Amazon SageMaker Developer Guide.
|
|
592
|
+
* </p>
|
|
593
|
+
*/
|
|
594
|
+
export interface ResourceCatalog {
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
* <p> The Amazon Resource Name (ARN) of the <code>ResourceCatalog</code>. </p>
|
|
598
|
+
*/
|
|
599
|
+
ResourceCatalogArn: string | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* @public
|
|
602
|
+
* <p> The name of the <code>ResourceCatalog</code>. </p>
|
|
603
|
+
*/
|
|
604
|
+
ResourceCatalogName: string | undefined;
|
|
605
|
+
/**
|
|
606
|
+
* @public
|
|
607
|
+
* <p> A free form description of the <code>ResourceCatalog</code>. </p>
|
|
608
|
+
*/
|
|
609
|
+
Description: string | undefined;
|
|
610
|
+
/**
|
|
611
|
+
* @public
|
|
612
|
+
* <p> The time the <code>ResourceCatalog</code> was created. </p>
|
|
613
|
+
*/
|
|
614
|
+
CreationTime: Date | undefined;
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
export interface ListResourceCatalogsResponse {
|
|
620
|
+
/**
|
|
621
|
+
* @public
|
|
622
|
+
* <p> A list of the requested <code>ResourceCatalog</code>s. </p>
|
|
623
|
+
*/
|
|
624
|
+
ResourceCatalogs?: ResourceCatalog[];
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
* <p> A token to resume pagination of <code>ListResourceCatalogs</code> results. </p>
|
|
628
|
+
*/
|
|
629
|
+
NextToken?: string;
|
|
630
|
+
}
|
|
631
|
+
/**
|
|
632
|
+
* @public
|
|
633
|
+
* @enum
|
|
634
|
+
*/
|
|
635
|
+
export declare const SpaceSortKey: {
|
|
636
|
+
readonly CreationTime: "CreationTime";
|
|
637
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
638
|
+
};
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
643
|
+
/**
|
|
644
|
+
* @public
|
|
645
|
+
*/
|
|
646
|
+
export interface ListSpacesRequest {
|
|
647
|
+
/**
|
|
648
|
+
* @public
|
|
649
|
+
* <p>If the previous response was truncated, you will receive this token. Use it in your
|
|
650
|
+
* next request to receive the next set of results.</p>
|
|
651
|
+
*/
|
|
652
|
+
NextToken?: string;
|
|
653
|
+
/**
|
|
654
|
+
* @public
|
|
655
|
+
* <p>The total number of items to return in the response. If the total number of items
|
|
656
|
+
* available is more than the value specified, a <code>NextToken</code> is provided in the
|
|
657
|
+
* response. To resume pagination, provide the <code>NextToken</code> value in the as part
|
|
658
|
+
* of a subsequent call. The default value is 10.</p>
|
|
659
|
+
*/
|
|
660
|
+
MaxResults?: number;
|
|
661
|
+
/**
|
|
662
|
+
* @public
|
|
663
|
+
* <p>The sort order for the results. The default is <code>Ascending</code>.</p>
|
|
664
|
+
*/
|
|
665
|
+
SortOrder?: SortOrder;
|
|
666
|
+
/**
|
|
667
|
+
* @public
|
|
668
|
+
* <p>The parameter by which to sort the results. The default is
|
|
669
|
+
* <code>CreationTime</code>.</p>
|
|
670
|
+
*/
|
|
671
|
+
SortBy?: SpaceSortKey;
|
|
672
|
+
/**
|
|
673
|
+
* @public
|
|
674
|
+
* <p>A parameter to search for the Domain ID.</p>
|
|
675
|
+
*/
|
|
676
|
+
DomainIdEquals?: string;
|
|
677
|
+
/**
|
|
678
|
+
* @public
|
|
679
|
+
* <p>A parameter by which to filter the results.</p>
|
|
680
|
+
*/
|
|
681
|
+
SpaceNameContains?: string;
|
|
682
|
+
}
|
|
683
|
+
/**
|
|
684
|
+
* @public
|
|
685
|
+
* <p>Specifies summary information about the ownership settings.</p>
|
|
686
|
+
*/
|
|
687
|
+
export interface OwnershipSettingsSummary {
|
|
688
|
+
/**
|
|
689
|
+
* @public
|
|
690
|
+
* <p>The user profile who is the owner of the private space.</p>
|
|
691
|
+
*/
|
|
692
|
+
OwnerUserProfileName?: string;
|
|
693
|
+
}
|
|
694
|
+
/**
|
|
695
|
+
* @public
|
|
696
|
+
* <p>Specifies summary information about the space settings.</p>
|
|
697
|
+
*/
|
|
698
|
+
export interface SpaceSettingsSummary {
|
|
699
|
+
/**
|
|
700
|
+
* @public
|
|
701
|
+
* <p>The type of app created within the space.</p>
|
|
702
|
+
*/
|
|
703
|
+
AppType?: AppType;
|
|
704
|
+
/**
|
|
705
|
+
* @public
|
|
706
|
+
* <p>The storage settings for a private space.</p>
|
|
707
|
+
*/
|
|
708
|
+
SpaceStorageSettings?: SpaceStorageSettings;
|
|
709
|
+
}
|
|
710
|
+
/**
|
|
711
|
+
* @public
|
|
712
|
+
* <p>Specifies summary information about the space sharing settings.</p>
|
|
713
|
+
*/
|
|
714
|
+
export interface SpaceSharingSettingsSummary {
|
|
715
|
+
/**
|
|
716
|
+
* @public
|
|
717
|
+
* <p>Specifies the sharing type of the space.</p>
|
|
718
|
+
*/
|
|
719
|
+
SharingType?: SharingType;
|
|
720
|
+
}
|
|
721
|
+
/**
|
|
722
|
+
* @public
|
|
723
|
+
* <p>The space's details.</p>
|
|
724
|
+
*/
|
|
725
|
+
export interface SpaceDetails {
|
|
726
|
+
/**
|
|
727
|
+
* @public
|
|
728
|
+
* <p>The ID of the associated Domain.</p>
|
|
729
|
+
*/
|
|
730
|
+
DomainId?: string;
|
|
731
|
+
/**
|
|
732
|
+
* @public
|
|
733
|
+
* <p>The name of the space.</p>
|
|
734
|
+
*/
|
|
735
|
+
SpaceName?: string;
|
|
736
|
+
/**
|
|
737
|
+
* @public
|
|
738
|
+
* <p>The status.</p>
|
|
739
|
+
*/
|
|
740
|
+
Status?: SpaceStatus;
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
* <p>The creation time.</p>
|
|
744
|
+
*/
|
|
745
|
+
CreationTime?: Date;
|
|
746
|
+
/**
|
|
747
|
+
* @public
|
|
748
|
+
* <p>The last modified time.</p>
|
|
749
|
+
*/
|
|
750
|
+
LastModifiedTime?: Date;
|
|
751
|
+
/**
|
|
752
|
+
* @public
|
|
753
|
+
* <p>The name of the space that appears in the Studio UI.</p>
|
|
754
|
+
*/
|
|
755
|
+
SpaceDisplayName?: string;
|
|
756
|
+
/**
|
|
757
|
+
* @public
|
|
758
|
+
* <p>Specifies summary information about the space settings.</p>
|
|
759
|
+
*/
|
|
760
|
+
SpaceSettingsSummary?: SpaceSettingsSummary;
|
|
761
|
+
/**
|
|
762
|
+
* @public
|
|
763
|
+
* <p>Specifies summary information about the space sharing settings.</p>
|
|
764
|
+
*/
|
|
765
|
+
SpaceSharingSettingsSummary?: SpaceSharingSettingsSummary;
|
|
766
|
+
/**
|
|
767
|
+
* @public
|
|
768
|
+
* <p>Specifies summary information about the ownership settings.</p>
|
|
769
|
+
*/
|
|
770
|
+
OwnershipSettingsSummary?: OwnershipSettingsSummary;
|
|
771
|
+
}
|
|
772
|
+
/**
|
|
773
|
+
* @public
|
|
774
|
+
*/
|
|
775
|
+
export interface ListSpacesResponse {
|
|
776
|
+
/**
|
|
777
|
+
* @public
|
|
778
|
+
* <p>The list of spaces.</p>
|
|
779
|
+
*/
|
|
780
|
+
Spaces?: SpaceDetails[];
|
|
781
|
+
/**
|
|
782
|
+
* @public
|
|
783
|
+
* <p>If the previous response was truncated, you will receive this token. Use it in your
|
|
784
|
+
* next request to receive the next set of results.</p>
|
|
785
|
+
*/
|
|
786
|
+
NextToken?: string;
|
|
787
|
+
}
|
|
788
|
+
/**
|
|
789
|
+
* @public
|
|
790
|
+
*/
|
|
791
|
+
export interface ListStageDevicesRequest {
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
* <p>The response from the last list when returning a list large enough to neeed
|
|
795
|
+
* tokening.</p>
|
|
796
|
+
*/
|
|
797
|
+
NextToken?: string;
|
|
798
|
+
/**
|
|
799
|
+
* @public
|
|
800
|
+
* <p>The maximum number of requests to select.</p>
|
|
801
|
+
*/
|
|
802
|
+
MaxResults?: number;
|
|
803
|
+
/**
|
|
804
|
+
* @public
|
|
805
|
+
* <p>The name of the edge deployment plan.</p>
|
|
806
|
+
*/
|
|
807
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
808
|
+
/**
|
|
809
|
+
* @public
|
|
810
|
+
* <p>Toggle for excluding devices deployed in other stages.</p>
|
|
811
|
+
*/
|
|
812
|
+
ExcludeDevicesDeployedInOtherStage?: boolean;
|
|
813
|
+
/**
|
|
814
|
+
* @public
|
|
815
|
+
* <p>The name of the stage in the deployment.</p>
|
|
816
|
+
*/
|
|
817
|
+
StageName: string | undefined;
|
|
818
|
+
}
|
|
819
|
+
/**
|
|
820
|
+
* @public
|
|
821
|
+
*/
|
|
822
|
+
export interface ListStageDevicesResponse {
|
|
823
|
+
/**
|
|
824
|
+
* @public
|
|
825
|
+
* <p>List of summaries of devices allocated to the stage.</p>
|
|
826
|
+
*/
|
|
827
|
+
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
828
|
+
/**
|
|
829
|
+
* @public
|
|
830
|
+
* <p>The token to use when calling the next page of results.</p>
|
|
831
|
+
*/
|
|
832
|
+
NextToken?: string;
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
* @public
|
|
836
|
+
* @enum
|
|
837
|
+
*/
|
|
838
|
+
export declare const StudioLifecycleConfigSortKey: {
|
|
839
|
+
readonly CreationTime: "CreationTime";
|
|
840
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
841
|
+
readonly Name: "Name";
|
|
842
|
+
};
|
|
843
|
+
/**
|
|
844
|
+
* @public
|
|
845
|
+
*/
|
|
846
|
+
export type StudioLifecycleConfigSortKey = (typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
847
|
+
/**
|
|
848
|
+
* @public
|
|
849
|
+
*/
|
|
850
|
+
export interface ListStudioLifecycleConfigsRequest {
|
|
851
|
+
/**
|
|
852
|
+
* @public
|
|
853
|
+
* <p>The total number of items to return in the response. If the total
|
|
854
|
+
* number of items available is more than the value specified, a <code>NextToken</code>
|
|
855
|
+
* is provided in the response. To resume pagination, provide the <code>NextToken</code>
|
|
856
|
+
* value in the as part of a subsequent call. The default value is 10.</p>
|
|
857
|
+
*/
|
|
858
|
+
MaxResults?: number;
|
|
859
|
+
/**
|
|
860
|
+
* @public
|
|
861
|
+
* <p>If the previous call to ListStudioLifecycleConfigs didn't return the full set of Lifecycle Configurations, the call returns a token for getting the next set of Lifecycle Configurations.</p>
|
|
862
|
+
*/
|
|
863
|
+
NextToken?: string;
|
|
864
|
+
/**
|
|
865
|
+
* @public
|
|
866
|
+
* <p>A string in the Lifecycle Configuration name. This filter returns only Lifecycle Configurations whose name contains the specified string.</p>
|
|
867
|
+
*/
|
|
868
|
+
NameContains?: string;
|
|
869
|
+
/**
|
|
870
|
+
* @public
|
|
871
|
+
* <p>A parameter to search for the App Type to which the Lifecycle Configuration is attached.</p>
|
|
872
|
+
*/
|
|
873
|
+
AppTypeEquals?: StudioLifecycleConfigAppType;
|
|
874
|
+
/**
|
|
875
|
+
* @public
|
|
876
|
+
* <p>A filter that returns only Lifecycle Configurations created on or before the specified time.</p>
|
|
877
|
+
*/
|
|
878
|
+
CreationTimeBefore?: Date;
|
|
879
|
+
/**
|
|
880
|
+
* @public
|
|
881
|
+
* <p>A filter that returns only Lifecycle Configurations created on or after the specified time.</p>
|
|
882
|
+
*/
|
|
883
|
+
CreationTimeAfter?: Date;
|
|
884
|
+
/**
|
|
885
|
+
* @public
|
|
886
|
+
* <p>A filter that returns only Lifecycle Configurations modified before the specified time.</p>
|
|
887
|
+
*/
|
|
888
|
+
ModifiedTimeBefore?: Date;
|
|
889
|
+
/**
|
|
890
|
+
* @public
|
|
891
|
+
* <p>A filter that returns only Lifecycle Configurations modified after the specified time.</p>
|
|
892
|
+
*/
|
|
893
|
+
ModifiedTimeAfter?: Date;
|
|
894
|
+
/**
|
|
895
|
+
* @public
|
|
896
|
+
* <p>The property used to sort results. The default value is CreationTime.</p>
|
|
897
|
+
*/
|
|
898
|
+
SortBy?: StudioLifecycleConfigSortKey;
|
|
899
|
+
/**
|
|
900
|
+
* @public
|
|
901
|
+
* <p>The sort order. The default value is Descending.</p>
|
|
902
|
+
*/
|
|
903
|
+
SortOrder?: SortOrder;
|
|
904
|
+
}
|
|
905
|
+
/**
|
|
906
|
+
* @public
|
|
907
|
+
* <p>Details of the Amazon SageMaker Studio Lifecycle Configuration.</p>
|
|
908
|
+
*/
|
|
909
|
+
export interface StudioLifecycleConfigDetails {
|
|
910
|
+
/**
|
|
911
|
+
* @public
|
|
912
|
+
* <p> The Amazon Resource Name (ARN) of the Lifecycle Configuration.</p>
|
|
913
|
+
*/
|
|
914
|
+
StudioLifecycleConfigArn?: string;
|
|
915
|
+
/**
|
|
916
|
+
* @public
|
|
917
|
+
* <p>The name of the Amazon SageMaker Studio Lifecycle Configuration.</p>
|
|
918
|
+
*/
|
|
919
|
+
StudioLifecycleConfigName?: string;
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
* <p>The creation time of the Amazon SageMaker Studio Lifecycle Configuration.</p>
|
|
923
|
+
*/
|
|
924
|
+
CreationTime?: Date;
|
|
925
|
+
/**
|
|
926
|
+
* @public
|
|
927
|
+
* <p>This value is equivalent to CreationTime because Amazon SageMaker Studio Lifecycle Configurations are immutable.</p>
|
|
928
|
+
*/
|
|
929
|
+
LastModifiedTime?: Date;
|
|
930
|
+
/**
|
|
931
|
+
* @public
|
|
932
|
+
* <p>The App type to which the Lifecycle Configuration is attached.</p>
|
|
933
|
+
*/
|
|
934
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
935
|
+
}
|
|
936
|
+
/**
|
|
937
|
+
* @public
|
|
938
|
+
*/
|
|
939
|
+
export interface ListStudioLifecycleConfigsResponse {
|
|
940
|
+
/**
|
|
941
|
+
* @public
|
|
942
|
+
* <p>If the previous response was truncated, you will receive this token.
|
|
943
|
+
* Use it in your next request to receive the next set of results.</p>
|
|
944
|
+
*/
|
|
945
|
+
NextToken?: string;
|
|
946
|
+
/**
|
|
947
|
+
* @public
|
|
948
|
+
* <p>A list of Lifecycle Configurations and their properties.</p>
|
|
949
|
+
*/
|
|
950
|
+
StudioLifecycleConfigs?: StudioLifecycleConfigDetails[];
|
|
951
|
+
}
|
|
952
|
+
/**
|
|
953
|
+
* @public
|
|
954
|
+
*/
|
|
955
|
+
export interface ListSubscribedWorkteamsRequest {
|
|
956
|
+
/**
|
|
957
|
+
* @public
|
|
958
|
+
* <p>A string in the work team name. This filter returns only work teams whose name
|
|
959
|
+
* contains the specified string.</p>
|
|
960
|
+
*/
|
|
961
|
+
NameContains?: string;
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
* <p>If the result of the previous <code>ListSubscribedWorkteams</code> request was
|
|
965
|
+
* truncated, the response includes a <code>NextToken</code>. To retrieve the next set of
|
|
966
|
+
* labeling jobs, use the token in the next request.</p>
|
|
967
|
+
*/
|
|
968
|
+
NextToken?: string;
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
* <p>The maximum number of work teams to return in each page of the response.</p>
|
|
972
|
+
*/
|
|
973
|
+
MaxResults?: number;
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
* @public
|
|
977
|
+
*/
|
|
978
|
+
export interface ListSubscribedWorkteamsResponse {
|
|
979
|
+
/**
|
|
980
|
+
* @public
|
|
981
|
+
* <p>An array of <code>Workteam</code> objects, each describing a work team.</p>
|
|
982
|
+
*/
|
|
983
|
+
SubscribedWorkteams: SubscribedWorkteam[] | undefined;
|
|
984
|
+
/**
|
|
985
|
+
* @public
|
|
986
|
+
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
|
|
987
|
+
* work teams, use it in the subsequent request.</p>
|
|
988
|
+
*/
|
|
989
|
+
NextToken?: string;
|
|
990
|
+
}
|
|
991
|
+
/**
|
|
992
|
+
* @public
|
|
993
|
+
*/
|
|
994
|
+
export interface ListTagsInput {
|
|
995
|
+
/**
|
|
996
|
+
* @public
|
|
997
|
+
* <p>The Amazon Resource Name (ARN) of the resource whose tags you want to
|
|
998
|
+
* retrieve.</p>
|
|
999
|
+
*/
|
|
1000
|
+
ResourceArn: string | undefined;
|
|
1001
|
+
/**
|
|
1002
|
+
* @public
|
|
1003
|
+
* <p> If the response to the previous <code>ListTags</code> request is truncated, SageMaker
|
|
1004
|
+
* returns this token. To retrieve the next set of tags, use it in the subsequent request.
|
|
1005
|
+
* </p>
|
|
1006
|
+
*/
|
|
1007
|
+
NextToken?: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* @public
|
|
1010
|
+
* <p>Maximum number of tags to return.</p>
|
|
1011
|
+
*/
|
|
1012
|
+
MaxResults?: number;
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
* @public
|
|
1016
|
+
*/
|
|
1017
|
+
export interface ListTagsOutput {
|
|
1018
|
+
/**
|
|
1019
|
+
* @public
|
|
1020
|
+
* <p>An array of <code>Tag</code> objects, each with a tag key and a value.</p>
|
|
1021
|
+
*/
|
|
1022
|
+
Tags?: Tag[];
|
|
1023
|
+
/**
|
|
1024
|
+
* @public
|
|
1025
|
+
* <p> If response is truncated, SageMaker includes a token in the response. You can use this
|
|
1026
|
+
* token in your subsequent request to fetch next set of tokens. </p>
|
|
1027
|
+
*/
|
|
1028
|
+
NextToken?: string;
|
|
1029
|
+
}
|
|
1030
|
+
/**
|
|
1031
|
+
* @public
|
|
1032
|
+
*/
|
|
1033
|
+
export interface ListTrainingJobsRequest {
|
|
1034
|
+
/**
|
|
1035
|
+
* @public
|
|
1036
|
+
* <p>If the result of the previous <code>ListTrainingJobs</code> request was truncated,
|
|
1037
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of training
|
|
1038
|
+
* jobs, use the token in the next request. </p>
|
|
1039
|
+
*/
|
|
1040
|
+
NextToken?: string;
|
|
1041
|
+
/**
|
|
1042
|
+
* @public
|
|
1043
|
+
* <p>The maximum number of training jobs to return in the response.</p>
|
|
1044
|
+
*/
|
|
1045
|
+
MaxResults?: number;
|
|
1046
|
+
/**
|
|
1047
|
+
* @public
|
|
1048
|
+
* <p>A filter that returns only training jobs created after the specified time
|
|
1049
|
+
* (timestamp).</p>
|
|
1050
|
+
*/
|
|
1051
|
+
CreationTimeAfter?: Date;
|
|
1052
|
+
/**
|
|
1053
|
+
* @public
|
|
1054
|
+
* <p>A filter that returns only training jobs created before the specified time
|
|
1055
|
+
* (timestamp).</p>
|
|
1056
|
+
*/
|
|
1057
|
+
CreationTimeBefore?: Date;
|
|
1058
|
+
/**
|
|
1059
|
+
* @public
|
|
1060
|
+
* <p>A filter that returns only training jobs modified after the specified time
|
|
1061
|
+
* (timestamp).</p>
|
|
1062
|
+
*/
|
|
1063
|
+
LastModifiedTimeAfter?: Date;
|
|
1064
|
+
/**
|
|
1065
|
+
* @public
|
|
1066
|
+
* <p>A filter that returns only training jobs modified before the specified time
|
|
1067
|
+
* (timestamp).</p>
|
|
1068
|
+
*/
|
|
1069
|
+
LastModifiedTimeBefore?: Date;
|
|
1070
|
+
/**
|
|
1071
|
+
* @public
|
|
1072
|
+
* <p>A string in the training job name. This filter returns only training jobs whose
|
|
1073
|
+
* name contains the specified string.</p>
|
|
1074
|
+
*/
|
|
1075
|
+
NameContains?: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* @public
|
|
1078
|
+
* <p>A filter that retrieves only training jobs with a specific status.</p>
|
|
1079
|
+
*/
|
|
1080
|
+
StatusEquals?: TrainingJobStatus;
|
|
1081
|
+
/**
|
|
1082
|
+
* @public
|
|
1083
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
1084
|
+
*/
|
|
1085
|
+
SortBy?: SortBy;
|
|
1086
|
+
/**
|
|
1087
|
+
* @public
|
|
1088
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
1089
|
+
*/
|
|
1090
|
+
SortOrder?: SortOrder;
|
|
1091
|
+
/**
|
|
1092
|
+
* @public
|
|
1093
|
+
* <p>A filter that retrieves only training jobs with a specific warm pool status.</p>
|
|
1094
|
+
*/
|
|
1095
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus;
|
|
1096
|
+
}
|
|
1097
|
+
/**
|
|
1098
|
+
* @public
|
|
1099
|
+
* <p>Provides summary information about a training job.</p>
|
|
1100
|
+
*/
|
|
1101
|
+
export interface TrainingJobSummary {
|
|
1102
|
+
/**
|
|
1103
|
+
* @public
|
|
1104
|
+
* <p>The name of the training job that you want a summary for.</p>
|
|
1105
|
+
*/
|
|
1106
|
+
TrainingJobName: string | undefined;
|
|
1107
|
+
/**
|
|
1108
|
+
* @public
|
|
1109
|
+
* <p>The Amazon Resource Name (ARN) of the training job.</p>
|
|
1110
|
+
*/
|
|
1111
|
+
TrainingJobArn: string | undefined;
|
|
1112
|
+
/**
|
|
1113
|
+
* @public
|
|
1114
|
+
* <p>A timestamp that shows when the training job was created.</p>
|
|
1115
|
+
*/
|
|
1116
|
+
CreationTime: Date | undefined;
|
|
1117
|
+
/**
|
|
1118
|
+
* @public
|
|
1119
|
+
* <p>A timestamp that shows when the training job ended. This field is set only if the
|
|
1120
|
+
* training job has one of the terminal statuses (<code>Completed</code>,
|
|
1121
|
+
* <code>Failed</code>, or <code>Stopped</code>). </p>
|
|
1122
|
+
*/
|
|
1123
|
+
TrainingEndTime?: Date;
|
|
1124
|
+
/**
|
|
1125
|
+
* @public
|
|
1126
|
+
* <p> Timestamp when the training job was last modified. </p>
|
|
1127
|
+
*/
|
|
1128
|
+
LastModifiedTime?: Date;
|
|
1129
|
+
/**
|
|
1130
|
+
* @public
|
|
1131
|
+
* <p>The status of the training job.</p>
|
|
1132
|
+
*/
|
|
1133
|
+
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
1134
|
+
/**
|
|
1135
|
+
* @public
|
|
1136
|
+
* <p>The status of the warm pool associated with the training job.</p>
|
|
1137
|
+
*/
|
|
1138
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
1139
|
+
}
|
|
1140
|
+
/**
|
|
1141
|
+
* @public
|
|
1142
|
+
*/
|
|
1143
|
+
export interface ListTrainingJobsResponse {
|
|
1144
|
+
/**
|
|
1145
|
+
* @public
|
|
1146
|
+
* <p>An array of <code>TrainingJobSummary</code> objects, each listing a training
|
|
1147
|
+
* job.</p>
|
|
1148
|
+
*/
|
|
1149
|
+
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
1150
|
+
/**
|
|
1151
|
+
* @public
|
|
1152
|
+
* <p>If the response is truncated, SageMaker returns this token. To retrieve the next set of
|
|
1153
|
+
* training jobs, use it in the subsequent request.</p>
|
|
1154
|
+
*/
|
|
1155
|
+
NextToken?: string;
|
|
1156
|
+
}
|
|
1157
|
+
/**
|
|
1158
|
+
* @public
|
|
1159
|
+
* @enum
|
|
1160
|
+
*/
|
|
1161
|
+
export declare const TrainingJobSortByOptions: {
|
|
1162
|
+
readonly CreationTime: "CreationTime";
|
|
1163
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
1164
|
+
readonly Name: "Name";
|
|
1165
|
+
readonly Status: "Status";
|
|
1166
|
+
};
|
|
1167
|
+
/**
|
|
1168
|
+
* @public
|
|
1169
|
+
*/
|
|
1170
|
+
export type TrainingJobSortByOptions = (typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
1171
|
+
/**
|
|
1172
|
+
* @public
|
|
1173
|
+
*/
|
|
1174
|
+
export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
1175
|
+
/**
|
|
1176
|
+
* @public
|
|
1177
|
+
* <p>The name of the tuning job whose training jobs you want to list.</p>
|
|
1178
|
+
*/
|
|
1179
|
+
HyperParameterTuningJobName: string | undefined;
|
|
1180
|
+
/**
|
|
1181
|
+
* @public
|
|
1182
|
+
* <p>If the result of the previous <code>ListTrainingJobsForHyperParameterTuningJob</code>
|
|
1183
|
+
* request was truncated, the response includes a <code>NextToken</code>. To retrieve the
|
|
1184
|
+
* next set of training jobs, use the token in the next request.</p>
|
|
1185
|
+
*/
|
|
1186
|
+
NextToken?: string;
|
|
1187
|
+
/**
|
|
1188
|
+
* @public
|
|
1189
|
+
* <p>The maximum number of training jobs to return. The default value is 10.</p>
|
|
1190
|
+
*/
|
|
1191
|
+
MaxResults?: number;
|
|
1192
|
+
/**
|
|
1193
|
+
* @public
|
|
1194
|
+
* <p>A filter that returns only training jobs with the specified status.</p>
|
|
1195
|
+
*/
|
|
1196
|
+
StatusEquals?: TrainingJobStatus;
|
|
1197
|
+
/**
|
|
1198
|
+
* @public
|
|
1199
|
+
* <p>The field to sort results by. The default is <code>Name</code>.</p>
|
|
1200
|
+
* <p>If the value of this field is <code>FinalObjectiveMetricValue</code>, any training
|
|
1201
|
+
* jobs that did not return an objective metric are not listed.</p>
|
|
1202
|
+
*/
|
|
1203
|
+
SortBy?: TrainingJobSortByOptions;
|
|
1204
|
+
/**
|
|
1205
|
+
* @public
|
|
1206
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
1207
|
+
*/
|
|
1208
|
+
SortOrder?: SortOrder;
|
|
1209
|
+
}
|
|
1210
|
+
/**
|
|
1211
|
+
* @public
|
|
1212
|
+
*/
|
|
1213
|
+
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
1214
|
+
/**
|
|
1215
|
+
* @public
|
|
1216
|
+
* <p>A list of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobSummary.html">TrainingJobSummary</a> objects that
|
|
1217
|
+
* describe
|
|
1218
|
+
* the training jobs that the
|
|
1219
|
+
* <code>ListTrainingJobsForHyperParameterTuningJob</code> request returned.</p>
|
|
1220
|
+
*/
|
|
1221
|
+
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
1222
|
+
/**
|
|
1223
|
+
* @public
|
|
1224
|
+
* <p>If the result of this <code>ListTrainingJobsForHyperParameterTuningJob</code> request
|
|
1225
|
+
* was truncated, the response includes a <code>NextToken</code>. To retrieve the next set
|
|
1226
|
+
* of training jobs, use the token in the next request.</p>
|
|
1227
|
+
*/
|
|
1228
|
+
NextToken?: string;
|
|
1229
|
+
}
|
|
1230
|
+
/**
|
|
1231
|
+
* @public
|
|
1232
|
+
*/
|
|
1233
|
+
export interface ListTransformJobsRequest {
|
|
1234
|
+
/**
|
|
1235
|
+
* @public
|
|
1236
|
+
* <p>A filter that returns only transform jobs created after the specified time.</p>
|
|
1237
|
+
*/
|
|
1238
|
+
CreationTimeAfter?: Date;
|
|
1239
|
+
/**
|
|
1240
|
+
* @public
|
|
1241
|
+
* <p>A filter that returns only transform jobs created before the specified time.</p>
|
|
1242
|
+
*/
|
|
1243
|
+
CreationTimeBefore?: Date;
|
|
1244
|
+
/**
|
|
1245
|
+
* @public
|
|
1246
|
+
* <p>A filter that returns only transform jobs modified after the specified time.</p>
|
|
1247
|
+
*/
|
|
1248
|
+
LastModifiedTimeAfter?: Date;
|
|
1249
|
+
/**
|
|
1250
|
+
* @public
|
|
1251
|
+
* <p>A filter that returns only transform jobs modified before the specified time.</p>
|
|
1252
|
+
*/
|
|
1253
|
+
LastModifiedTimeBefore?: Date;
|
|
1254
|
+
/**
|
|
1255
|
+
* @public
|
|
1256
|
+
* <p>A string in the transform job name. This filter returns only transform jobs whose name
|
|
1257
|
+
* contains the specified string.</p>
|
|
1258
|
+
*/
|
|
1259
|
+
NameContains?: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* @public
|
|
1262
|
+
* <p>A filter that retrieves only transform jobs with a specific status.</p>
|
|
1263
|
+
*/
|
|
1264
|
+
StatusEquals?: TransformJobStatus;
|
|
1265
|
+
/**
|
|
1266
|
+
* @public
|
|
1267
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
1268
|
+
*/
|
|
1269
|
+
SortBy?: SortBy;
|
|
1270
|
+
/**
|
|
1271
|
+
* @public
|
|
1272
|
+
* <p>The sort order for results. The default is <code>Descending</code>.</p>
|
|
1273
|
+
*/
|
|
1274
|
+
SortOrder?: SortOrder;
|
|
1275
|
+
/**
|
|
1276
|
+
* @public
|
|
1277
|
+
* <p>If the result of the previous <code>ListTransformJobs</code> request was truncated,
|
|
1278
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of transform
|
|
1279
|
+
* jobs, use the token in the next request.</p>
|
|
1280
|
+
*/
|
|
1281
|
+
NextToken?: string;
|
|
1282
|
+
/**
|
|
1283
|
+
* @public
|
|
1284
|
+
* <p>The maximum number of transform jobs to return in the response. The default value is <code>10</code>.</p>
|
|
1285
|
+
*/
|
|
1286
|
+
MaxResults?: number;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* @public
|
|
1290
|
+
* <p>Provides a
|
|
1291
|
+
* summary
|
|
1292
|
+
* of a transform job. Multiple <code>TransformJobSummary</code> objects are returned as a
|
|
1293
|
+
* list after in response to a <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListTransformJobs.html">ListTransformJobs</a> call.</p>
|
|
1294
|
+
*/
|
|
1295
|
+
export interface TransformJobSummary {
|
|
1296
|
+
/**
|
|
1297
|
+
* @public
|
|
1298
|
+
* <p>The name of the transform job.</p>
|
|
1299
|
+
*/
|
|
1300
|
+
TransformJobName: string | undefined;
|
|
1301
|
+
/**
|
|
1302
|
+
* @public
|
|
1303
|
+
* <p>The Amazon Resource Name (ARN) of the transform job.</p>
|
|
1304
|
+
*/
|
|
1305
|
+
TransformJobArn: string | undefined;
|
|
1306
|
+
/**
|
|
1307
|
+
* @public
|
|
1308
|
+
* <p>A timestamp that shows when the transform Job was created.</p>
|
|
1309
|
+
*/
|
|
1310
|
+
CreationTime: Date | undefined;
|
|
1311
|
+
/**
|
|
1312
|
+
* @public
|
|
1313
|
+
* <p>Indicates when the transform
|
|
1314
|
+
* job
|
|
1315
|
+
* ends on compute instances. For successful jobs and stopped jobs, this
|
|
1316
|
+
* is the exact time
|
|
1317
|
+
* recorded
|
|
1318
|
+
* after the results are uploaded. For failed jobs, this is when Amazon SageMaker
|
|
1319
|
+
* detected that the job failed.</p>
|
|
1320
|
+
*/
|
|
1321
|
+
TransformEndTime?: Date;
|
|
1322
|
+
/**
|
|
1323
|
+
* @public
|
|
1324
|
+
* <p>Indicates when the transform job was last modified.</p>
|
|
1325
|
+
*/
|
|
1326
|
+
LastModifiedTime?: Date;
|
|
1327
|
+
/**
|
|
1328
|
+
* @public
|
|
1329
|
+
* <p>The status of the transform job.</p>
|
|
1330
|
+
*/
|
|
1331
|
+
TransformJobStatus: TransformJobStatus | undefined;
|
|
1332
|
+
/**
|
|
1333
|
+
* @public
|
|
1334
|
+
* <p>If the transform job failed,
|
|
1335
|
+
* the
|
|
1336
|
+
* reason it failed.</p>
|
|
1337
|
+
*/
|
|
1338
|
+
FailureReason?: string;
|
|
1339
|
+
}
|
|
1340
|
+
/**
|
|
1341
|
+
* @public
|
|
1342
|
+
*/
|
|
1343
|
+
export interface ListTransformJobsResponse {
|
|
1344
|
+
/**
|
|
1345
|
+
* @public
|
|
1346
|
+
* <p>An array of
|
|
1347
|
+
* <code>TransformJobSummary</code>
|
|
1348
|
+
* objects.</p>
|
|
1349
|
+
*/
|
|
1350
|
+
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
1351
|
+
/**
|
|
1352
|
+
* @public
|
|
1353
|
+
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
|
|
1354
|
+
* transform jobs, use it in the next request.</p>
|
|
1355
|
+
*/
|
|
1356
|
+
NextToken?: string;
|
|
1357
|
+
}
|
|
1358
|
+
/**
|
|
1359
|
+
* @public
|
|
1360
|
+
* @enum
|
|
1361
|
+
*/
|
|
1362
|
+
export declare const SortTrialComponentsBy: {
|
|
1363
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1364
|
+
readonly NAME: "Name";
|
|
1365
|
+
};
|
|
1366
|
+
/**
|
|
1367
|
+
* @public
|
|
1368
|
+
*/
|
|
1369
|
+
export type SortTrialComponentsBy = (typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
1370
|
+
/**
|
|
1371
|
+
* @public
|
|
1372
|
+
*/
|
|
1373
|
+
export interface ListTrialComponentsRequest {
|
|
1374
|
+
/**
|
|
1375
|
+
* @public
|
|
1376
|
+
* <p>A filter that returns only components that are part of the specified experiment. If you
|
|
1377
|
+
* specify <code>ExperimentName</code>, you can't filter by <code>SourceArn</code> or
|
|
1378
|
+
* <code>TrialName</code>.</p>
|
|
1379
|
+
*/
|
|
1380
|
+
ExperimentName?: string;
|
|
1381
|
+
/**
|
|
1382
|
+
* @public
|
|
1383
|
+
* <p>A filter that returns only components that are part of the specified trial. If you specify
|
|
1384
|
+
* <code>TrialName</code>, you can't filter by <code>ExperimentName</code> or
|
|
1385
|
+
* <code>SourceArn</code>.</p>
|
|
1386
|
+
*/
|
|
1387
|
+
TrialName?: string;
|
|
1388
|
+
/**
|
|
1389
|
+
* @public
|
|
1390
|
+
* <p>A filter that returns only components that have the specified source Amazon Resource Name (ARN).
|
|
1391
|
+
* If you specify <code>SourceArn</code>, you can't filter by <code>ExperimentName</code>
|
|
1392
|
+
* or <code>TrialName</code>.</p>
|
|
1393
|
+
*/
|
|
1394
|
+
SourceArn?: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* @public
|
|
1397
|
+
* <p>A filter that returns only components created after the specified time.</p>
|
|
1398
|
+
*/
|
|
1399
|
+
CreatedAfter?: Date;
|
|
1400
|
+
/**
|
|
1401
|
+
* @public
|
|
1402
|
+
* <p>A filter that returns only components created before the specified time.</p>
|
|
1403
|
+
*/
|
|
1404
|
+
CreatedBefore?: Date;
|
|
1405
|
+
/**
|
|
1406
|
+
* @public
|
|
1407
|
+
* <p>The property used to sort results. The default value is <code>CreationTime</code>.</p>
|
|
1408
|
+
*/
|
|
1409
|
+
SortBy?: SortTrialComponentsBy;
|
|
1410
|
+
/**
|
|
1411
|
+
* @public
|
|
1412
|
+
* <p>The sort order. The default value is <code>Descending</code>.</p>
|
|
1413
|
+
*/
|
|
1414
|
+
SortOrder?: SortOrder;
|
|
1415
|
+
/**
|
|
1416
|
+
* @public
|
|
1417
|
+
* <p>The maximum number of components to return in the response. The default value is
|
|
1418
|
+
* 10.</p>
|
|
1419
|
+
*/
|
|
1420
|
+
MaxResults?: number;
|
|
1421
|
+
/**
|
|
1422
|
+
* @public
|
|
1423
|
+
* <p>If the previous call to <code>ListTrialComponents</code> didn't return the full set of
|
|
1424
|
+
* components, the call returns a token for getting the next set of components.</p>
|
|
1425
|
+
*/
|
|
1426
|
+
NextToken?: string;
|
|
1427
|
+
}
|
|
1428
|
+
/**
|
|
1429
|
+
* @public
|
|
1430
|
+
* <p>A summary of the properties of a trial component. To get all the properties, call the
|
|
1431
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeTrialComponent.html">DescribeTrialComponent</a> API and provide the
|
|
1432
|
+
* <code>TrialComponentName</code>.</p>
|
|
1433
|
+
*/
|
|
1434
|
+
export interface TrialComponentSummary {
|
|
1435
|
+
/**
|
|
1436
|
+
* @public
|
|
1437
|
+
* <p>The name of the trial component.</p>
|
|
1438
|
+
*/
|
|
1439
|
+
TrialComponentName?: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* @public
|
|
1442
|
+
* <p>The Amazon Resource Name (ARN) of the trial component.</p>
|
|
1443
|
+
*/
|
|
1444
|
+
TrialComponentArn?: string;
|
|
1445
|
+
/**
|
|
1446
|
+
* @public
|
|
1447
|
+
* <p>The name of the component as displayed. If <code>DisplayName</code> isn't specified,
|
|
1448
|
+
* <code>TrialComponentName</code> is displayed.</p>
|
|
1449
|
+
*/
|
|
1450
|
+
DisplayName?: string;
|
|
1451
|
+
/**
|
|
1452
|
+
* @public
|
|
1453
|
+
* <p>The Amazon Resource Name (ARN) and job type of the source of a trial component.</p>
|
|
1454
|
+
*/
|
|
1455
|
+
TrialComponentSource?: TrialComponentSource;
|
|
1456
|
+
/**
|
|
1457
|
+
* @public
|
|
1458
|
+
* <p>The status of the component. States include:</p>
|
|
1459
|
+
* <ul>
|
|
1460
|
+
* <li>
|
|
1461
|
+
* <p>InProgress</p>
|
|
1462
|
+
* </li>
|
|
1463
|
+
* <li>
|
|
1464
|
+
* <p>Completed</p>
|
|
1465
|
+
* </li>
|
|
1466
|
+
* <li>
|
|
1467
|
+
* <p>Failed</p>
|
|
1468
|
+
* </li>
|
|
1469
|
+
* </ul>
|
|
1470
|
+
*/
|
|
1471
|
+
Status?: TrialComponentStatus;
|
|
1472
|
+
/**
|
|
1473
|
+
* @public
|
|
1474
|
+
* <p>When the component started.</p>
|
|
1475
|
+
*/
|
|
1476
|
+
StartTime?: Date;
|
|
1477
|
+
/**
|
|
1478
|
+
* @public
|
|
1479
|
+
* <p>When the component ended.</p>
|
|
1480
|
+
*/
|
|
1481
|
+
EndTime?: Date;
|
|
1482
|
+
/**
|
|
1483
|
+
* @public
|
|
1484
|
+
* <p>When the component was created.</p>
|
|
1485
|
+
*/
|
|
1486
|
+
CreationTime?: Date;
|
|
1487
|
+
/**
|
|
1488
|
+
* @public
|
|
1489
|
+
* <p>Who created the trial component.</p>
|
|
1490
|
+
*/
|
|
1491
|
+
CreatedBy?: UserContext;
|
|
1492
|
+
/**
|
|
1493
|
+
* @public
|
|
1494
|
+
* <p>When the component was last modified.</p>
|
|
1495
|
+
*/
|
|
1496
|
+
LastModifiedTime?: Date;
|
|
1497
|
+
/**
|
|
1498
|
+
* @public
|
|
1499
|
+
* <p>Who last modified the component.</p>
|
|
1500
|
+
*/
|
|
1501
|
+
LastModifiedBy?: UserContext;
|
|
1502
|
+
}
|
|
1503
|
+
/**
|
|
1504
|
+
* @public
|
|
1505
|
+
*/
|
|
1506
|
+
export interface ListTrialComponentsResponse {
|
|
1507
|
+
/**
|
|
1508
|
+
* @public
|
|
1509
|
+
* <p>A list of the summaries of your trial components.</p>
|
|
1510
|
+
*/
|
|
1511
|
+
TrialComponentSummaries?: TrialComponentSummary[];
|
|
1512
|
+
/**
|
|
1513
|
+
* @public
|
|
1514
|
+
* <p>A token for getting the next set of components, if there are any.</p>
|
|
1515
|
+
*/
|
|
1516
|
+
NextToken?: string;
|
|
1517
|
+
}
|
|
1518
|
+
/**
|
|
1519
|
+
* @public
|
|
1520
|
+
* @enum
|
|
1521
|
+
*/
|
|
1522
|
+
export declare const SortTrialsBy: {
|
|
1523
|
+
readonly CREATION_TIME: "CreationTime";
|
|
1524
|
+
readonly NAME: "Name";
|
|
1525
|
+
};
|
|
1526
|
+
/**
|
|
1527
|
+
* @public
|
|
1528
|
+
*/
|
|
1529
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
1530
|
+
/**
|
|
1531
|
+
* @public
|
|
1532
|
+
*/
|
|
1533
|
+
export interface ListTrialsRequest {
|
|
1534
|
+
/**
|
|
1535
|
+
* @public
|
|
1536
|
+
* <p>A filter that returns only trials that are part of the specified experiment.</p>
|
|
1537
|
+
*/
|
|
1538
|
+
ExperimentName?: string;
|
|
1539
|
+
/**
|
|
1540
|
+
* @public
|
|
1541
|
+
* <p>A filter that returns only trials that are associated with the specified trial
|
|
1542
|
+
* component.</p>
|
|
1543
|
+
*/
|
|
1544
|
+
TrialComponentName?: string;
|
|
1545
|
+
/**
|
|
1546
|
+
* @public
|
|
1547
|
+
* <p>A filter that returns only trials created after the specified time.</p>
|
|
1548
|
+
*/
|
|
1549
|
+
CreatedAfter?: Date;
|
|
1550
|
+
/**
|
|
1551
|
+
* @public
|
|
1552
|
+
* <p>A filter that returns only trials created before the specified time.</p>
|
|
1553
|
+
*/
|
|
1554
|
+
CreatedBefore?: Date;
|
|
1555
|
+
/**
|
|
1556
|
+
* @public
|
|
1557
|
+
* <p>The property used to sort results. The default value is <code>CreationTime</code>.</p>
|
|
1558
|
+
*/
|
|
1559
|
+
SortBy?: SortTrialsBy;
|
|
1560
|
+
/**
|
|
1561
|
+
* @public
|
|
1562
|
+
* <p>The sort order. The default value is <code>Descending</code>.</p>
|
|
1563
|
+
*/
|
|
1564
|
+
SortOrder?: SortOrder;
|
|
1565
|
+
/**
|
|
1566
|
+
* @public
|
|
1567
|
+
* <p>The maximum number of trials to return in the response. The default value is 10.</p>
|
|
1568
|
+
*/
|
|
1569
|
+
MaxResults?: number;
|
|
1570
|
+
/**
|
|
1571
|
+
* @public
|
|
1572
|
+
* <p>If the previous call to <code>ListTrials</code> didn't return the full set of trials, the
|
|
1573
|
+
* call returns a token for getting the next set of trials.</p>
|
|
1574
|
+
*/
|
|
1575
|
+
NextToken?: string;
|
|
1576
|
+
}
|
|
1577
|
+
/**
|
|
1578
|
+
* @public
|
|
1579
|
+
* <p>A summary of the properties of a trial. To get the complete set of properties, call the
|
|
1580
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeTrial.html">DescribeTrial</a> API and provide the <code>TrialName</code>.</p>
|
|
1581
|
+
*/
|
|
1582
|
+
export interface TrialSummary {
|
|
1583
|
+
/**
|
|
1584
|
+
* @public
|
|
1585
|
+
* <p>The Amazon Resource Name (ARN) of the trial.</p>
|
|
1586
|
+
*/
|
|
1587
|
+
TrialArn?: string;
|
|
1588
|
+
/**
|
|
1589
|
+
* @public
|
|
1590
|
+
* <p>The name of the trial.</p>
|
|
1591
|
+
*/
|
|
1592
|
+
TrialName?: string;
|
|
1593
|
+
/**
|
|
1594
|
+
* @public
|
|
1595
|
+
* <p>The name of the trial as displayed. If <code>DisplayName</code> isn't specified,
|
|
1596
|
+
* <code>TrialName</code> is displayed.</p>
|
|
1597
|
+
*/
|
|
1598
|
+
DisplayName?: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* @public
|
|
1601
|
+
* <p>The source of the trial.</p>
|
|
1602
|
+
*/
|
|
1603
|
+
TrialSource?: TrialSource;
|
|
1604
|
+
/**
|
|
1605
|
+
* @public
|
|
1606
|
+
* <p>When the trial was created.</p>
|
|
1607
|
+
*/
|
|
1608
|
+
CreationTime?: Date;
|
|
1609
|
+
/**
|
|
1610
|
+
* @public
|
|
1611
|
+
* <p>When the trial was last modified.</p>
|
|
1612
|
+
*/
|
|
1613
|
+
LastModifiedTime?: Date;
|
|
1614
|
+
}
|
|
1615
|
+
/**
|
|
1616
|
+
* @public
|
|
1617
|
+
*/
|
|
1618
|
+
export interface ListTrialsResponse {
|
|
1619
|
+
/**
|
|
1620
|
+
* @public
|
|
1621
|
+
* <p>A list of the summaries of your trials.</p>
|
|
1622
|
+
*/
|
|
1623
|
+
TrialSummaries?: TrialSummary[];
|
|
1624
|
+
/**
|
|
1625
|
+
* @public
|
|
1626
|
+
* <p>A token for getting the next set of trials, if there are any.</p>
|
|
1627
|
+
*/
|
|
1628
|
+
NextToken?: string;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* @public
|
|
1632
|
+
* @enum
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const UserProfileSortKey: {
|
|
1635
|
+
readonly CreationTime: "CreationTime";
|
|
1636
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
1637
|
+
};
|
|
1638
|
+
/**
|
|
1639
|
+
* @public
|
|
1640
|
+
*/
|
|
1641
|
+
export type UserProfileSortKey = (typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
1642
|
+
/**
|
|
1643
|
+
* @public
|
|
1644
|
+
*/
|
|
1645
|
+
export interface ListUserProfilesRequest {
|
|
1646
|
+
/**
|
|
1647
|
+
* @public
|
|
1648
|
+
* <p>If the previous response was truncated, you will receive this token.
|
|
1649
|
+
* Use it in your next request to receive the next set of results.</p>
|
|
1650
|
+
*/
|
|
1651
|
+
NextToken?: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* @public
|
|
1654
|
+
* <p>The total number of items to return in the response. If the total
|
|
1655
|
+
* number of items available is more than the value specified, a <code>NextToken</code>
|
|
1656
|
+
* is provided in the response. To resume pagination, provide the <code>NextToken</code>
|
|
1657
|
+
* value in the as part of a subsequent call. The default value is 10.</p>
|
|
1658
|
+
*/
|
|
1659
|
+
MaxResults?: number;
|
|
1660
|
+
/**
|
|
1661
|
+
* @public
|
|
1662
|
+
* <p>The sort order for the results. The default is Ascending.</p>
|
|
1663
|
+
*/
|
|
1664
|
+
SortOrder?: SortOrder;
|
|
1665
|
+
/**
|
|
1666
|
+
* @public
|
|
1667
|
+
* <p>The parameter by which to sort the results. The default is CreationTime.</p>
|
|
1668
|
+
*/
|
|
1669
|
+
SortBy?: UserProfileSortKey;
|
|
1670
|
+
/**
|
|
1671
|
+
* @public
|
|
1672
|
+
* <p>A parameter by which to filter the results.</p>
|
|
1673
|
+
*/
|
|
1674
|
+
DomainIdEquals?: string;
|
|
1675
|
+
/**
|
|
1676
|
+
* @public
|
|
1677
|
+
* <p>A parameter by which to filter the results.</p>
|
|
1678
|
+
*/
|
|
1679
|
+
UserProfileNameContains?: string;
|
|
1680
|
+
}
|
|
1681
|
+
/**
|
|
1682
|
+
* @public
|
|
1683
|
+
* <p>The user profile details.</p>
|
|
1684
|
+
*/
|
|
1685
|
+
export interface UserProfileDetails {
|
|
1686
|
+
/**
|
|
1687
|
+
* @public
|
|
1688
|
+
* <p>The domain ID.</p>
|
|
1689
|
+
*/
|
|
1690
|
+
DomainId?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* @public
|
|
1693
|
+
* <p>The user profile name.</p>
|
|
1694
|
+
*/
|
|
1695
|
+
UserProfileName?: string;
|
|
1696
|
+
/**
|
|
1697
|
+
* @public
|
|
1698
|
+
* <p>The status.</p>
|
|
1699
|
+
*/
|
|
1700
|
+
Status?: UserProfileStatus;
|
|
1701
|
+
/**
|
|
1702
|
+
* @public
|
|
1703
|
+
* <p>The creation time.</p>
|
|
1704
|
+
*/
|
|
1705
|
+
CreationTime?: Date;
|
|
1706
|
+
/**
|
|
1707
|
+
* @public
|
|
1708
|
+
* <p>The last modified time.</p>
|
|
1709
|
+
*/
|
|
1710
|
+
LastModifiedTime?: Date;
|
|
1711
|
+
}
|
|
1712
|
+
/**
|
|
1713
|
+
* @public
|
|
1714
|
+
*/
|
|
1715
|
+
export interface ListUserProfilesResponse {
|
|
1716
|
+
/**
|
|
1717
|
+
* @public
|
|
1718
|
+
* <p>The list of user profiles.</p>
|
|
1719
|
+
*/
|
|
1720
|
+
UserProfiles?: UserProfileDetails[];
|
|
1721
|
+
/**
|
|
1722
|
+
* @public
|
|
1723
|
+
* <p>If the previous response was truncated, you will receive this token.
|
|
1724
|
+
* Use it in your next request to receive the next set of results.</p>
|
|
1725
|
+
*/
|
|
1726
|
+
NextToken?: string;
|
|
1727
|
+
}
|
|
1728
|
+
/**
|
|
1729
|
+
* @public
|
|
1730
|
+
* @enum
|
|
1731
|
+
*/
|
|
1732
|
+
export declare const ListWorkforcesSortByOptions: {
|
|
1733
|
+
readonly CreateDate: "CreateDate";
|
|
1734
|
+
readonly Name: "Name";
|
|
1735
|
+
};
|
|
1736
|
+
/**
|
|
1737
|
+
* @public
|
|
1738
|
+
*/
|
|
1739
|
+
export type ListWorkforcesSortByOptions = (typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
1740
|
+
/**
|
|
1741
|
+
* @public
|
|
1742
|
+
*/
|
|
1743
|
+
export interface ListWorkforcesRequest {
|
|
1744
|
+
/**
|
|
1745
|
+
* @public
|
|
1746
|
+
* <p>Sort workforces using the workforce name or creation date.</p>
|
|
1747
|
+
*/
|
|
1748
|
+
SortBy?: ListWorkforcesSortByOptions;
|
|
1749
|
+
/**
|
|
1750
|
+
* @public
|
|
1751
|
+
* <p>Sort workforces in ascending or descending order.</p>
|
|
1752
|
+
*/
|
|
1753
|
+
SortOrder?: SortOrder;
|
|
1754
|
+
/**
|
|
1755
|
+
* @public
|
|
1756
|
+
* <p>A filter you can use to search for workforces using part of the workforce name.</p>
|
|
1757
|
+
*/
|
|
1758
|
+
NameContains?: string;
|
|
1759
|
+
/**
|
|
1760
|
+
* @public
|
|
1761
|
+
* <p>A token to resume pagination.</p>
|
|
1762
|
+
*/
|
|
1763
|
+
NextToken?: string;
|
|
1764
|
+
/**
|
|
1765
|
+
* @public
|
|
1766
|
+
* <p>The maximum number of workforces returned in the response.</p>
|
|
1767
|
+
*/
|
|
1768
|
+
MaxResults?: number;
|
|
1769
|
+
}
|
|
1770
|
+
/**
|
|
1771
|
+
* @public
|
|
1772
|
+
*/
|
|
1773
|
+
export interface ListWorkforcesResponse {
|
|
1774
|
+
/**
|
|
1775
|
+
* @public
|
|
1776
|
+
* <p>A list containing information about your workforce.</p>
|
|
1777
|
+
*/
|
|
1778
|
+
Workforces: Workforce[] | undefined;
|
|
1779
|
+
/**
|
|
1780
|
+
* @public
|
|
1781
|
+
* <p>A token to resume pagination.</p>
|
|
1782
|
+
*/
|
|
1783
|
+
NextToken?: string;
|
|
1784
|
+
}
|
|
1785
|
+
/**
|
|
1786
|
+
* @public
|
|
1787
|
+
* @enum
|
|
1788
|
+
*/
|
|
1789
|
+
export declare const ListWorkteamsSortByOptions: {
|
|
1790
|
+
readonly CreateDate: "CreateDate";
|
|
1791
|
+
readonly Name: "Name";
|
|
1792
|
+
};
|
|
1793
|
+
/**
|
|
1794
|
+
* @public
|
|
1795
|
+
*/
|
|
1796
|
+
export type ListWorkteamsSortByOptions = (typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
1797
|
+
/**
|
|
1798
|
+
* @public
|
|
1799
|
+
*/
|
|
1800
|
+
export interface ListWorkteamsRequest {
|
|
1801
|
+
/**
|
|
1802
|
+
* @public
|
|
1803
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
1804
|
+
*/
|
|
1805
|
+
SortBy?: ListWorkteamsSortByOptions;
|
|
1806
|
+
/**
|
|
1807
|
+
* @public
|
|
1808
|
+
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
1809
|
+
*/
|
|
1810
|
+
SortOrder?: SortOrder;
|
|
1811
|
+
/**
|
|
1812
|
+
* @public
|
|
1813
|
+
* <p>A string in the work team's name. This filter returns only work teams whose name
|
|
1814
|
+
* contains the specified string.</p>
|
|
1815
|
+
*/
|
|
1816
|
+
NameContains?: string;
|
|
1817
|
+
/**
|
|
1818
|
+
* @public
|
|
1819
|
+
* <p>If the result of the previous <code>ListWorkteams</code> request was truncated, the
|
|
1820
|
+
* response includes a <code>NextToken</code>. To retrieve the next set of labeling jobs,
|
|
1821
|
+
* use the token in the next request.</p>
|
|
1822
|
+
*/
|
|
1823
|
+
NextToken?: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* @public
|
|
1826
|
+
* <p>The maximum number of work teams to return in each page of the response.</p>
|
|
1827
|
+
*/
|
|
1828
|
+
MaxResults?: number;
|
|
1829
|
+
}
|
|
1830
|
+
/**
|
|
1831
|
+
* @public
|
|
1832
|
+
*/
|
|
1833
|
+
export interface ListWorkteamsResponse {
|
|
1834
|
+
/**
|
|
1835
|
+
* @public
|
|
1836
|
+
* <p>An array of <code>Workteam</code> objects, each describing a work team.</p>
|
|
1837
|
+
*/
|
|
1838
|
+
Workteams: Workteam[] | undefined;
|
|
1839
|
+
/**
|
|
1840
|
+
* @public
|
|
1841
|
+
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of
|
|
1842
|
+
* work teams, use it in the subsequent request.</p>
|
|
1843
|
+
*/
|
|
1844
|
+
NextToken?: string;
|
|
1845
|
+
}
|
|
1846
|
+
/**
|
|
1847
|
+
* @public
|
|
1848
|
+
* <p>The properties of a model as returned by the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API.</p>
|
|
1849
|
+
*/
|
|
1850
|
+
export interface Model {
|
|
1851
|
+
/**
|
|
1852
|
+
* @public
|
|
1853
|
+
* <p>The name of the model.</p>
|
|
1854
|
+
*/
|
|
1855
|
+
ModelName?: string;
|
|
1856
|
+
/**
|
|
1857
|
+
* @public
|
|
1858
|
+
* <p>Describes the container, as part of model definition.</p>
|
|
1859
|
+
*/
|
|
1860
|
+
PrimaryContainer?: ContainerDefinition;
|
|
1861
|
+
/**
|
|
1862
|
+
* @public
|
|
1863
|
+
* <p>The containers in the inference pipeline.</p>
|
|
1864
|
+
*/
|
|
1865
|
+
Containers?: ContainerDefinition[];
|
|
1866
|
+
/**
|
|
1867
|
+
* @public
|
|
1868
|
+
* <p>Specifies details about how containers in a multi-container endpoint are run.</p>
|
|
1869
|
+
*/
|
|
1870
|
+
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
1871
|
+
/**
|
|
1872
|
+
* @public
|
|
1873
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the
|
|
1874
|
+
* model.</p>
|
|
1875
|
+
*/
|
|
1876
|
+
ExecutionRoleArn?: string;
|
|
1877
|
+
/**
|
|
1878
|
+
* @public
|
|
1879
|
+
* <p>Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources
|
|
1880
|
+
* have access to. You can control access to and from your resources by configuring a VPC.
|
|
1881
|
+
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to Resources in your Amazon VPC</a>. </p>
|
|
1882
|
+
*/
|
|
1883
|
+
VpcConfig?: VpcConfig;
|
|
1884
|
+
/**
|
|
1885
|
+
* @public
|
|
1886
|
+
* <p>A timestamp that indicates when the model was created.</p>
|
|
1887
|
+
*/
|
|
1888
|
+
CreationTime?: Date;
|
|
1889
|
+
/**
|
|
1890
|
+
* @public
|
|
1891
|
+
* <p>The Amazon Resource Name (ARN) of the model.</p>
|
|
1892
|
+
*/
|
|
1893
|
+
ModelArn?: string;
|
|
1894
|
+
/**
|
|
1895
|
+
* @public
|
|
1896
|
+
* <p>Isolates the model container. No inbound or outbound network calls can be made to or
|
|
1897
|
+
* from the model container.</p>
|
|
1898
|
+
*/
|
|
1899
|
+
EnableNetworkIsolation?: boolean;
|
|
1900
|
+
/**
|
|
1901
|
+
* @public
|
|
1902
|
+
* <p>A list of key-value pairs associated with the model. For more information, see
|
|
1903
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
|
|
1904
|
+
* resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
|
|
1905
|
+
*/
|
|
1906
|
+
Tags?: Tag[];
|
|
1907
|
+
/**
|
|
1908
|
+
* @public
|
|
1909
|
+
* <p>A set of recommended deployment configurations for the model.</p>
|
|
1910
|
+
*/
|
|
1911
|
+
DeploymentRecommendation?: DeploymentRecommendation;
|
|
1912
|
+
}
|
|
5
1913
|
/**
|
|
6
1914
|
* @public
|
|
7
1915
|
* <p>An Amazon SageMaker Model Card.</p>
|
|
@@ -2714,6 +4622,11 @@ export interface UpdateAppImageConfigRequest {
|
|
|
2714
4622
|
* <p>The new KernelGateway app to run on the image.</p>
|
|
2715
4623
|
*/
|
|
2716
4624
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
4625
|
+
/**
|
|
4626
|
+
* @public
|
|
4627
|
+
* <p>The JupyterLab app running on the image.</p>
|
|
4628
|
+
*/
|
|
4629
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
2717
4630
|
}
|
|
2718
4631
|
/**
|
|
2719
4632
|
* @public
|
|
@@ -2760,6 +4673,31 @@ export interface UpdateArtifactResponse {
|
|
|
2760
4673
|
*/
|
|
2761
4674
|
ArtifactArn?: string;
|
|
2762
4675
|
}
|
|
4676
|
+
/**
|
|
4677
|
+
* @public
|
|
4678
|
+
*/
|
|
4679
|
+
export interface UpdateClusterRequest {
|
|
4680
|
+
/**
|
|
4681
|
+
* @public
|
|
4682
|
+
* <p>Specify the name of the SageMaker HyperPod cluster you want to update.</p>
|
|
4683
|
+
*/
|
|
4684
|
+
ClusterName: string | undefined;
|
|
4685
|
+
/**
|
|
4686
|
+
* @public
|
|
4687
|
+
* <p>Specify the instance groups to update.</p>
|
|
4688
|
+
*/
|
|
4689
|
+
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
4690
|
+
}
|
|
4691
|
+
/**
|
|
4692
|
+
* @public
|
|
4693
|
+
*/
|
|
4694
|
+
export interface UpdateClusterResponse {
|
|
4695
|
+
/**
|
|
4696
|
+
* @public
|
|
4697
|
+
* <p>The Amazon Resource Name (ARN) of the updated SageMaker HyperPod cluster.</p>
|
|
4698
|
+
*/
|
|
4699
|
+
ClusterArn: string | undefined;
|
|
4700
|
+
}
|
|
2763
4701
|
/**
|
|
2764
4702
|
* @public
|
|
2765
4703
|
*/
|
|
@@ -2910,6 +4848,34 @@ export interface UpdateDomainRequest {
|
|
|
2910
4848
|
* <code>Service</code>.</p>
|
|
2911
4849
|
*/
|
|
2912
4850
|
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
4851
|
+
/**
|
|
4852
|
+
* @public
|
|
4853
|
+
* <p>The VPC subnets that Studio uses for communication.</p>
|
|
4854
|
+
* <p>If removing subnets, ensure there are no apps in the <code>InService</code>,
|
|
4855
|
+
* <code>Pending</code>, or <code>Deleting</code> state.</p>
|
|
4856
|
+
*/
|
|
4857
|
+
SubnetIds?: string[];
|
|
4858
|
+
/**
|
|
4859
|
+
* @public
|
|
4860
|
+
* <p>Specifies the VPC used for non-EFS traffic.</p>
|
|
4861
|
+
* <ul>
|
|
4862
|
+
* <li>
|
|
4863
|
+
* <p>
|
|
4864
|
+
* <code>PublicInternetOnly</code> - Non-EFS traffic is through a VPC managed by Amazon SageMaker,
|
|
4865
|
+
* which allows direct internet access.</p>
|
|
4866
|
+
* </li>
|
|
4867
|
+
* <li>
|
|
4868
|
+
* <p>
|
|
4869
|
+
* <code>VpcOnly</code> - All Studio traffic is through the specified VPC and subnets.</p>
|
|
4870
|
+
* </li>
|
|
4871
|
+
* </ul>
|
|
4872
|
+
* <p>This configuration can only be modified if there are no apps in the <code>InService</code>,
|
|
4873
|
+
* <code>Pending</code>, or <code>Deleting</code> state. The configuration cannot be updated if
|
|
4874
|
+
* <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is already set
|
|
4875
|
+
* or <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is provided
|
|
4876
|
+
* as part of the same request.</p>
|
|
4877
|
+
*/
|
|
4878
|
+
AppNetworkAccessType?: AppNetworkAccessType;
|
|
2913
4879
|
}
|
|
2914
4880
|
/**
|
|
2915
4881
|
* @public
|
|
@@ -3338,6 +5304,62 @@ export interface UpdateImageVersionResponse {
|
|
|
3338
5304
|
*/
|
|
3339
5305
|
ImageVersionArn?: string;
|
|
3340
5306
|
}
|
|
5307
|
+
/**
|
|
5308
|
+
* @public
|
|
5309
|
+
*/
|
|
5310
|
+
export interface UpdateInferenceComponentInput {
|
|
5311
|
+
/**
|
|
5312
|
+
* @public
|
|
5313
|
+
* <p>The name of the inference component.</p>
|
|
5314
|
+
*/
|
|
5315
|
+
InferenceComponentName: string | undefined;
|
|
5316
|
+
/**
|
|
5317
|
+
* @public
|
|
5318
|
+
* <p>Details about the resources to deploy with this inference component, including the
|
|
5319
|
+
* model, container, and compute resources.</p>
|
|
5320
|
+
*/
|
|
5321
|
+
Specification?: InferenceComponentSpecification;
|
|
5322
|
+
/**
|
|
5323
|
+
* @public
|
|
5324
|
+
* <p>Runtime settings for a model that is deployed with an inference component.</p>
|
|
5325
|
+
*/
|
|
5326
|
+
RuntimeConfig?: InferenceComponentRuntimeConfig;
|
|
5327
|
+
}
|
|
5328
|
+
/**
|
|
5329
|
+
* @public
|
|
5330
|
+
*/
|
|
5331
|
+
export interface UpdateInferenceComponentOutput {
|
|
5332
|
+
/**
|
|
5333
|
+
* @public
|
|
5334
|
+
* <p>The Amazon Resource Name (ARN) of the inference component.</p>
|
|
5335
|
+
*/
|
|
5336
|
+
InferenceComponentArn: string | undefined;
|
|
5337
|
+
}
|
|
5338
|
+
/**
|
|
5339
|
+
* @public
|
|
5340
|
+
*/
|
|
5341
|
+
export interface UpdateInferenceComponentRuntimeConfigInput {
|
|
5342
|
+
/**
|
|
5343
|
+
* @public
|
|
5344
|
+
* <p>The name of the inference component to update.</p>
|
|
5345
|
+
*/
|
|
5346
|
+
InferenceComponentName: string | undefined;
|
|
5347
|
+
/**
|
|
5348
|
+
* @public
|
|
5349
|
+
* <p>Runtime settings for a model that is deployed with an inference component.</p>
|
|
5350
|
+
*/
|
|
5351
|
+
DesiredRuntimeConfig: InferenceComponentRuntimeConfig | undefined;
|
|
5352
|
+
}
|
|
5353
|
+
/**
|
|
5354
|
+
* @public
|
|
5355
|
+
*/
|
|
5356
|
+
export interface UpdateInferenceComponentRuntimeConfigOutput {
|
|
5357
|
+
/**
|
|
5358
|
+
* @public
|
|
5359
|
+
* <p>The Amazon Resource Name (ARN) of the inference component.</p>
|
|
5360
|
+
*/
|
|
5361
|
+
InferenceComponentArn: string | undefined;
|
|
5362
|
+
}
|
|
3341
5363
|
/**
|
|
3342
5364
|
* @public
|
|
3343
5365
|
*/
|
|
@@ -3881,6 +5903,11 @@ export interface UpdateSpaceRequest {
|
|
|
3881
5903
|
* <p>A collection of space settings.</p>
|
|
3882
5904
|
*/
|
|
3883
5905
|
SpaceSettings?: SpaceSettings;
|
|
5906
|
+
/**
|
|
5907
|
+
* @public
|
|
5908
|
+
* <p>The name of the space that appears in the Amazon SageMaker Studio UI.</p>
|
|
5909
|
+
*/
|
|
5910
|
+
SpaceDisplayName?: string;
|
|
3884
5911
|
}
|
|
3885
5912
|
/**
|
|
3886
5913
|
* @public
|