Class CfnConfiguredTable.SnowflakeTableSchemaProperty
The schema of a Snowflake table.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.SnowflakeTableSchemaProperty : CfnConfiguredTable.ISnowflakeTableSchemaProperty
Syntax (vb)
Public Class CfnConfiguredTable.SnowflakeTableSchemaProperty Implements CfnConfiguredTable.ISnowflakeTableSchemaProperty
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_cleanrooms;
var snowflakeTableSchemaProperty = new SnowflakeTableSchemaProperty {
V1 = new [] { new SnowflakeTableSchemaV1Property {
ColumnName = "columnName",
ColumnType = "columnType"
} }
};
Synopsis
Constructors
SnowflakeTableSchemaProperty() | The schema of a Snowflake table. |
Properties
V1 | The schema of a Snowflake table. |
Constructors
SnowflakeTableSchemaProperty()
The schema of a Snowflake table.
public SnowflakeTableSchemaProperty()
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_cleanrooms;
var snowflakeTableSchemaProperty = new SnowflakeTableSchemaProperty {
V1 = new [] { new SnowflakeTableSchemaV1Property {
ColumnName = "columnName",
ColumnType = "columnType"
} }
};
Properties
V1
The schema of a Snowflake table.
public object V1 { get; set; }