Interface CfnTopicRule.FirehoseActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.FirehoseActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action that writes data to an Amazon Kinesis Firehose stream.

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.*;
 FirehoseActionProperty firehoseActionProperty = FirehoseActionProperty.builder()
         .deliveryStreamName("deliveryStreamName")
         .roleArn("roleArn")
         // the properties below are optional
         .batchMode(false)
         .separator("separator")
         .build();
 

See Also: