Class: Aws::CleanRooms::Types::SnowflakeTableSchemaV1

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cleanrooms/types.rb

Overview

The Snowflake table schema.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The column name.

Returns:

  • (String)


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_typeString

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`.

Returns:

  • (String)


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