Class: Aws::Keyspaces::Types::SchemaDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::SchemaDefinition
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
Describes the schema of the table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all_columns ⇒ Array<Types::ColumnDefinition>
The regular columns of the table.
-
#clustering_keys ⇒ Array<Types::ClusteringKey>
The columns that are part of the clustering key of the table.
-
#partition_keys ⇒ Array<Types::PartitionKey>
The columns that are part of the partition key of the table .
-
#static_columns ⇒ Array<Types::StaticColumn>
The columns that have been defined as
STATIC
.
Instance Attribute Details
#all_columns ⇒ Array<Types::ColumnDefinition>
The regular columns of the table.
1736 1737 1738 1739 1740 1741 1742 1743 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1736 class SchemaDefinition < Struct.new( :all_columns, :partition_keys, :clustering_keys, :static_columns) SENSITIVE = [] include Aws::Structure end |
#clustering_keys ⇒ Array<Types::ClusteringKey>
The columns that are part of the clustering key of the table.
1736 1737 1738 1739 1740 1741 1742 1743 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1736 class SchemaDefinition < Struct.new( :all_columns, :partition_keys, :clustering_keys, :static_columns) SENSITIVE = [] include Aws::Structure end |
#partition_keys ⇒ Array<Types::PartitionKey>
The columns that are part of the partition key of the table .
1736 1737 1738 1739 1740 1741 1742 1743 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1736 class SchemaDefinition < Struct.new( :all_columns, :partition_keys, :clustering_keys, :static_columns) SENSITIVE = [] include Aws::Structure end |
#static_columns ⇒ Array<Types::StaticColumn>
The columns that have been defined as STATIC
. Static columns store
values that are shared by all rows in the same partition.
1736 1737 1738 1739 1740 1741 1742 1743 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1736 class SchemaDefinition < Struct.new( :all_columns, :partition_keys, :clustering_keys, :static_columns) SENSITIVE = [] include Aws::Structure end |