interface DatastorePartitionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatastorePropsMixin.DatastorePartitionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatastorePropsMixin_DatastorePartitionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatastorePropsMixin.DatastorePartitionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatastorePropsMixin.DatastorePartitionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » CfnDatastorePropsMixin » 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/cfn-property-mixins';
const datastorePartitionsProperty: iotanalytics.CfnDatastorePropsMixin.DatastorePartitionsProperty = {
partitions: [{
partition: {
attributeName: 'attributeName',
},
timestampPartition: {
attributeName: 'attributeName',
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