interface PartitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatastorePropsMixin.PartitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatastorePropsMixin_PartitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatastorePropsMixin.PartitionProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatastorePropsMixin.PartitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatastorePropsMixin » 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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const partitionProperty: iotanalytics_mixins.CfnDatastorePropsMixin.PartitionProperty = {
attributeName: 'attributeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The name of the attribute that defines a partition dimension. |
attributeName?
Type:
string
(optional)
The name of the attribute that defines a partition dimension.

.NET
Go
Java
Python
TypeScript