Interface CfnTopicRule.KinesisActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.KinesisActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action to write data to an Amazon Kinesis 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.*;
 KinesisActionProperty kinesisActionProperty = KinesisActionProperty.builder()
         .roleArn("roleArn")
         .streamName("streamName")
         // the properties below are optional
         .partitionKey("partitionKey")
         .build();
 

See Also: