interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnPipelinePropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnPipelinePropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnPipelinePropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnPipelinePropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnPipelinePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const s3LocationProperty: sagemaker_mixins.CfnPipelinePropsMixin.S3LocationProperty = {
bucket: 'bucket',
eTag: 'eTag',
key: 'key',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket. |
| e | string | A file checksum of the pipeline definition file. |
| key? | string | The object key (or key name) which uniquely identifies the object in an S3 bucket. |
| version? | string | The version ID of the pipeline definition file. |
bucket?
Type:
string
(optional)
The name of the S3 bucket.
eTag?
Type:
string
(optional)
A file checksum of the pipeline definition file.
key?
Type:
string
(optional)
The object key (or key name) which uniquely identifies the object in an S3 bucket.
version?
Type:
string
(optional)
The version ID of the pipeline definition file.
If not specified, Amazon SageMaker will retrieve the latest version.

.NET
Go
Java
Python
TypeScript