interface InfluxDBActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnTopicRule.InfluxDBActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnTopicRule_InfluxDBActionProperty |
Java | software.amazon.awscdk.services.iot.CfnTopicRule.InfluxDBActionProperty |
Python | aws_cdk.aws_iot.CfnTopicRule.InfluxDBActionProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnTopicRule » InfluxDBActionProperty |
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-lib';
const influxDBActionProperty: iot.CfnTopicRule.InfluxDBActionProperty = {
databaseName: 'databaseName',
destinationArn: 'destinationArn',
roleArn: 'roleArn',
tableName: 'tableName',
// the properties below are optional
batchConfig: {
batchAcrossTopics: false,
maxBatchOpenMs: 123,
maxBatchSize: 123,
maxBatchSizeBytes: 123,
},
organization: 'organization',
tags: {
tagsKey: 'tags',
},
timestampUnit: 'timestampUnit',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | |
| destination | string | |
| role | string | |
| table | string | |
| batch | IResolvable | Influx | |
| organization? | string | |
| tags? | { [string]: string } | |
| timestamp | string |
databaseName
Type:
string
destinationArn
Type:
string
roleArn
Type:
string
tableName
Type:
string
batchConfig?
Type:
IResolvable | Influx
(optional)
organization?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)
timestampUnit?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript