@aws-sdk/client-sagemaker 3.930.0 → 3.932.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +51 -10
- package/dist-es/models/models_3.js +0 -4
- package/dist-es/models/models_4.js +4 -4
- package/dist-es/models/models_5.js +4 -0
- package/dist-es/schemas/schemas_0.js +52 -8
- package/dist-types/commands/CreatePartnerAppCommand.d.ts +12 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +2 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +1 -2
- package/dist-types/commands/DescribePartnerAppCommand.d.ts +20 -0
- package/dist-types/commands/GetSagemakerServicecatalogPortfolioStatusCommand.d.ts +2 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePartnerAppCommand.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +16 -11
- package/dist-types/models/models_1.d.ts +12 -17
- package/dist-types/models/models_2.d.ts +49 -132
- package/dist-types/models/models_3.d.ts +153 -25
- package/dist-types/models/models_4.d.ts +22 -27
- package/dist-types/models/models_5.d.ts +38 -1
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeAutoMLJobV2Command.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSagemakerServicecatalogPortfolioStatusCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +4 -3
- package/dist-types/ts3.4/models/models_1.d.ts +3 -5
- package/dist-types/ts3.4/models/models_2.d.ts +11 -36
- package/dist-types/ts3.4/models/models_3.d.ts +50 -10
- package/dist-types/ts3.4/models/models_4.d.ts +9 -9
- package/dist-types/ts3.4/models/models_5.d.ts +12 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +5 -5
|
@@ -1,5 +1,21 @@
|
|
|
1
|
-
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppSpecification, AppStatus, AppType, ArtifactSource, AthenaDatasetDefinition, AutoMLCandidate, AutoMLChannel,
|
|
2
|
-
import { _InstanceType, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, HubContentType, HumanTaskConfig, IPAddressType, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig,
|
|
1
|
+
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppSpecification, AppStatus, AppType, ArtifactSource, AthenaDatasetDefinition, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureStatus, CfnCreateTemplateProvider, Channel, CheckpointConfig, CodeEditorAppImageConfig, FeatureStatus, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, HubContentType, HumanTaskConfig, IPAddressType, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, MetadataProperties, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, ProcessingInstanceType, ProcessingS3UploadMode, RetryStrategy, TrainingSpecification, UserSettings } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* <p>A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.</p> <note> <p>Labeling jobs fail after 30 days with an appropriate client error message.</p> </note>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface LabelingJobStoppingConditions {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The maximum number of objects that can be labeled by human workers.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
MaxHumanLabeledObjectCount?: number | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The maximum number of input data objects that should be labeled.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
MaxPercentageOfInputDatasetLabeled?: number | undefined;
|
|
18
|
+
}
|
|
3
19
|
/**
|
|
4
20
|
* @public
|
|
5
21
|
*/
|
|
@@ -1918,6 +1934,22 @@ export interface CreateOptimizationJobResponse {
|
|
|
1918
1934
|
*/
|
|
1919
1935
|
OptimizationJobArn: string | undefined;
|
|
1920
1936
|
}
|
|
1937
|
+
/**
|
|
1938
|
+
* <p>Defines the mapping between an in-app role and the AWS IAM Identity Center group patterns that should be assigned to that role within the SageMaker Partner AI App.</p>
|
|
1939
|
+
* @public
|
|
1940
|
+
*/
|
|
1941
|
+
export interface RoleGroupAssignment {
|
|
1942
|
+
/**
|
|
1943
|
+
* <p>The name of the in-app role within the SageMaker Partner AI App. The specific roles available depend on the app type and version.</p>
|
|
1944
|
+
* @public
|
|
1945
|
+
*/
|
|
1946
|
+
RoleName: string | undefined;
|
|
1947
|
+
/**
|
|
1948
|
+
* <p>A list of AWS IAM Identity Center group patterns that should be assigned to the specified role. Group patterns support wildcard matching using <code>*</code>.</p>
|
|
1949
|
+
* @public
|
|
1950
|
+
*/
|
|
1951
|
+
GroupPatterns: string[] | undefined;
|
|
1952
|
+
}
|
|
1921
1953
|
/**
|
|
1922
1954
|
* <p>Configuration settings for the SageMaker Partner AI App.</p>
|
|
1923
1955
|
* @public
|
|
@@ -1933,6 +1965,16 @@ export interface PartnerAppConfig {
|
|
|
1933
1965
|
* @public
|
|
1934
1966
|
*/
|
|
1935
1967
|
Arguments?: Record<string, string> | undefined;
|
|
1968
|
+
/**
|
|
1969
|
+
* <p>A list of Amazon Web Services IAM Identity Center group patterns that can access the SageMaker Partner AI App. Group names support wildcard matching using <code>*</code>. An empty list indicates the app will not use Identity Center group features. All groups specified in <code>RoleGroupAssignments</code> must match patterns in this list.</p>
|
|
1970
|
+
* @public
|
|
1971
|
+
*/
|
|
1972
|
+
AssignedGroupPatterns?: string[] | undefined;
|
|
1973
|
+
/**
|
|
1974
|
+
* <p>A map of in-app roles to Amazon Web Services IAM Identity Center group patterns. Groups assigned to specific roles receive those permissions, while groups in <code>AssignedGroupPatterns</code> but not in this map receive default in-app role depending on app type. Group patterns support wildcard matching using <code>*</code>. Currently supported by Fiddler version 1.3 and later with roles: <code>ORG_MEMBER</code> (default) and <code>ORG_ADMIN</code>.</p>
|
|
1975
|
+
* @public
|
|
1976
|
+
*/
|
|
1977
|
+
RoleGroupAssignments?: RoleGroupAssignment[] | undefined;
|
|
1936
1978
|
}
|
|
1937
1979
|
/**
|
|
1938
1980
|
* @public
|
|
@@ -2019,6 +2061,11 @@ export interface CreatePartnerAppRequest {
|
|
|
2019
2061
|
* @public
|
|
2020
2062
|
*/
|
|
2021
2063
|
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
2064
|
+
/**
|
|
2065
|
+
* <p>When set to <code>TRUE</code>, the SageMaker Partner AI App is automatically upgraded to the latest minor version during the next scheduled maintenance window, if one is available. Default is <code>FALSE</code>.</p>
|
|
2066
|
+
* @public
|
|
2067
|
+
*/
|
|
2068
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
2022
2069
|
/**
|
|
2023
2070
|
* <p>A unique token that guarantees that the call to this API is idempotent.</p>
|
|
2024
2071
|
* @public
|
|
@@ -5880,133 +5927,3 @@ export interface DescribeAutoMLJobV2Request {
|
|
|
5880
5927
|
*/
|
|
5881
5928
|
AutoMLJobName: string | undefined;
|
|
5882
5929
|
}
|
|
5883
|
-
/**
|
|
5884
|
-
* @public
|
|
5885
|
-
*/
|
|
5886
|
-
export interface DescribeAutoMLJobV2Response {
|
|
5887
|
-
/**
|
|
5888
|
-
* <p>Returns the name of the AutoML job V2.</p>
|
|
5889
|
-
* @public
|
|
5890
|
-
*/
|
|
5891
|
-
AutoMLJobName: string | undefined;
|
|
5892
|
-
/**
|
|
5893
|
-
* <p>Returns the Amazon Resource Name (ARN) of the AutoML job V2.</p>
|
|
5894
|
-
* @public
|
|
5895
|
-
*/
|
|
5896
|
-
AutoMLJobArn: string | undefined;
|
|
5897
|
-
/**
|
|
5898
|
-
* <p>Returns an array of channel objects describing the input data and their location.</p>
|
|
5899
|
-
* @public
|
|
5900
|
-
*/
|
|
5901
|
-
AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
|
|
5902
|
-
/**
|
|
5903
|
-
* <p>Returns the job's output data config.</p>
|
|
5904
|
-
* @public
|
|
5905
|
-
*/
|
|
5906
|
-
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
5907
|
-
/**
|
|
5908
|
-
* <p>The ARN of the IAM role that has read permission to the input data location and write permission to the output data location in Amazon S3.</p>
|
|
5909
|
-
* @public
|
|
5910
|
-
*/
|
|
5911
|
-
RoleArn: string | undefined;
|
|
5912
|
-
/**
|
|
5913
|
-
* <p>Returns the job's objective.</p>
|
|
5914
|
-
* @public
|
|
5915
|
-
*/
|
|
5916
|
-
AutoMLJobObjective?: AutoMLJobObjective | undefined;
|
|
5917
|
-
/**
|
|
5918
|
-
* <p>Returns the configuration settings of the problem type set for the AutoML job V2.</p>
|
|
5919
|
-
* @public
|
|
5920
|
-
*/
|
|
5921
|
-
AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
|
|
5922
|
-
/**
|
|
5923
|
-
* <p>Returns the name of the problem type configuration set for the AutoML job V2.</p>
|
|
5924
|
-
* @public
|
|
5925
|
-
*/
|
|
5926
|
-
AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
|
|
5927
|
-
/**
|
|
5928
|
-
* <p>Returns the creation time of the AutoML job V2.</p>
|
|
5929
|
-
* @public
|
|
5930
|
-
*/
|
|
5931
|
-
CreationTime: Date | undefined;
|
|
5932
|
-
/**
|
|
5933
|
-
* <p>Returns the end time of the AutoML job V2.</p>
|
|
5934
|
-
* @public
|
|
5935
|
-
*/
|
|
5936
|
-
EndTime?: Date | undefined;
|
|
5937
|
-
/**
|
|
5938
|
-
* <p>Returns the job's last modified time.</p>
|
|
5939
|
-
* @public
|
|
5940
|
-
*/
|
|
5941
|
-
LastModifiedTime: Date | undefined;
|
|
5942
|
-
/**
|
|
5943
|
-
* <p>Returns the reason for the failure of the AutoML job V2, when applicable.</p>
|
|
5944
|
-
* @public
|
|
5945
|
-
*/
|
|
5946
|
-
FailureReason?: string | undefined;
|
|
5947
|
-
/**
|
|
5948
|
-
* <p>Returns a list of reasons for partial failures within an AutoML job V2.</p>
|
|
5949
|
-
* @public
|
|
5950
|
-
*/
|
|
5951
|
-
PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
|
|
5952
|
-
/**
|
|
5953
|
-
* <p>Information about the candidate produced by an AutoML training job V2, including its status, steps, and other properties.</p>
|
|
5954
|
-
* @public
|
|
5955
|
-
*/
|
|
5956
|
-
BestCandidate?: AutoMLCandidate | undefined;
|
|
5957
|
-
/**
|
|
5958
|
-
* <p>Returns the status of the AutoML job V2.</p>
|
|
5959
|
-
* @public
|
|
5960
|
-
*/
|
|
5961
|
-
AutoMLJobStatus: AutoMLJobStatus | undefined;
|
|
5962
|
-
/**
|
|
5963
|
-
* <p>Returns the secondary status of the AutoML job V2.</p>
|
|
5964
|
-
* @public
|
|
5965
|
-
*/
|
|
5966
|
-
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
|
|
5967
|
-
/**
|
|
5968
|
-
* <p>The artifacts that are generated during an AutoML job.</p>
|
|
5969
|
-
* @public
|
|
5970
|
-
*/
|
|
5971
|
-
AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
|
|
5972
|
-
/**
|
|
5973
|
-
* <p>Returns the resolved attributes used by the AutoML job V2.</p>
|
|
5974
|
-
* @public
|
|
5975
|
-
*/
|
|
5976
|
-
ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
|
|
5977
|
-
/**
|
|
5978
|
-
* <p>Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if deployed automatically.</p>
|
|
5979
|
-
* @public
|
|
5980
|
-
*/
|
|
5981
|
-
ModelDeployConfig?: ModelDeployConfig | undefined;
|
|
5982
|
-
/**
|
|
5983
|
-
* <p>Provides information about endpoint for the model deployment.</p>
|
|
5984
|
-
* @public
|
|
5985
|
-
*/
|
|
5986
|
-
ModelDeployResult?: ModelDeployResult | undefined;
|
|
5987
|
-
/**
|
|
5988
|
-
* <p>Returns the configuration settings of how the data are split into train and validation datasets.</p>
|
|
5989
|
-
* @public
|
|
5990
|
-
*/
|
|
5991
|
-
DataSplitConfig?: AutoMLDataSplitConfig | undefined;
|
|
5992
|
-
/**
|
|
5993
|
-
* <p>Returns the security configuration for traffic encryption or Amazon VPC settings.</p>
|
|
5994
|
-
* @public
|
|
5995
|
-
*/
|
|
5996
|
-
SecurityConfig?: AutoMLSecurityConfig | undefined;
|
|
5997
|
-
/**
|
|
5998
|
-
* <p>The compute configuration used for the AutoML job V2.</p>
|
|
5999
|
-
* @public
|
|
6000
|
-
*/
|
|
6001
|
-
AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
|
|
6002
|
-
}
|
|
6003
|
-
/**
|
|
6004
|
-
* @public
|
|
6005
|
-
*/
|
|
6006
|
-
export interface DescribeClusterRequest {
|
|
6007
|
-
/**
|
|
6008
|
-
* <p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.</p>
|
|
6009
|
-
* @public
|
|
6010
|
-
*/
|
|
6011
|
-
ClusterName: string | undefined;
|
|
6012
|
-
}
|
|
@@ -1,6 +1,136 @@
|
|
|
1
|
-
import { ActivationState, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AmazonQSettings, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoRollbackConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CapacityReservationPreference, CfnTemplateProviderDetail, Channel, CheckpointConfig, ClusterAutoScalingConfigOutput, ClusterEventDetail, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterNodeProvisioningMode, ClusterNodeRecovery, InferenceSpecification, ModelApprovalStatus, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VolumeAttachmentStatus, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, ClusterOrchestrator, ClusterRestrictedInstanceGroupDetails, ClusterStatus, ClusterTieredStorageConfig, CognitoConfig, CompilationJobStatus, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DockerSettings, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, GitConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, IPAddressType, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig,
|
|
3
|
-
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentRecommendation, DeploymentStageStatusSummary, DerivedInformation, DirectInternetAccess, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InfraCheckConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OwnershipSettings, ParallelismConfiguration, PartnerAppAuthType, PartnerAppConfig, PartnerAppMaintenanceConfig, PartnerAppType, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, RemoteDebugConfig, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType } from "./models_2";
|
|
1
|
+
import { ActivationState, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AmazonQSettings, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, AutoRollbackConfig, Autotune, AvailableUpgrade, BatchDataCaptureConfig, BatchStrategy, CapacityReservationPreference, CfnTemplateProviderDetail, Channel, CheckpointConfig, ClusterAutoScalingConfigOutput, ClusterEventDetail, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterNodeProvisioningMode, ClusterNodeRecovery, InferenceSpecification, ModelApprovalStatus, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VolumeAttachmentStatus, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, ClusterOrchestrator, ClusterRestrictedInstanceGroupDetails, ClusterStatus, ClusterTieredStorageConfig, CognitoConfig, CompilationJobStatus, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DockerSettings, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, GitConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, IPAddressType, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, MetadataProperties, ModelDeployConfig, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, SchedulerConfig, SchedulerResourceStatus, ShadowModeConfig, TagPropagation, ThroughputMode, TrustedIdentityPropagationSettings, UnifiedStudioSettings, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
+
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentRecommendation, DeploymentStageStatusSummary, DerivedInformation, DirectInternetAccess, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InfraCheckConfig, InstanceMetadataServiceConfiguration, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelDeployResult, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OwnershipSettings, ParallelismConfiguration, PartnerAppAuthType, PartnerAppConfig, PartnerAppMaintenanceConfig, PartnerAppType, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, RemoteDebugConfig, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeAutoMLJobV2Response {
|
|
8
|
+
/**
|
|
9
|
+
* <p>Returns the name of the AutoML job V2.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
AutoMLJobName: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>Returns the Amazon Resource Name (ARN) of the AutoML job V2.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
AutoMLJobArn: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>Returns an array of channel objects describing the input data and their location.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>Returns the job's output data config.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The ARN of the IAM role that has read permission to the input data location and write permission to the output data location in Amazon S3.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
RoleArn: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>Returns the job's objective.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
AutoMLJobObjective?: AutoMLJobObjective | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>Returns the configuration settings of the problem type set for the AutoML job V2.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>Returns the name of the problem type configuration set for the AutoML job V2.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>Returns the creation time of the AutoML job V2.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
CreationTime: Date | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>Returns the end time of the AutoML job V2.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
EndTime?: Date | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>Returns the job's last modified time.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
LastModifiedTime: Date | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>Returns the reason for the failure of the AutoML job V2, when applicable.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
FailureReason?: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>Returns a list of reasons for partial failures within an AutoML job V2.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>Information about the candidate produced by an AutoML training job V2, including its status, steps, and other properties.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
BestCandidate?: AutoMLCandidate | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>Returns the status of the AutoML job V2.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
AutoMLJobStatus: AutoMLJobStatus | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>Returns the secondary status of the AutoML job V2.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The artifacts that are generated during an AutoML job.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>Returns the resolved attributes used by the AutoML job V2.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if deployed automatically.</p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
ModelDeployConfig?: ModelDeployConfig | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* <p>Provides information about endpoint for the model deployment.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
ModelDeployResult?: ModelDeployResult | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>Returns the configuration settings of how the data are split into train and validation datasets.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
DataSplitConfig?: AutoMLDataSplitConfig | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>Returns the security configuration for traffic encryption or Amazon VPC settings.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
SecurityConfig?: AutoMLSecurityConfig | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The compute configuration used for the AutoML job V2.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export interface DescribeClusterRequest {
|
|
128
|
+
/**
|
|
129
|
+
* <p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
ClusterName: string | undefined;
|
|
133
|
+
}
|
|
4
134
|
/**
|
|
5
135
|
* @public
|
|
6
136
|
*/
|
|
@@ -5143,6 +5273,11 @@ export interface DescribePartnerAppRequest {
|
|
|
5143
5273
|
* @public
|
|
5144
5274
|
*/
|
|
5145
5275
|
Arn: string | undefined;
|
|
5276
|
+
/**
|
|
5277
|
+
* <p>When set to <code>TRUE</code>, the response includes available upgrade information for the SageMaker Partner AI App. Default is <code>FALSE</code>.</p>
|
|
5278
|
+
* @public
|
|
5279
|
+
*/
|
|
5280
|
+
IncludeAvailableUpgrade?: boolean | undefined;
|
|
5146
5281
|
}
|
|
5147
5282
|
/**
|
|
5148
5283
|
* <p>This is an error field object that contains the error code and the reason for an operation failure.</p>
|
|
@@ -5261,6 +5396,21 @@ export interface DescribePartnerAppResponse {
|
|
|
5261
5396
|
* @public
|
|
5262
5397
|
*/
|
|
5263
5398
|
Error?: ErrorInfo | undefined;
|
|
5399
|
+
/**
|
|
5400
|
+
* <p>Indicates whether the SageMaker Partner AI App is configured for automatic minor version upgrades during scheduled maintenance windows.</p>
|
|
5401
|
+
* @public
|
|
5402
|
+
*/
|
|
5403
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
5404
|
+
/**
|
|
5405
|
+
* <p>The end-of-life date for the current version of the SageMaker Partner AI App.</p>
|
|
5406
|
+
* @public
|
|
5407
|
+
*/
|
|
5408
|
+
CurrentVersionEolDate?: Date | undefined;
|
|
5409
|
+
/**
|
|
5410
|
+
* <p>A map of available minor version upgrades for the SageMaker Partner AI App. The key is the semantic version number, and the value is a list of release notes for that version. A null value indicates no upgrades are available.</p>
|
|
5411
|
+
* @public
|
|
5412
|
+
*/
|
|
5413
|
+
AvailableUpgrade?: AvailableUpgrade | undefined;
|
|
5264
5414
|
}
|
|
5265
5415
|
/**
|
|
5266
5416
|
* @public
|
|
@@ -8966,25 +9116,3 @@ export interface GetModelPackageGroupPolicyOutput {
|
|
|
8966
9116
|
*/
|
|
8967
9117
|
export interface GetSagemakerServicecatalogPortfolioStatusInput {
|
|
8968
9118
|
}
|
|
8969
|
-
/**
|
|
8970
|
-
* @public
|
|
8971
|
-
* @enum
|
|
8972
|
-
*/
|
|
8973
|
-
export declare const SagemakerServicecatalogStatus: {
|
|
8974
|
-
readonly DISABLED: "Disabled";
|
|
8975
|
-
readonly ENABLED: "Enabled";
|
|
8976
|
-
};
|
|
8977
|
-
/**
|
|
8978
|
-
* @public
|
|
8979
|
-
*/
|
|
8980
|
-
export type SagemakerServicecatalogStatus = (typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
8981
|
-
/**
|
|
8982
|
-
* @public
|
|
8983
|
-
*/
|
|
8984
|
-
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
8985
|
-
/**
|
|
8986
|
-
* <p>Whether Service Catalog is enabled or disabled in SageMaker.</p>
|
|
8987
|
-
* @public
|
|
8988
|
-
*/
|
|
8989
|
-
Status?: SagemakerServicecatalogStatus | undefined;
|
|
8990
|
-
}
|
|
@@ -2,6 +2,28 @@ import { ActionSummary, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageC
|
|
|
2
2
|
import { _InstanceType, ClusterSchedulerConfigSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ComputeQuotaSummary, ConditionStepMetadata, ContextSummary, HubContentType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, RecommendationJobType, ResourceLimits, SchedulerResourceStatus } from "./models_1";
|
|
3
3
|
import { CrossAccountFilterOption, ModelCardStatus, ModelLifeCycle, MonitoringType, OptimizationJobDeploymentInstanceType, PartnerAppType, SharingType, SpaceStorageSettings, StudioLifecycleConfigAppType, TrialComponentStatus } from "./models_2";
|
|
4
4
|
import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentStatus, HubContentSupportStatus, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacitySummary, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SpaceStatus, SubscribedWorkteam, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrainingPlanStatus, TransformJobStatus, TrialComponentSource, WarmPoolResourceStatus, WarmPoolStatus } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const SagemakerServicecatalogStatus: {
|
|
10
|
+
readonly DISABLED: "Disabled";
|
|
11
|
+
readonly ENABLED: "Enabled";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type SagemakerServicecatalogStatus = (typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
21
|
+
/**
|
|
22
|
+
* <p>Whether Service Catalog is enabled or disabled in SageMaker.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Status?: SagemakerServicecatalogStatus | undefined;
|
|
26
|
+
}
|
|
5
27
|
/**
|
|
6
28
|
* <p>An object where you specify the anticipated traffic pattern for an endpoint.</p>
|
|
7
29
|
* @public
|
|
@@ -8155,30 +8177,3 @@ export interface TrialComponentSummary {
|
|
|
8155
8177
|
*/
|
|
8156
8178
|
LastModifiedBy?: UserContext | undefined;
|
|
8157
8179
|
}
|
|
8158
|
-
/**
|
|
8159
|
-
* @public
|
|
8160
|
-
*/
|
|
8161
|
-
export interface ListTrialComponentsResponse {
|
|
8162
|
-
/**
|
|
8163
|
-
* <p>A list of the summaries of your trial components.</p>
|
|
8164
|
-
* @public
|
|
8165
|
-
*/
|
|
8166
|
-
TrialComponentSummaries?: TrialComponentSummary[] | undefined;
|
|
8167
|
-
/**
|
|
8168
|
-
* <p>A token for getting the next set of components, if there are any.</p>
|
|
8169
|
-
* @public
|
|
8170
|
-
*/
|
|
8171
|
-
NextToken?: string | undefined;
|
|
8172
|
-
}
|
|
8173
|
-
/**
|
|
8174
|
-
* @public
|
|
8175
|
-
* @enum
|
|
8176
|
-
*/
|
|
8177
|
-
export declare const SortTrialsBy: {
|
|
8178
|
-
readonly CREATION_TIME: "CreationTime";
|
|
8179
|
-
readonly NAME: "Name";
|
|
8180
|
-
};
|
|
8181
|
-
/**
|
|
8182
|
-
* @public
|
|
8183
|
-
*/
|
|
8184
|
-
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
@@ -2,7 +2,34 @@ import { ActionStatus, ActivationState, AdditionalInferenceSpecificationDefiniti
|
|
|
2
2
|
import { _InstanceType, ClusterRestrictedInstanceGroupSpecification, ClusterTieredStorageConfig, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, DefaultSpaceSettings, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, HubContentType, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, IPAddressType, JobType, MetadataProperties, ModelVariantConfig, Processor, RetryStrategy, SchedulerConfig, ShadowModeConfig, TagPropagation, ThroughputMode, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
|
|
3
3
|
import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType, WorkforceVpcConfigRequest } from "./models_2";
|
|
4
4
|
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, EndpointStatus, Experiment, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, HubContentSupportStatus, InferenceComponentDeploymentConfig, MetricData, ModelArtifacts, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ReservedCapacityInstanceType, ReservedCapacityType, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TemplateProviderDetail, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_3";
|
|
5
|
-
import { GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, Parameter, ResourceType, SortOrder,
|
|
5
|
+
import { GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, Parameter, ResourceType, SortOrder, TrialComponentSummary } from "./models_4";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface ListTrialComponentsResponse {
|
|
10
|
+
/**
|
|
11
|
+
* <p>A list of the summaries of your trial components.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
TrialComponentSummaries?: TrialComponentSummary[] | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>A token for getting the next set of components, if there are any.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
NextToken?: string | undefined;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
* @enum
|
|
24
|
+
*/
|
|
25
|
+
export declare const SortTrialsBy: {
|
|
26
|
+
readonly CREATION_TIME: "CreationTime";
|
|
27
|
+
readonly NAME: "Name";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
6
33
|
/**
|
|
7
34
|
* @public
|
|
8
35
|
*/
|
|
@@ -4421,6 +4448,16 @@ export interface UpdatePartnerAppRequest {
|
|
|
4421
4448
|
* @public
|
|
4422
4449
|
*/
|
|
4423
4450
|
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
4451
|
+
/**
|
|
4452
|
+
* <p>When set to <code>TRUE</code>, the SageMaker Partner AI App is automatically upgraded to the latest minor version during the next scheduled maintenance window, if one is available.</p>
|
|
4453
|
+
* @public
|
|
4454
|
+
*/
|
|
4455
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
4456
|
+
/**
|
|
4457
|
+
* <p>The semantic version to upgrade the SageMaker Partner AI App to. Must be the same semantic version returned in the <code>AvailableUpgrade</code> field from <code>DescribePartnerApp</code>. Version skipping and downgrades are not supported.</p>
|
|
4458
|
+
* @public
|
|
4459
|
+
*/
|
|
4460
|
+
AppVersion?: string | undefined;
|
|
4424
4461
|
/**
|
|
4425
4462
|
* <p>A unique token that guarantees that the call to this API is idempotent.</p>
|
|
4426
4463
|
* @public
|
|
@@ -66,6 +66,7 @@ export declare var AutoMLSecurityConfig: StaticStructureSchema;
|
|
|
66
66
|
export declare var AutoParameter: StaticStructureSchema;
|
|
67
67
|
export declare var AutoRollbackConfig: StaticStructureSchema;
|
|
68
68
|
export declare var Autotune: StaticStructureSchema;
|
|
69
|
+
export declare var AvailableUpgrade: StaticStructureSchema;
|
|
69
70
|
export declare var BatchAddClusterNodesError: StaticStructureSchema;
|
|
70
71
|
export declare var BatchAddClusterNodesRequest: StaticStructureSchema;
|
|
71
72
|
export declare var BatchAddClusterNodesResponse: StaticStructureSchema;
|
|
@@ -1110,6 +1111,7 @@ export declare var RetentionPolicy: StaticStructureSchema;
|
|
|
1110
1111
|
export declare var RetryPipelineExecutionRequest: StaticStructureSchema;
|
|
1111
1112
|
export declare var RetryPipelineExecutionResponse: StaticStructureSchema;
|
|
1112
1113
|
export declare var RetryStrategy: StaticStructureSchema;
|
|
1114
|
+
export declare var RoleGroupAssignment: StaticStructureSchema;
|
|
1113
1115
|
export declare var RollingDeploymentPolicy: StaticStructureSchema;
|
|
1114
1116
|
export declare var RollingUpdatePolicy: StaticStructureSchema;
|
|
1115
1117
|
export declare var RSessionAppSettings: StaticStructureSchema;
|
|
@@ -1381,6 +1383,7 @@ export declare var AppImageConfigList: StaticListSchema;
|
|
|
1381
1383
|
export declare var AppList: StaticListSchema;
|
|
1382
1384
|
export declare var ArtifactSourceTypes: StaticListSchema;
|
|
1383
1385
|
export declare var ArtifactSummaries: StaticListSchema;
|
|
1386
|
+
export declare var AssignedGroupPatternsList: number;
|
|
1384
1387
|
export declare var AssociationSummaries: StaticListSchema;
|
|
1385
1388
|
export declare var AssumableRoleArns: number;
|
|
1386
1389
|
export declare var AsyncNotificationTopicTypeList: number;
|
|
@@ -1489,6 +1492,7 @@ export declare var FlowDefinitionSummaries: StaticListSchema;
|
|
|
1489
1492
|
export declare var FlowDefinitionTaskKeywords: number;
|
|
1490
1493
|
export declare var ForecastQuantiles: number;
|
|
1491
1494
|
export declare var GroupingAttributeNames: number;
|
|
1495
|
+
export declare var GroupPatternsList: number;
|
|
1492
1496
|
export declare var Groups: number;
|
|
1493
1497
|
export declare var HiddenAppTypesList: number;
|
|
1494
1498
|
export declare var HiddenInstanceTypesList: number;
|
|
@@ -1609,11 +1613,13 @@ export declare var RecommendationJobSupportedInstanceTypes: number;
|
|
|
1609
1613
|
export declare var RecommendationJobSupportedResponseMIMETypes: number;
|
|
1610
1614
|
export declare var RecommendationJobVpcSecurityGroupIds: number;
|
|
1611
1615
|
export declare var RecommendationJobVpcSubnets: number;
|
|
1616
|
+
export declare var ReleaseNotesList: number;
|
|
1612
1617
|
export declare var RenderingErrorList: StaticListSchema;
|
|
1613
1618
|
export declare var ReservedCapacityOfferings: StaticListSchema;
|
|
1614
1619
|
export declare var ReservedCapacitySummaries: StaticListSchema;
|
|
1615
1620
|
export declare var ResourceCatalogList: StaticListSchema;
|
|
1616
1621
|
export declare var ResponseMIMETypes: number;
|
|
1622
|
+
export declare var RoleGroupAssignmentsList: StaticListSchema;
|
|
1617
1623
|
export declare var SageMakerImageVersionAliases: number;
|
|
1618
1624
|
export declare var SageMakerResourceNames: number;
|
|
1619
1625
|
export declare var ScalingPolicies: StaticListSchema;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DescribeAutoMLJobV2Response,
|
|
6
|
-
} from "../models/models_2";
|
|
3
|
+
import { DescribeAutoMLJobV2Request } from "../models/models_2";
|
|
4
|
+
import { DescribeAutoMLJobV2Response } from "../models/models_3";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
DescribeClusterRequest,
|
|
5
|
+
DescribeClusterResponse,
|
|
6
|
+
} from "../models/models_3";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
GetSagemakerServicecatalogPortfolioStatusOutput,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { GetSagemakerServicecatalogPortfolioStatusInput } from "../models/models_3";
|
|
4
|
+
import { GetSagemakerServicecatalogPortfolioStatusOutput } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
ListTrialComponentsResponse,
|
|
6
|
-
} from "../models/models_4";
|
|
3
|
+
import { ListTrialComponentsRequest } from "../models/models_4";
|
|
4
|
+
import { ListTrialComponentsResponse } from "../models/models_5";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1889,6 +1889,10 @@ export type AutotuneMode = (typeof AutotuneMode)[keyof typeof AutotuneMode];
|
|
|
1889
1889
|
export interface Autotune {
|
|
1890
1890
|
Mode: AutotuneMode | undefined;
|
|
1891
1891
|
}
|
|
1892
|
+
export interface AvailableUpgrade {
|
|
1893
|
+
Version?: string | undefined;
|
|
1894
|
+
ReleaseNotes?: string[] | undefined;
|
|
1895
|
+
}
|
|
1892
1896
|
export declare const AwsManagedHumanLoopRequestSource: {
|
|
1893
1897
|
readonly REKOGNITION_DETECT_MODERATION_LABELS_IMAGE_V3: "AWS/Rekognition/DetectModerationLabels/Image/V3";
|
|
1894
1898
|
readonly TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1";
|
|
@@ -2801,6 +2805,3 @@ export interface ClusterNodeSummary {
|
|
|
2801
2805
|
InstanceStatus: ClusterInstanceStatusDetails | undefined;
|
|
2802
2806
|
UltraServerInfo?: UltraServerInfo | undefined;
|
|
2803
2807
|
}
|
|
2804
|
-
export interface ClusterOrchestratorEksConfig {
|
|
2805
|
-
ClusterArn: string | undefined;
|
|
2806
|
-
}
|