interface AssetPropertyTimestampProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_AssetPropertyTimestampProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » AssetPropertyTimestampProperty |
An asset property timestamp entry containing the following information.
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 assetPropertyTimestampProperty: iot_mixins.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty = {
offsetInNanos: 'offsetInNanos',
timeInSeconds: 'timeInSeconds',
};
Properties
| Name | Type | Description |
|---|---|---|
| offset | string | Optional. |
| time | string | A string that contains the time in seconds since epoch. |
offsetInNanos?
Type:
string
(optional)
Optional.
A string that contains the nanosecond time offset. Accepts substitution templates.
timeInSeconds?
Type:
string
(optional)
A string that contains the time in seconds since epoch.
Accepts substitution templates.

.NET
Go
Java
Python
TypeScript