interface S3DataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTransformJobPropsMixin.S3DataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTransformJobPropsMixin_S3DataSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTransformJobPropsMixin.S3DataSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTransformJobPropsMixin.S3DataSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTransformJobPropsMixin » S3DataSourceProperty |
The S3 location of the data source.
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 s3DataSourceProperty: sagemaker.CfnTransformJobPropsMixin.S3DataSourceProperty = {
s3DataType: 's3DataType',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The data type. |
| s3 | string | The S3 URI. |
s3DataType?
Type:
string
(optional)
The data type.
s3Uri?
Type:
string
(optional)
The S3 URI.

.NET
Go
Java
Python
TypeScript