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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRule.KinesisActionPropertystatic final classAn implementation forCfnTopicRule.KinesisActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
The ARN of the IAM role that grants access to the Amazon Kinesis stream.- See Also:
-
getStreamName
The name of the Amazon Kinesis stream.- See Also:
-
getPartitionKey
The partition key.- See Also:
-
builder
-