Interface CfnTable.PartitionKeyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.PartitionKeyProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.PartitionKeyProperty extends software.amazon.jsii.JsiiSerializable
An attribute used in partitioning data in a table.

A dimension key partitions data using the values of the dimension specified by the dimension-name as partition key, while a measure key partitions data using measure names (values of the 'measure_name' column).

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.timestream.*;
 PartitionKeyProperty partitionKeyProperty = PartitionKeyProperty.builder()
         .type("type")
         // the properties below are optional
         .enforcementInRecord("enforcementInRecord")
         .name("name")
         .build();
 

See Also: