interface DatastorePartitionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDatastore.DatastorePartitionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDatastore_DatastorePartitionsProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDatastore.DatastorePartitionsProperty |
Python | aws_cdk.aws_iotanalytics.CfnDatastore.DatastorePartitionsProperty |
TypeScript | aws-cdk-lib » aws_iotanalytics » CfnDatastore » DatastorePartitionsProperty |
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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const datastorePartitionsProperty: iotanalytics.CfnDatastore.DatastorePartitionsProperty = {
partitions: [{
partition: {
attributeName: 'attributeName',
},
timestampPartition: {
attributeName: 'attributeName',
// the properties below are optional
timestampFormat: 'timestampFormat',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| partitions? | IResolvable | (IResolvable | Datastore)[] | A list of partition dimensions in a data store. |
partitions?
Type:
IResolvable | (IResolvable | Datastore)[]
(optional)
A list of partition dimensions in a data store.

.NET
Go
Java
Python
TypeScript