Class CfnTrainingDataset.DatasetInputConfigProperty
Defines the Glue data source and schema mapping information.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CleanRoomsML
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTrainingDataset.DatasetInputConfigProperty : CfnTrainingDataset.IDatasetInputConfigProperty
Syntax (vb)
Public Class CfnTrainingDataset.DatasetInputConfigProperty Implements CfnTrainingDataset.IDatasetInputConfigProperty
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.CleanRoomsML;
var datasetInputConfigProperty = new DatasetInputConfigProperty {
DataSource = new DataSourceProperty {
GlueDataSource = new GlueDataSourceProperty {
DatabaseName = "databaseName",
TableName = "tableName",
// the properties below are optional
CatalogId = "catalogId"
}
},
Schema = new [] { new ColumnSchemaProperty {
ColumnName = "columnName",
ColumnTypes = new [] { "columnTypes" }
} }
};
Synopsis
Constructors
| DatasetInputConfigProperty() | Defines the Glue data source and schema mapping information. |
Properties
| DataSource | A DataSource object that specifies the Glue data source for the training data. |
| Schema | The schema information for the training data. |
Constructors
DatasetInputConfigProperty()
Defines the Glue data source and schema mapping information.
public DatasetInputConfigProperty()
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.CleanRoomsML;
var datasetInputConfigProperty = new DatasetInputConfigProperty {
DataSource = new DataSourceProperty {
GlueDataSource = new GlueDataSourceProperty {
DatabaseName = "databaseName",
TableName = "tableName",
// the properties below are optional
CatalogId = "catalogId"
}
},
Schema = new [] { new ColumnSchemaProperty {
ColumnName = "columnName",
ColumnTypes = new [] { "columnTypes" }
} }
};
Properties
DataSource
A DataSource object that specifies the Glue data source for the training data.
public object DataSource { get; set; }
Property Value
Remarks
Schema
The schema information for the training data.
public object Schema { get; set; }