interface ClusterLifeCycleConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.ClusterLifeCycleConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_ClusterLifeCycleConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.ClusterLifeCycleConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.ClusterLifeCycleConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » ClusterLifeCycleConfigProperty |
The lifecycle configuration for a SageMaker HyperPod cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const clusterLifeCycleConfigProperty: sagemaker.CfnCluster.ClusterLifeCycleConfigProperty = {
onCreate: 'onCreate',
sourceS3Uri: 'sourceS3Uri',
};
Properties
Name | Type | Description |
---|---|---|
on | string | The file name of the entrypoint script of lifecycle scripts under SourceS3Uri . |
source | string | An Amazon S3 bucket path where your lifecycle scripts are stored. |
onCreate
Type:
string
The file name of the entrypoint script of lifecycle scripts under SourceS3Uri
.
This entrypoint script runs during cluster creation.
sourceS3Uri
Type:
string
An Amazon S3 bucket path where your lifecycle scripts are stored.
Make sure that the S3 bucket path starts with
s3://sagemaker-
. The IAM role for SageMaker HyperPod has the managedAmazonSageMakerClusterInstanceRolePolicy
attached, which allows access to S3 buckets with the specific prefixsagemaker-
.