Class: Aws::CleanRooms::Types::SnowflakeTableSchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::SnowflakeTableSchema
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
SnowflakeTableSchema is a union - when making an API calls you must set exactly one of the members.
Note:
SnowflakeTableSchema is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SnowflakeTableSchema corresponding to the set member.
The schema of a Snowflake table.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#v1 ⇒ Array<Types::SnowflakeTableSchemaV1>
The schema of a Snowflake table.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
7206 7207 7208 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7206 def unknown @unknown end |
#v1 ⇒ Array<Types::SnowflakeTableSchemaV1>
The schema of a Snowflake table.
7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7206 class SnowflakeTableSchema < Struct.new( :v1, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class V1 < SnowflakeTableSchema; end class Unknown < SnowflakeTableSchema; end end |