Class: Aws::TimestreamWrite::Types::Schema

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#composite_partition_keyArray<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.

Returns:



1430
1431
1432
1433
1434
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1430

class Schema < Struct.new(
  :composite_partition_key)
  SENSITIVE = []
  include Aws::Structure
end