@Stability(value=Stable)
public static interface CfnTopicRule.KinesisActionProperty
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.services.iot.*;
KinesisActionProperty kinesisActionProperty = KinesisActionProperty.builder()
.roleArn("roleArn")
.streamName("streamName")
// the properties below are optional
.partitionKey("partitionKey")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTopicRule.KinesisActionProperty.Builder
A builder for
CfnTopicRule.KinesisActionProperty |
static class |
CfnTopicRule.KinesisActionProperty.Jsii$Proxy
An implementation for
CfnTopicRule.KinesisActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTopicRule.KinesisActionProperty.Builder |
builder() |
default String |
getPartitionKey()
The partition key.
|
String |
getRoleArn()
The ARN of the IAM role that grants access to the Amazon Kinesis stream.
|
String |
getStreamName()
The name of the Amazon Kinesis stream.
|
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull String getStreamName()
@Stability(value=Stable) @Nullable default String getPartitionKey()
@Stability(value=Stable) static CfnTopicRule.KinesisActionProperty.Builder builder()
Copyright © 2022. All rights reserved.