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

.NET
Go
Java
Python
TypeScript