Class CfnTransformJob.DataSourceProperty
Describes the location of the channel data.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransformJob.DataSourceProperty : CfnTransformJob.IDataSourceProperty
Syntax (vb)
Public Class CfnTransformJob.DataSourceProperty Implements CfnTransformJob.IDataSourceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var dataSourceProperty = new DataSourceProperty {
S3DataSource = new S3DataSourceProperty {
S3DataType = "s3DataType",
S3Uri = "s3Uri"
}
};
Synopsis
Constructors
| DataSourceProperty() | Describes the location of the channel data. |
Properties
| S3DataSource | The S3 location of the data source. |
Constructors
DataSourceProperty()
Describes the location of the channel data.
public DataSourceProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var dataSourceProperty = new DataSourceProperty {
S3DataSource = new S3DataSourceProperty {
S3DataType = "s3DataType",
S3Uri = "s3Uri"
}
};
Properties
S3DataSource
The S3 location of the data source.
public object S3DataSource { get; set; }