Interface CfnTopicRule.InfluxDBActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTopicRule.InfluxDBActionProperty.Jsii$Proxy
Enclosing class:
CfnTopicRule

@Stability(Stable) public static interface CfnTopicRule.InfluxDBActionProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot.*;
 InfluxDBActionProperty influxDBActionProperty = InfluxDBActionProperty.builder()
         .databaseName("databaseName")
         .destinationArn("destinationArn")
         .roleArn("roleArn")
         .tableName("tableName")
         // the properties below are optional
         .batchConfig(InfluxDBBatchConfigProperty.builder()
                 .batchAcrossTopics(false)
                 .maxBatchOpenMs(123)
                 .maxBatchSize(123)
                 .maxBatchSizeBytes(123)
                 .build())
         .organization("organization")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .timestampUnit("timestampUnit")
         .build();
 

See Also: