Class: Aws::Keyspaces::Types::ColumnDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ColumnDefinition
- Includes:
- Structure
- Defined in:
- 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 '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][1
-
in the *Amazon Keyspaces Developer Guide*.
[1]: docs.aws.amazon.com/keyspaces/latest/devguide/cql.elements.html#cql.data-types
332 333 334 335 336 337 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 332 class ColumnDefinition < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |