interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnPipelinePropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnPipelinePropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnPipelinePropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnPipelinePropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const s3LocationProperty: sagemaker.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