Class: Aws::TimestreamWrite::Types::Schema
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::Schema
- Defined in:
- gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb
Overview
A Schema specifies the expected data model of the table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#composite_partition_key ⇒ Array<Types::PartitionKey>
A non-empty list of partition keys defining the attributes used to partition the table data.
Instance Attribute Details
#composite_partition_key ⇒ Array<Types::PartitionKey>
A non-empty list of partition keys defining the attributes used to partition the table data. The order of the list determines the partition hierarchy. The name and type of each partition key as well as the partition key order cannot be changed after the table is created. However, the enforcement level of each partition key can be changed.
1432 1433 1434 1435 1436 |
# File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 1432 class Schema < Struct.new( :composite_partition_key) SENSITIVE = [] include Aws::Structure end |