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