@aws-sdk/client-sagemaker 3.1030.0 → 3.1032.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 +5 -0
- package/dist-cjs/schemas/schemas_0.js +59 -44
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +25 -10
- package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
- package/dist-types/commands/CreateClusterSchedulerConfigCommand.d.ts +2 -1
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +1 -2
- package/dist-types/commands/DescribeClusterCommand.d.ts +4 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +4 -0
- package/dist-types/commands/DescribePartnerAppCommand.d.ts +2 -1
- package/dist-types/commands/DescribePipelineCommand.d.ts +1 -2
- package/dist-types/commands/UpdateClusterCommand.d.ts +4 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +43 -36
- package/dist-types/models/models_1.d.ts +36 -28
- package/dist-types/models/models_2.d.ts +30 -118
- package/dist-types/models/models_3.d.ts +119 -131
- package/dist-types/models/models_4.d.ts +129 -2
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateClusterSchedulerConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateCodeRepositoryCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribePartnerAppCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -9
- package/dist-types/ts3.4/models/models_1.d.ts +10 -7
- package/dist-types/ts3.4/models/models_2.d.ts +8 -33
- package/dist-types/ts3.4/models/models_3.d.ts +30 -39
- package/dist-types/ts3.4/models/models_4.d.ts +53 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +35 -35
|
@@ -72,6 +72,7 @@ declare const DescribeClusterCommand_base: {
|
|
|
72
72
|
* // LifeCycleConfig: { // ClusterLifeCycleConfig
|
|
73
73
|
* // SourceS3Uri: "STRING_VALUE",
|
|
74
74
|
* // OnCreate: "STRING_VALUE",
|
|
75
|
+
* // OnInitComplete: "STRING_VALUE",
|
|
75
76
|
* // },
|
|
76
77
|
* // ExecutionRole: "STRING_VALUE",
|
|
77
78
|
* // ThreadsPerCore: Number("int"),
|
|
@@ -185,6 +186,9 @@ declare const DescribeClusterCommand_base: {
|
|
|
185
186
|
* // "STRING_VALUE",
|
|
186
187
|
* // ],
|
|
187
188
|
* // },
|
|
189
|
+
* // NetworkInterface: { // ClusterNetworkInterfaceDetails
|
|
190
|
+
* // InterfaceType: "efa" || "efa-only",
|
|
191
|
+
* // },
|
|
188
192
|
* // },
|
|
189
193
|
* // ],
|
|
190
194
|
* // RestrictedInstanceGroups: [ // ClusterRestrictedInstanceGroupDetailsList
|
|
@@ -58,6 +58,7 @@ declare const DescribeClusterNodeCommand_base: {
|
|
|
58
58
|
* // LifeCycleConfig: { // ClusterLifeCycleConfig
|
|
59
59
|
* // SourceS3Uri: "STRING_VALUE",
|
|
60
60
|
* // OnCreate: "STRING_VALUE",
|
|
61
|
+
* // OnInitComplete: "STRING_VALUE",
|
|
61
62
|
* // },
|
|
62
63
|
* // OverrideVpcConfig: { // VpcConfig
|
|
63
64
|
* // SecurityGroupIds: [ // VpcSecurityGroupIds // required
|
|
@@ -122,6 +123,9 @@ declare const DescribeClusterNodeCommand_base: {
|
|
|
122
123
|
* // ],
|
|
123
124
|
* // },
|
|
124
125
|
* // CapacityType: "Spot" || "OnDemand",
|
|
126
|
+
* // NetworkInterface: { // ClusterNetworkInterfaceDetails
|
|
127
|
+
* // InterfaceType: "efa" || "efa-only",
|
|
128
|
+
* // },
|
|
125
129
|
* // },
|
|
126
130
|
* // };
|
|
127
131
|
*
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DescribePartnerAppRequest
|
|
3
|
+
import type { DescribePartnerAppRequest } from "../models/models_2";
|
|
4
|
+
import type { DescribePartnerAppResponse } from "../models/models_3";
|
|
4
5
|
import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DescribePipelineRequest } from "../models/
|
|
4
|
-
import type { DescribePipelineResponse } from "../models/models_3";
|
|
3
|
+
import type { DescribePipelineRequest, DescribePipelineResponse } from "../models/models_3";
|
|
5
4
|
import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -52,6 +52,7 @@ declare const UpdateClusterCommand_base: {
|
|
|
52
52
|
* LifeCycleConfig: { // ClusterLifeCycleConfig
|
|
53
53
|
* SourceS3Uri: "STRING_VALUE",
|
|
54
54
|
* OnCreate: "STRING_VALUE",
|
|
55
|
+
* OnInitComplete: "STRING_VALUE",
|
|
55
56
|
* },
|
|
56
57
|
* ExecutionRole: "STRING_VALUE", // required
|
|
57
58
|
* ThreadsPerCore: Number("int"),
|
|
@@ -129,6 +130,9 @@ declare const UpdateClusterCommand_base: {
|
|
|
129
130
|
* Spot: {},
|
|
130
131
|
* OnDemand: {},
|
|
131
132
|
* },
|
|
133
|
+
* NetworkInterface: { // ClusterNetworkInterface
|
|
134
|
+
* InterfaceType: "efa" || "efa-only",
|
|
135
|
+
* },
|
|
132
136
|
* },
|
|
133
137
|
* ],
|
|
134
138
|
* RestrictedInstanceGroups: [ // ClusterRestrictedInstanceGroupSpecifications
|
|
@@ -2197,6 +2197,18 @@ export declare const ClusterKubernetesTaintEffect: {
|
|
|
2197
2197
|
* @public
|
|
2198
2198
|
*/
|
|
2199
2199
|
export type ClusterKubernetesTaintEffect = (typeof ClusterKubernetesTaintEffect)[keyof typeof ClusterKubernetesTaintEffect];
|
|
2200
|
+
/**
|
|
2201
|
+
* @public
|
|
2202
|
+
* @enum
|
|
2203
|
+
*/
|
|
2204
|
+
export declare const ClusterInterfaceType: {
|
|
2205
|
+
readonly EFA: "efa";
|
|
2206
|
+
readonly EFA_ONLY: "efa-only";
|
|
2207
|
+
};
|
|
2208
|
+
/**
|
|
2209
|
+
* @public
|
|
2210
|
+
*/
|
|
2211
|
+
export type ClusterInterfaceType = (typeof ClusterInterfaceType)[keyof typeof ClusterInterfaceType];
|
|
2200
2212
|
/**
|
|
2201
2213
|
* @public
|
|
2202
2214
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ActionStatus, ActivationState, ActiveClusterOperationName, AdditionalS3DataSourceDataType, AggregationTransformationValue, AlgorithmStatus, AppInstanceType, AppStatus, AppType, ArtifactSourceIdType, AssemblyType, AssociationEdgeType, AsyncNotificationTopicTypes, AthenaResultCompressionType, AthenaResultFormat, AutoMLAlgorithm, AutoMLChannelType, AutoMLJobObjectiveType, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLMetricEnum, AutoMLMetricExtendedEnum, AutoMLMode, AutoMLProcessingUnit, AutoMLS3DataType, AutotuneMode, BatchAddClusterNodesErrorCode, BatchDeleteClusterNodesErrorCode, BatchRebootClusterNodesErrorCode, BatchReplaceClusterNodesErrorCode, BatchStrategy, CandidateStatus, CandidateStepType, CapacityReservationType, CapacitySizeType, CaptureMode, ClarifyFeatureType, ClarifyTextGranularity, ClarifyTextLanguage, ClusterAutoScalerType, ClusterAutoScalingMode, ClusterAutoScalingStatus, ClusterCapacityType, ClusterConfigMode, ClusterEventResourceType, ClusterInstanceStatus, ClusterInstanceType, ClusterKubernetesTaintEffect, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterSlurmConfigStrategy, ClusterSlurmNodeType, ClusterStatus, CompilationJobStatus, CompleteOnConvergence, CompressionType, ConditionOutcome, ContainerMode, DataSourceName, DeepHealthCheckType, DetailedAlgorithmStatus, FairShare, FeatureStatus, FileSystemAccessMode, FileSystemType, FillingType, HyperParameterScalingType, HyperParameterTuningJobObjectiveType, IdleResourceSharing, InstanceGroupStatus, LifecycleManagement, MetricSetSource, MIGProfileType, ModelApprovalStatus, ModelCacheSetting, ModelCompressionType, ModelPackageRegistrationType, ModelPackageStatus, NodeUnavailabilityType, ObjectiveStatus, OutputCompressionType, ParameterType, PreemptTeamTasks, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, RecordWrapper, RepositoryAccessMode, ResourceSharingStrategy, S3DataDistribution, S3DataType, S3ModelDataType, SchedulerResourceStatus, SoftwareUpdateStatus, SplitType, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, TrafficRoutingConfigType, TrainingInputMode, TrainingInstanceType, TrainingRepositoryAccessMode, TransformInstanceType, VolumeAttachmentStatus } from "./enums";
|
|
1
|
+
import type { ActionStatus, ActivationState, ActiveClusterOperationName, AdditionalS3DataSourceDataType, AggregationTransformationValue, AlgorithmStatus, AppInstanceType, AppStatus, AppType, ArtifactSourceIdType, AssemblyType, AssociationEdgeType, AsyncNotificationTopicTypes, AthenaResultCompressionType, AthenaResultFormat, AutoMLAlgorithm, AutoMLChannelType, AutoMLJobObjectiveType, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLMetricEnum, AutoMLMetricExtendedEnum, AutoMLMode, AutoMLProcessingUnit, AutoMLS3DataType, AutotuneMode, BatchAddClusterNodesErrorCode, BatchDeleteClusterNodesErrorCode, BatchRebootClusterNodesErrorCode, BatchReplaceClusterNodesErrorCode, BatchStrategy, CandidateStatus, CandidateStepType, CapacityReservationType, CapacitySizeType, CaptureMode, ClarifyFeatureType, ClarifyTextGranularity, ClarifyTextLanguage, ClusterAutoScalerType, ClusterAutoScalingMode, ClusterAutoScalingStatus, ClusterCapacityType, ClusterConfigMode, ClusterEventResourceType, ClusterInstanceStatus, ClusterInstanceType, ClusterInterfaceType, ClusterKubernetesTaintEffect, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterSlurmConfigStrategy, ClusterSlurmNodeType, ClusterStatus, CompilationJobStatus, CompleteOnConvergence, CompressionType, ConditionOutcome, ContainerMode, DataSourceName, DeepHealthCheckType, DetailedAlgorithmStatus, FairShare, FeatureStatus, FileSystemAccessMode, FileSystemType, FillingType, HyperParameterScalingType, HyperParameterTuningJobObjectiveType, IdleResourceSharing, InstanceGroupStatus, LifecycleManagement, MetricSetSource, MIGProfileType, ModelApprovalStatus, ModelCacheSetting, ModelCompressionType, ModelPackageRegistrationType, ModelPackageStatus, NodeUnavailabilityType, ObjectiveStatus, OutputCompressionType, ParameterType, PreemptTeamTasks, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, RecordWrapper, RepositoryAccessMode, ResourceSharingStrategy, S3DataDistribution, S3DataType, S3ModelDataType, SchedulerResourceStatus, SoftwareUpdateStatus, SplitType, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, TrafficRoutingConfigType, TrainingInputMode, TrainingInstanceType, TrainingRepositoryAccessMode, TransformInstanceType, VolumeAttachmentStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Configuration for allocating accelerator partitions.</p>
|
|
4
4
|
* @public
|
|
@@ -5051,6 +5051,22 @@ export interface ClusterLifeCycleConfig {
|
|
|
5051
5051
|
* @public
|
|
5052
5052
|
*/
|
|
5053
5053
|
OnCreate?: string | undefined;
|
|
5054
|
+
/**
|
|
5055
|
+
* <p>The file name of the entrypoint script of lifecycle scripts under <code>SourceS3Uri</code>. This script runs on the node after the AMI-based initialization is complete.</p>
|
|
5056
|
+
* @public
|
|
5057
|
+
*/
|
|
5058
|
+
OnInitComplete?: string | undefined;
|
|
5059
|
+
}
|
|
5060
|
+
/**
|
|
5061
|
+
* <p>The network interface configuration details for a Amazon SageMaker HyperPod cluster instance group.</p>
|
|
5062
|
+
* @public
|
|
5063
|
+
*/
|
|
5064
|
+
export interface ClusterNetworkInterfaceDetails {
|
|
5065
|
+
/**
|
|
5066
|
+
* <p>The type of network interface for the instance group. Valid values are <code>efa</code> and <code>efa-only</code>.</p>
|
|
5067
|
+
* @public
|
|
5068
|
+
*/
|
|
5069
|
+
InterfaceType?: ClusterInterfaceType | undefined;
|
|
5054
5070
|
}
|
|
5055
5071
|
/**
|
|
5056
5072
|
* <p>The configuration object of the schedule that SageMaker follows when updating the AMI.</p>
|
|
@@ -5219,6 +5235,11 @@ export interface ClusterInstanceGroupDetails {
|
|
|
5219
5235
|
* @public
|
|
5220
5236
|
*/
|
|
5221
5237
|
SlurmConfig?: ClusterSlurmConfigDetails | undefined;
|
|
5238
|
+
/**
|
|
5239
|
+
* <p>The network interface configuration for the instance group.</p>
|
|
5240
|
+
* @public
|
|
5241
|
+
*/
|
|
5242
|
+
NetworkInterface?: ClusterNetworkInterfaceDetails | undefined;
|
|
5222
5243
|
}
|
|
5223
5244
|
/**
|
|
5224
5245
|
* <p>The instance requirements for a flexible instance group. Use this to specify multiple instance types that the instance group can use. The order of instance types in the list determines the priority for instance provisioning.</p>
|
|
@@ -5247,6 +5268,17 @@ export interface ClusterKubernetesConfig {
|
|
|
5247
5268
|
*/
|
|
5248
5269
|
Taints?: ClusterKubernetesTaint[] | undefined;
|
|
5249
5270
|
}
|
|
5271
|
+
/**
|
|
5272
|
+
* <p>The network interface configuration for a Amazon SageMaker HyperPod cluster instance group.</p>
|
|
5273
|
+
* @public
|
|
5274
|
+
*/
|
|
5275
|
+
export interface ClusterNetworkInterface {
|
|
5276
|
+
/**
|
|
5277
|
+
* <p>The type of network interface for the instance group. Valid values:</p> <ul> <li> <p> <code>efa</code> – An EFA with ENA interface, which provides both the EFA device for low-latency, high-throughput communication and the ENA device for IP networking.</p> </li> <li> <p> <code>efa-only</code> – An EFA-only interface, which provides only the EFA device capabilities without the ENA device for traditional IP networking.</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html">Elastic Fabric Adapter</a>.</p>
|
|
5278
|
+
* @public
|
|
5279
|
+
*/
|
|
5280
|
+
InterfaceType?: ClusterInterfaceType | undefined;
|
|
5281
|
+
}
|
|
5250
5282
|
/**
|
|
5251
5283
|
* <p>The Slurm configuration for an instance group in a SageMaker HyperPod cluster.</p>
|
|
5252
5284
|
* @public
|
|
@@ -5353,6 +5385,11 @@ export interface ClusterInstanceGroupSpecification {
|
|
|
5353
5385
|
* @public
|
|
5354
5386
|
*/
|
|
5355
5387
|
CapacityRequirements?: ClusterCapacityRequirements | undefined;
|
|
5388
|
+
/**
|
|
5389
|
+
* <p>The network interface configuration for the instance group.</p>
|
|
5390
|
+
* @public
|
|
5391
|
+
*/
|
|
5392
|
+
NetworkInterface?: ClusterNetworkInterface | undefined;
|
|
5356
5393
|
}
|
|
5357
5394
|
/**
|
|
5358
5395
|
* <p>Specifies the placement details for the node in the SageMaker HyperPod cluster, including the Availability Zone and the unique identifier (ID) of the Availability Zone.</p>
|
|
@@ -5533,6 +5570,11 @@ export interface ClusterNodeDetails {
|
|
|
5533
5570
|
* @public
|
|
5534
5571
|
*/
|
|
5535
5572
|
CapacityType?: ClusterCapacityType | undefined;
|
|
5573
|
+
/**
|
|
5574
|
+
* <p>The network interface configuration for the cluster node.</p>
|
|
5575
|
+
* @public
|
|
5576
|
+
*/
|
|
5577
|
+
NetworkInterface?: ClusterNetworkInterfaceDetails | undefined;
|
|
5536
5578
|
}
|
|
5537
5579
|
/**
|
|
5538
5580
|
* <p>Lists a summary of the properties of an instance (also called a <i>node</i> interchangeably) of a SageMaker HyperPod cluster.</p>
|
|
@@ -7212,38 +7254,3 @@ export interface CreateClusterSchedulerConfigRequest {
|
|
|
7212
7254
|
*/
|
|
7213
7255
|
Tags?: Tag[] | undefined;
|
|
7214
7256
|
}
|
|
7215
|
-
/**
|
|
7216
|
-
* @public
|
|
7217
|
-
*/
|
|
7218
|
-
export interface CreateClusterSchedulerConfigResponse {
|
|
7219
|
-
/**
|
|
7220
|
-
* <p>ARN of the cluster policy.</p>
|
|
7221
|
-
* @public
|
|
7222
|
-
*/
|
|
7223
|
-
ClusterSchedulerConfigArn: string | undefined;
|
|
7224
|
-
/**
|
|
7225
|
-
* <p>ID of the cluster policy.</p>
|
|
7226
|
-
* @public
|
|
7227
|
-
*/
|
|
7228
|
-
ClusterSchedulerConfigId: string | undefined;
|
|
7229
|
-
}
|
|
7230
|
-
/**
|
|
7231
|
-
* @public
|
|
7232
|
-
*/
|
|
7233
|
-
export interface CreateCodeRepositoryInput {
|
|
7234
|
-
/**
|
|
7235
|
-
* <p>The name of the Git repository. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).</p>
|
|
7236
|
-
* @public
|
|
7237
|
-
*/
|
|
7238
|
-
CodeRepositoryName: string | undefined;
|
|
7239
|
-
/**
|
|
7240
|
-
* <p>Specifies details about the repository, including the URL where the repository is located, the default branch, and credentials to use to access the repository.</p>
|
|
7241
|
-
* @public
|
|
7242
|
-
*/
|
|
7243
|
-
GitConfig: GitConfig | undefined;
|
|
7244
|
-
/**
|
|
7245
|
-
* <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
|
|
7246
|
-
* @public
|
|
7247
|
-
*/
|
|
7248
|
-
Tags?: Tag[] | undefined;
|
|
7249
|
-
}
|
|
@@ -1,6 +1,41 @@
|
|
|
1
1
|
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
2
2
|
import type { _InstanceType, AccountDefaultStatus, ActivationState, AppInstanceType, AppNetworkAccessType, AppSecurityGroupManagement, AppType, AuthMode, AutoMountHomeEFS, AvailabilityZoneBalanceEnforcementMode, AwsManagedHumanLoopRequestSource, CapacityReservationPreference, CollectionType, ContentClassifier, DataDistributionType, DeviceSubsetType, DirectInternetAccess, EdgePresetDeploymentType, ExecutionRoleIdentityConfig, FailureHandlingPolicy, FeatureStatus, FeatureType, FlatInvocations, Framework, HubContentType, HyperParameterScalingType, HyperParameterTuningAllocationStrategy, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartType, InferenceComponentPlacementStrategy, InferenceExecutionMode, InferenceExperimentType, InputMode, IPAddressType, JobType, ManagedInstanceScalingScaleInStrategy, ManagedInstanceScalingStatus, MetricPublishFrequencyInSeconds, MlTools, ModelApprovalStatus, ModelCardStatus, ModelInfrastructureType, ModelPackageRegistrationType, ModelRegistrationMode, ModelSpeculativeDecodingS3DataType, ModelSpeculativeDecodingTechnique, MonitoringProblemType, MonitoringType, NotebookInstanceAcceleratorType, NotebookOutputOption, OptimizationJobDeploymentInstanceType, PartnerAppAuthType, PartnerAppType, ProcessingInstanceType, ProcessingS3CompressionType, ProcessingS3DataDistributionType, ProcessingS3DataType, ProcessingS3InputMode, ProcessingS3UploadMode, Processor, ProductionVariantAcceleratorType, ProductionVariantInferenceAmiVersion, ProductionVariantInstanceType, RecommendationJobSupportedEndpointType, RecommendationJobType, RedshiftResultCompressionType, RedshiftResultFormat, RootAccess, RoutingStrategy, RStudioServerProAccessStatus, RStudioServerProUserGroup, SageMakerImageName, SkipModelValidation, StorageType, StudioWebPortal, TableFormat, TagPropagation, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, ThroughputMode, TrackingServerSize, TrafficType, TrainingInputMode, TrainingInstanceType, TrainingJobEarlyStoppingType, TtlDurationUnit, VendorGuidance } from "./enums";
|
|
3
|
-
import type { AdditionalInferenceSpecificationDefinition, AmazonQSettings, AnnotationConsolidationConfig, AppLifecycleManagement, AppSpecification, AsyncInferenceConfig, AthenaDatasetDefinition, AuthorizedUrl, AutoParameter, AutoRollbackConfig, Autotune, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, CfnCreateTemplateProvider, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, HyperParameterTuningJobObjective, InferenceSpecification, MetadataProperties, MetricDefinition, MetricsSource, ModelDataSource, OutputDataConfig, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformJobDefinition, VpcConfig } from "./models_0";
|
|
3
|
+
import type { AdditionalInferenceSpecificationDefinition, AmazonQSettings, AnnotationConsolidationConfig, AppLifecycleManagement, AppSpecification, AsyncInferenceConfig, AthenaDatasetDefinition, AuthorizedUrl, AutoParameter, AutoRollbackConfig, Autotune, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, CfnCreateTemplateProvider, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, GitConfig, HyperParameterTuningJobObjective, InferenceSpecification, MetadataProperties, MetricDefinition, MetricsSource, ModelDataSource, OutputDataConfig, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformJobDefinition, VpcConfig } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface CreateClusterSchedulerConfigResponse {
|
|
8
|
+
/**
|
|
9
|
+
* <p>ARN of the cluster policy.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
ClusterSchedulerConfigArn: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>ID of the cluster policy.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
ClusterSchedulerConfigId: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCodeRepositoryInput {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The name of the Git repository. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
CodeRepositoryName: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>Specifies details about the repository, including the URL where the repository is located, the default branch, and credentials to use to access the repository.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
GitConfig: GitConfig | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a>.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
Tags?: Tag[] | undefined;
|
|
38
|
+
}
|
|
4
39
|
/**
|
|
5
40
|
* @public
|
|
6
41
|
*/
|
|
@@ -6964,30 +6999,3 @@ export interface SpaceIdleSettings {
|
|
|
6964
6999
|
*/
|
|
6965
7000
|
IdleTimeoutInMinutes?: number | undefined;
|
|
6966
7001
|
}
|
|
6967
|
-
/**
|
|
6968
|
-
* <p>Settings that are used to configure and manage the lifecycle of Amazon SageMaker Studio applications in a space.</p>
|
|
6969
|
-
* @public
|
|
6970
|
-
*/
|
|
6971
|
-
export interface SpaceAppLifecycleManagement {
|
|
6972
|
-
/**
|
|
6973
|
-
* <p>Settings related to idle shutdown of Studio applications.</p>
|
|
6974
|
-
* @public
|
|
6975
|
-
*/
|
|
6976
|
-
IdleSettings?: SpaceIdleSettings | undefined;
|
|
6977
|
-
}
|
|
6978
|
-
/**
|
|
6979
|
-
* <p>The application settings for a Code Editor space.</p>
|
|
6980
|
-
* @public
|
|
6981
|
-
*/
|
|
6982
|
-
export interface SpaceCodeEditorAppSettings {
|
|
6983
|
-
/**
|
|
6984
|
-
* <p>Specifies the ARN's of a SageMaker AI image and SageMaker AI image version, and the instance type that the version runs on.</p> <note> <p>When both <code>SageMakerImageVersionArn</code> and <code>SageMakerImageArn</code> are passed, <code>SageMakerImageVersionArn</code> is used. Any updates to <code>SageMakerImageArn</code> will not take effect if <code>SageMakerImageVersionArn</code> already exists in the <code>ResourceSpec</code> because <code>SageMakerImageVersionArn</code> always takes precedence. To clear the value set for <code>SageMakerImageVersionArn</code>, pass <code>None</code> as the value.</p> </note>
|
|
6985
|
-
* @public
|
|
6986
|
-
*/
|
|
6987
|
-
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
6988
|
-
/**
|
|
6989
|
-
* <p>Settings that are used to configure and manage the lifecycle of CodeEditor applications in a space.</p>
|
|
6990
|
-
* @public
|
|
6991
|
-
*/
|
|
6992
|
-
AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
|
|
6993
|
-
}
|
|
@@ -1,6 +1,33 @@
|
|
|
1
|
-
import type { _InstanceType, AccountDefaultStatus, ActionStatus, ActivationState, AlgorithmStatus, AppNetworkAccessType, AppSecurityGroupManagement, AppStatus, AppType, AuthMode, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLProblemTypeConfigName, BatchStrategy, CapacityReservationPreference, CaptureStatus, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterStatus, CompilationJobStatus, CustomizationTechnique, DeepHealthCheckType, DetailedModelPackageStatus, DirectInternetAccess, DomainStatus, EdgePackagingJobStatus, EdgePresetDeploymentStatus, EdgePresetDeploymentType, EnabledOrDisabled, EndpointStatus, EvaluationType, ExecutionStatus, FeatureGroupStatus, FeatureStatus, FeatureType, FlowDefinitionStatus, HubContentStatus, HubContentSupportStatus, HubContentType, HubStatus, HumanTaskUiStatus, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentCapacitySizeType, InferenceComponentStatus, InferenceExperimentStatus, InferenceExperimentType, IPAddressType, IsTrackingServerActive, JobType, JoinSource, LabelingJobStatus, LastUpdateStatusValue, MaintenanceStatus, MlflowAppStatus, ModelApprovalStatus, ModelCardExportJobStatus, ModelCardProcessingStatus, ModelCardStatus, ModelPackageGroupStatus, ModelPackageRegistrationType, ModelPackageStatus, ModelRegistrationMode, ModelVariantStatus, MonitoringType, NotebookInstanceAcceleratorType, NotebookInstanceStatus, ObjectiveStatus, OfflineStoreStatusValue, OptimizationJobDeploymentInstanceType, OptimizationJobStatus,
|
|
2
|
-
import type { ActionSource, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatusDetails, AlgorithmValidationSpecification, ArtifactSource, AsyncInferenceConfig, AutoMLCandidate, AutoMLChannel, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLResolvedAttributes, AutoMLSecurityConfig, AutoRollbackConfig, Autotune,
|
|
3
|
-
import type { DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentSchedulingConfig, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InputConfig, InstanceMetadataServiceConfiguration, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MetricsConfig, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, NeoVpcConfig, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OptimizationConfig, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OutputConfig, OwnershipSettings,
|
|
1
|
+
import type { _InstanceType, AccountDefaultStatus, ActionStatus, ActivationState, AlgorithmStatus, AppNetworkAccessType, AppSecurityGroupManagement, AppStatus, AppType, AuthMode, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLProblemTypeConfigName, BatchStrategy, CapacityReservationPreference, CaptureStatus, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterStatus, CompilationJobStatus, CustomizationTechnique, DeepHealthCheckType, DetailedModelPackageStatus, DirectInternetAccess, DomainStatus, EdgePackagingJobStatus, EdgePresetDeploymentStatus, EdgePresetDeploymentType, EnabledOrDisabled, EndpointStatus, EvaluationType, ExecutionStatus, FeatureGroupStatus, FeatureStatus, FeatureType, FlowDefinitionStatus, HubContentStatus, HubContentSupportStatus, HubContentType, HubStatus, HumanTaskUiStatus, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentCapacitySizeType, InferenceComponentStatus, InferenceExperimentStatus, InferenceExperimentType, IPAddressType, IsTrackingServerActive, JobType, JoinSource, LabelingJobStatus, LastUpdateStatusValue, MaintenanceStatus, MlflowAppStatus, ModelApprovalStatus, ModelCardExportJobStatus, ModelCardProcessingStatus, ModelCardStatus, ModelPackageGroupStatus, ModelPackageRegistrationType, ModelPackageStatus, ModelRegistrationMode, ModelVariantStatus, MonitoringType, NotebookInstanceAcceleratorType, NotebookInstanceStatus, ObjectiveStatus, OfflineStoreStatusValue, OptimizationJobDeploymentInstanceType, OptimizationJobStatus, Peft, ProblemType, ProcessingInstanceType, Processor, ProductionVariantAcceleratorType, ProductionVariantInstanceType, RecommendationJobStatus, RecommendationJobType, RecommendationStatus, RetentionType, RootAccess, RuleEvaluationStatus, SchedulerConfigComponent, SchedulerResourceStatus, ScheduleStatus, ServerlessJobType, SharingType, SkipModelValidation, StageStatus, Statistic, StudioLifecycleConfigAppType, TagPropagation, ThroughputMode, TrackingServerMaintenanceStatus, TrackingServerSize, TrackingServerStatus, TrainingJobStatus, TrialComponentPrimaryStatus, VariantStatus, VendorGuidance, WorkforceIpAddressType } from "./enums";
|
|
2
|
+
import type { ActionSource, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatusDetails, AlgorithmValidationSpecification, ArtifactSource, AsyncInferenceConfig, AutoMLCandidate, AutoMLChannel, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLResolvedAttributes, AutoMLSecurityConfig, AutoRollbackConfig, Autotune, BatchDataCaptureConfig, Channel, CheckpointConfig, ClusterAutoScalingConfigOutput, ClusterEventDetail, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterOrchestrator, ClusterRestrictedInstanceGroupDetails, ClusterTieredStorageConfig, CodeEditorAppImageConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, GitConfig, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelDeployConfig, OutputDataConfig, ResourceConfig, ResourceSpec, SchedulerConfig, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
3
|
+
import type { DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentSchedulingConfig, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InputConfig, InstanceMetadataServiceConfiguration, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MetricsConfig, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, NeoVpcConfig, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OptimizationConfig, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OutputConfig, OwnershipSettings, ProductionVariant, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RetryStrategy, ShadowModeConfig, SourceAlgorithmSpecification, SpaceIdleSettings, UserSettings } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Settings that are used to configure and manage the lifecycle of Amazon SageMaker Studio applications in a space.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface SpaceAppLifecycleManagement {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Settings related to idle shutdown of Studio applications.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
IdleSettings?: SpaceIdleSettings | undefined;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The application settings for a Code Editor space.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface SpaceCodeEditorAppSettings {
|
|
20
|
+
/**
|
|
21
|
+
* <p>Specifies the ARN's of a SageMaker AI image and SageMaker AI image version, and the instance type that the version runs on.</p> <note> <p>When both <code>SageMakerImageVersionArn</code> and <code>SageMakerImageArn</code> are passed, <code>SageMakerImageVersionArn</code> is used. Any updates to <code>SageMakerImageArn</code> will not take effect if <code>SageMakerImageVersionArn</code> already exists in the <code>ResourceSpec</code> because <code>SageMakerImageVersionArn</code> always takes precedence. To clear the value set for <code>SageMakerImageVersionArn</code>, pass <code>None</code> as the value.</p> </note>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>Settings that are used to configure and manage the lifecycle of CodeEditor applications in a space.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
|
|
30
|
+
}
|
|
4
31
|
/**
|
|
5
32
|
* <p>A file system, created by you in Amazon EFS, that you assign to a user profile or space for an Amazon SageMaker AI Domain. Permitted users can access this file system in Amazon SageMaker AI Studio.</p>
|
|
6
33
|
* @public
|
|
@@ -7904,118 +7931,3 @@ export interface ErrorInfo {
|
|
|
7904
7931
|
*/
|
|
7905
7932
|
Reason?: string | undefined;
|
|
7906
7933
|
}
|
|
7907
|
-
/**
|
|
7908
|
-
* @public
|
|
7909
|
-
*/
|
|
7910
|
-
export interface DescribePartnerAppResponse {
|
|
7911
|
-
/**
|
|
7912
|
-
* <p>The ARN of the SageMaker Partner AI App that was described.</p>
|
|
7913
|
-
* @public
|
|
7914
|
-
*/
|
|
7915
|
-
Arn?: string | undefined;
|
|
7916
|
-
/**
|
|
7917
|
-
* <p>The name of the SageMaker Partner AI App.</p>
|
|
7918
|
-
* @public
|
|
7919
|
-
*/
|
|
7920
|
-
Name?: string | undefined;
|
|
7921
|
-
/**
|
|
7922
|
-
* <p>The type of SageMaker Partner AI App. Must be one of the following: <code>lakera-guard</code>, <code>comet</code>, <code>deepchecks-llm-evaluation</code>, or <code>fiddler</code>.</p>
|
|
7923
|
-
* @public
|
|
7924
|
-
*/
|
|
7925
|
-
Type?: PartnerAppType | undefined;
|
|
7926
|
-
/**
|
|
7927
|
-
* <p>The status of the SageMaker Partner AI App.</p> <ul> <li> <p>Creating: SageMaker AI is creating the partner AI app. The partner AI app is not available during creation.</p> </li> <li> <p>Updating: SageMaker AI is updating the partner AI app. The partner AI app is not available when updating.</p> </li> <li> <p>Deleting: SageMaker AI is deleting the partner AI app. The partner AI app is not available during deletion.</p> </li> <li> <p>Available: The partner AI app is provisioned and accessible.</p> </li> <li> <p>Failed: The partner AI app is in a failed state and isn't available. SageMaker AI is investigating the issue. For further guidance, contact Amazon Web Services Support.</p> </li> <li> <p>UpdateFailed: The partner AI app couldn't be updated but is available.</p> </li> <li> <p>Deleted: The partner AI app is permanently deleted and not available.</p> </li> </ul>
|
|
7928
|
-
* @public
|
|
7929
|
-
*/
|
|
7930
|
-
Status?: PartnerAppStatus | undefined;
|
|
7931
|
-
/**
|
|
7932
|
-
* <p>The time that the SageMaker Partner AI App was created.</p>
|
|
7933
|
-
* @public
|
|
7934
|
-
*/
|
|
7935
|
-
CreationTime?: Date | undefined;
|
|
7936
|
-
/**
|
|
7937
|
-
* <p>The time that the SageMaker Partner AI App was last modified.</p>
|
|
7938
|
-
* @public
|
|
7939
|
-
*/
|
|
7940
|
-
LastModifiedTime?: Date | undefined;
|
|
7941
|
-
/**
|
|
7942
|
-
* <p>The ARN of the IAM role associated with the SageMaker Partner AI App.</p>
|
|
7943
|
-
* @public
|
|
7944
|
-
*/
|
|
7945
|
-
ExecutionRoleArn?: string | undefined;
|
|
7946
|
-
/**
|
|
7947
|
-
* <p>The Amazon Web Services KMS customer managed key used to encrypt the data at rest associated with SageMaker Partner AI Apps.</p>
|
|
7948
|
-
* @public
|
|
7949
|
-
*/
|
|
7950
|
-
KmsKeyId?: string | undefined;
|
|
7951
|
-
/**
|
|
7952
|
-
* <p>The URL of the SageMaker Partner AI App that the Application SDK uses to support in-app calls for the user.</p>
|
|
7953
|
-
* @public
|
|
7954
|
-
*/
|
|
7955
|
-
BaseUrl?: string | undefined;
|
|
7956
|
-
/**
|
|
7957
|
-
* <p>Maintenance configuration settings for the SageMaker Partner AI App.</p>
|
|
7958
|
-
* @public
|
|
7959
|
-
*/
|
|
7960
|
-
MaintenanceConfig?: PartnerAppMaintenanceConfig | undefined;
|
|
7961
|
-
/**
|
|
7962
|
-
* <p>The instance type and size of the cluster attached to the SageMaker Partner AI App.</p>
|
|
7963
|
-
* @public
|
|
7964
|
-
*/
|
|
7965
|
-
Tier?: string | undefined;
|
|
7966
|
-
/**
|
|
7967
|
-
* <p>The version of the SageMaker Partner AI App.</p>
|
|
7968
|
-
* @public
|
|
7969
|
-
*/
|
|
7970
|
-
Version?: string | undefined;
|
|
7971
|
-
/**
|
|
7972
|
-
* <p>Configuration settings for the SageMaker Partner AI App.</p>
|
|
7973
|
-
* @public
|
|
7974
|
-
*/
|
|
7975
|
-
ApplicationConfig?: PartnerAppConfig | undefined;
|
|
7976
|
-
/**
|
|
7977
|
-
* <p>The authorization type that users use to access the SageMaker Partner AI App.</p>
|
|
7978
|
-
* @public
|
|
7979
|
-
*/
|
|
7980
|
-
AuthType?: PartnerAppAuthType | undefined;
|
|
7981
|
-
/**
|
|
7982
|
-
* <p>When set to <code>TRUE</code>, the SageMaker Partner AI App sets the Amazon Web Services IAM session name or the authenticated IAM user as the identity of the SageMaker Partner AI App user.</p>
|
|
7983
|
-
* @public
|
|
7984
|
-
*/
|
|
7985
|
-
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
7986
|
-
/**
|
|
7987
|
-
* <p>This is an error field object that contains the error code and the reason for an operation failure.</p>
|
|
7988
|
-
* @public
|
|
7989
|
-
*/
|
|
7990
|
-
Error?: ErrorInfo | undefined;
|
|
7991
|
-
/**
|
|
7992
|
-
* <p>Indicates whether the SageMaker Partner AI App is configured for automatic minor version upgrades during scheduled maintenance windows.</p>
|
|
7993
|
-
* @public
|
|
7994
|
-
*/
|
|
7995
|
-
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
7996
|
-
/**
|
|
7997
|
-
* <p>The end-of-life date for the current version of the SageMaker Partner AI App.</p>
|
|
7998
|
-
* @public
|
|
7999
|
-
*/
|
|
8000
|
-
CurrentVersionEolDate?: Date | undefined;
|
|
8001
|
-
/**
|
|
8002
|
-
* <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>
|
|
8003
|
-
* @public
|
|
8004
|
-
*/
|
|
8005
|
-
AvailableUpgrade?: AvailableUpgrade | undefined;
|
|
8006
|
-
}
|
|
8007
|
-
/**
|
|
8008
|
-
* @public
|
|
8009
|
-
*/
|
|
8010
|
-
export interface DescribePipelineRequest {
|
|
8011
|
-
/**
|
|
8012
|
-
* <p>The name or Amazon Resource Name (ARN) of the pipeline to describe.</p>
|
|
8013
|
-
* @public
|
|
8014
|
-
*/
|
|
8015
|
-
PipelineName: string | undefined;
|
|
8016
|
-
/**
|
|
8017
|
-
* <p>The ID of the pipeline version to describe.</p>
|
|
8018
|
-
* @public
|
|
8019
|
-
*/
|
|
8020
|
-
PipelineVersionId?: number | undefined;
|
|
8021
|
-
}
|