interface TimestreamDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.TimestreamDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_TimestreamDimensionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.TimestreamDimensionProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.TimestreamDimensionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » TimestreamDimensionProperty |
Metadata attributes of the time series that are written in each measure record.
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 timestreamDimensionProperty: iot_mixins.CfnTopicRulePropsMixin.TimestreamDimensionProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The metadata dimension name. |
| value? | string | The value to write in this column of the database record. |
name?
Type:
string
(optional)
The metadata dimension name.
This is the name of the column in the Amazon Timestream database table record.
value?
Type:
string
(optional)
The value to write in this column of the database record.

.NET
Go
Java
Python
TypeScript