Interface CfnDatastore.DatastorePartitionsProperty

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

@Stability(Stable) public static interface CfnDatastore.DatastorePartitionsProperty extends software.amazon.jsii.JsiiSerializable
Information about the partition dimensions in a data store.

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

See Also: