interface TimestreamTimestampProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.TimestreamTimestampProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_TimestreamTimestampProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.TimestreamTimestampProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.TimestreamTimestampProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » TimestreamTimestampProperty |
The value to use for the entry's timestamp.
If blank, the time that the entry was processed is used.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const timestreamTimestampProperty: iot_mixins.CfnTopicRulePropsMixin.TimestreamTimestampProperty = {
unit: 'unit',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | The precision of the timestamp value that results from the expression described in value . |
| value? | string | An expression that returns a long epoch time value. |
unit?
Type:
string
(optional)
The precision of the timestamp value that results from the expression described in value .
value?
Type:
string
(optional)
An expression that returns a long epoch time value.

.NET
Go
Java
Python
TypeScript