interface TimestampPartitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatastorePropsMixin.TimestampPartitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatastorePropsMixin_TimestampPartitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatastorePropsMixin.TimestampPartitionProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatastorePropsMixin.TimestampPartitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatastorePropsMixin » TimestampPartitionProperty |
A partition dimension defined by a timestamp attribute.
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 timestampPartitionProperty: iotanalytics_mixins.CfnDatastorePropsMixin.TimestampPartitionProperty = {
attributeName: 'attributeName',
timestampFormat: 'timestampFormat',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The attribute name of the partition defined by a timestamp. |
| timestamp | string | The timestamp format of a partition defined by a timestamp. |
attributeName?
Type:
string
(optional)
The attribute name of the partition defined by a timestamp.
timestampFormat?
Type:
string
(optional)
The timestamp format of a partition defined by a timestamp.
The default format is seconds since epoch (January 1, 1970 at midnight UTC time).

.NET
Go
Java
Python
TypeScript