Interface CfnDatastore.DatastorePartitionProperty

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

@Stability(Stable) public static interface CfnDatastore.DatastorePartitionProperty extends software.amazon.jsii.JsiiSerializable
A single dimension to partition a data store.

The dimension must be an AttributePartition or a TimestampPartition .

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.iotanalytics.*;
 DatastorePartitionProperty datastorePartitionProperty = DatastorePartitionProperty.builder()
         .partition(PartitionProperty.builder()
                 .attributeName("attributeName")
                 .build())
         .timestampPartition(TimestampPartitionProperty.builder()
                 .attributeName("attributeName")
                 // the properties below are optional
                 .timestampFormat("timestampFormat")
                 .build())
         .build();
 

See Also: