Class: Aws::CleanRooms::Types::SnowflakeTableSchemaV1
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::SnowflakeTableSchemaV1
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
The Snowflake table schema.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_name ⇒ String
The column name.
-
#column_type ⇒ String
The column’s data type.
Instance Attribute Details
#column_name ⇒ String
The column name.
9098 9099 9100 9101 9102 9103 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9098 class SnowflakeTableSchemaV1 < Struct.new( :column_name, :column_type) SENSITIVE = [] include Aws::Structure end |
#column_type ⇒ String
The column’s data type. 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`.
9098 9099 9100 9101 9102 9103 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9098 class SnowflakeTableSchemaV1 < Struct.new( :column_name, :column_type) SENSITIVE = [] include Aws::Structure end |