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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDatastore.DatastorePartitionsProperty
static final class
An implementation forCfnDatastore.DatastorePartitionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPartitions
A list of partition dimensions in a data store.- See Also:
-
builder
-