interface AssetPropertyTimestampProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnTopicRulePropsMixin_AssetPropertyTimestampProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnTopicRulePropsMixin.AssetPropertyTimestampProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const assetPropertyTimestampProperty: iot.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