interface PartitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDatastore.PartitionProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDatastore.PartitionProperty |
Python | aws_cdk.aws_iotanalytics.CfnDatastore.PartitionProperty |
TypeScript | @aws-cdk/aws-iotanalytics » CfnDatastore » PartitionProperty |
A single dimension to partition a data store.
The dimension must be an AttributePartition or a TimestampPartition .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotanalytics from '@aws-cdk/aws-iotanalytics';
const partitionProperty: iotanalytics.CfnDatastore.PartitionProperty = {
attributeName: 'attributeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The name of the attribute that defines a partition dimension. |
attributeName
Type:
string
The name of the attribute that defines a partition dimension.

.NET
Java
Python
TypeScript