Show / Hide Table of Contents

Class CfnTrainingDataset.DatasetInputConfigProperty

Defines the Glue data source and schema mapping information.

Inheritance
object
CfnTrainingDataset.DatasetInputConfigProperty
Implements
CfnTrainingDataset.IDatasetInputConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasetinputconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasetinputconfig.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasetinputconfig.html#cfn-cleanroomsml-trainingdataset-datasetinputconfig-datasource

Type union: either IResolvable or CfnTrainingDataset.IDataSourceProperty

Schema

The schema information for the training data.

public object Schema { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasetinputconfig.html#cfn-cleanroomsml-trainingdataset-datasetinputconfig-schema

Type union: either IResolvable or (either IResolvable or CfnTrainingDataset.IColumnSchemaProperty)[]

Implements

CfnTrainingDataset.IDatasetInputConfigProperty
Back to top Generated by DocFX