Class CfnConfiguredTable.SnowflakeTableSchemaV1Property
The Snowflake table schema.
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.SnowflakeTableSchemaV1Property : CfnConfiguredTable.ISnowflakeTableSchemaV1Property
Syntax (vb)
Public Class CfnConfiguredTable.SnowflakeTableSchemaV1Property Implements CfnConfiguredTable.ISnowflakeTableSchemaV1Property
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 snowflakeTableSchemaV1Property = new SnowflakeTableSchemaV1Property {
ColumnName = "columnName",
ColumnType = "columnType"
};
Synopsis
Constructors
SnowflakeTableSchemaV1Property() | The Snowflake table schema. |
Properties
ColumnName | The column name. |
ColumnType | The column's data type. |
Constructors
SnowflakeTableSchemaV1Property()
The Snowflake table schema.
public SnowflakeTableSchemaV1Property()
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 snowflakeTableSchemaV1Property = new SnowflakeTableSchemaV1Property {
ColumnName = "columnName",
ColumnType = "columnType"
};
Properties
ColumnName
The column name.
public string ColumnName { get; set; }
Property Value
Remarks
ColumnType
The column's data type.
public string ColumnType { get; set; }
Property Value
Remarks
Supported data types: ARRAY
, BIGINT
, BOOLEAN
, CHAR
, DATE
, DECIMAL
, DOUBLE
, DOUBLE PRECISION
, FLOAT
, FLOAT4
, INT
, INTEGER
, MAP
, NUMERIC
, NUMBER
, REAL
, SMALLINT
, STRING
, TIMESTAMP
, TIMESTAMP_LTZ
, TIMESTAMP_NTZ
, DATETIME
, TINYINT
, VARCHAR
, TEXT
, CHARACTER
.