interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnPipeline.S3LocationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnPipeline.S3LocationProperty |
Python | aws_cdk.aws_sagemaker.CfnPipeline.S3LocationProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnPipeline » S3LocationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const s3LocationProperty: sagemaker.CfnPipeline.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
// the properties below are optional
eTag: 'eTag',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | CfnPipeline.S3LocationProperty.Bucket. |
| key | string | CfnPipeline.S3LocationProperty.Key. |
| e | string | CfnPipeline.S3LocationProperty.ETag. |
| version? | string | CfnPipeline.S3LocationProperty.Version. |
bucket
Type:
string
CfnPipeline.S3LocationProperty.Bucket.
key
Type:
string
CfnPipeline.S3LocationProperty.Key.
eTag?
Type:
string
(optional)
CfnPipeline.S3LocationProperty.ETag.
version?
Type:
string
(optional)
CfnPipeline.S3LocationProperty.Version.

.NET
Java
Python
TypeScript