Interface CfnTopicRulePropsMixin.InfluxDBActionProperty

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

@Stability(Stable) public static interface CfnTopicRulePropsMixin.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.cfnpropertymixins.services.iot.*;
 InfluxDBActionProperty influxDBActionProperty = InfluxDBActionProperty.builder()
         .batchConfig(InfluxDBBatchConfigProperty.builder()
                 .batchAcrossTopics(false)
                 .maxBatchOpenMs(123)
                 .maxBatchSize(123)
                 .maxBatchSizeBytes(123)
                 .build())
         .databaseName("databaseName")
         .destinationArn("destinationArn")
         .organization("organization")
         .roleArn("roleArn")
         .tableName("tableName")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .timestampUnit("timestampUnit")
         .build();
 

See Also: