@Stability(value=Stable)
public static interface CfnDatastore.DatastorePartitionsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDatastore.DatastorePartitionsProperty.Builder
A builder for
CfnDatastore.DatastorePartitionsProperty |
static class |
CfnDatastore.DatastorePartitionsProperty.Jsii$Proxy
An implementation for
CfnDatastore.DatastorePartitionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDatastore.DatastorePartitionsProperty.Builder |
builder() |
default Object |
getPartitions()
A list of partition dimensions in a data store.
|
@Stability(value=Stable) @Nullable default Object getPartitions()
@Stability(value=Stable) static CfnDatastore.DatastorePartitionsProperty.Builder builder()
Copyright © 2022. All rights reserved.