@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.328Z") @Stability(value=Stable) public interface KinesisStreamProps 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.events.*;
import software.amazon.awscdk.services.events.targets.*;
RuleTargetInput ruleTargetInput;
KinesisStreamProps kinesisStreamProps = KinesisStreamProps.builder()
.message(ruleTargetInput)
.partitionKeyPath("partitionKeyPath")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
KinesisStreamProps.Builder
A builder for
KinesisStreamProps |
static class |
KinesisStreamProps.Jsii$Proxy
An implementation for
KinesisStreamProps |
| Modifier and Type | Method and Description |
|---|---|
static KinesisStreamProps.Builder |
builder() |
default RuleTargetInput |
getMessage()
The message to send to the stream.
|
default String |
getPartitionKeyPath()
Partition Key Path for records sent to this stream.
|
@Stability(value=Stable) @Nullable default RuleTargetInput getMessage()
Must be a valid JSON text passed to the target stream.
Default: - the entire CloudWatch event
@Stability(value=Stable) @Nullable default String getPartitionKeyPath()
Default: - eventId as the partition key
@Stability(value=Stable) static KinesisStreamProps.Builder builder()
KinesisStreamProps.Builder of KinesisStreamPropsCopyright © 2022. All rights reserved.