Interface CfnTopicRulePropsMixin.KinesisActionProperty

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

@Stability(Stable) public static interface CfnTopicRulePropsMixin.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.cfnpropertymixins.services.iot.*;
 KinesisActionProperty kinesisActionProperty = KinesisActionProperty.builder()
         .partitionKey("partitionKey")
         .roleArn("roleArn")
         .streamName("streamName")
         .build();
 

See Also: