interface DataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.DataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_DataSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.DataSourceProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.DataSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » DataSourceProperty |
Describes the location of the channel data.
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 dataSourceProperty: sagemaker_mixins.CfnModelPackagePropsMixin.DataSourceProperty = {
s3DataSource: {
s3DataType: 's3DataType',
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The S3 location of the data source that is associated with a channel. |
s3DataSource?
Type:
IResolvable | S3
(optional)
The S3 location of the data source that is associated with a channel.

.NET
Go
Java
Python
TypeScript