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.
9310 9311 9312 9313 9314 9315 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9310 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.
9310 9311 9312 9313 9314 9315 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9310 class SnowflakeTableSchemaV1 < Struct.new( :column_name, :column_type) SENSITIVE = [] include Aws::Structure end |