interface S3LocationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnPipeline.S3LocationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnPipeline_S3LocationProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnPipeline.S3LocationProperty |
![]() | aws_cdk.aws_sagemaker.CfnPipeline.S3LocationProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnPipeline » S3LocationProperty |
The location of the pipeline definition stored in Amazon S3.
If specified, SageMaker will retrieve the pipeline definition from this location.
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 s3LocationProperty: sagemaker.CfnPipeline.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
// the properties below are optional
eTag: 'eTag',
version: 'version',
};
Properties
Name | Type | Description |
---|---|---|
bucket | string | The name of the S3 bucket. |
key | string | The object key (or key name) which uniquely identifies the object in an S3 bucket. |
e | string | A file checksum of the pipeline definition file. |
version? | string | The version ID of the pipeline definition file. |
bucket
Type:
string
The name of the S3 bucket.
key
Type:
string
The object key (or key name) which uniquely identifies the object in an S3 bucket.
eTag?
Type:
string
(optional)
A file checksum of the pipeline definition file.
version?
Type:
string
(optional)
The version ID of the pipeline definition file.
If not specified, Amazon SageMaker will retrieve the latest version.