Class: Aws::Keyspaces::Types::ColumnDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ColumnDefinition
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
The names and data types of regular columns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the column.
-
#type ⇒ String
The data type of the column.
Instance Attribute Details
#name ⇒ String
The name of the column.
332 333 334 335 336 337 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 332 class ColumnDefinition < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the column. For a list of available data types, see Data types in the Amazon Keyspaces Developer Guide.
332 333 334 335 336 337 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 332 class ColumnDefinition < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |