@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:09.111Z") @Stability(value=Experimental) 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()
(experimental) The message to send to the stream.
|
default String |
getPartitionKeyPath()
(experimental) Partition Key Path for records sent to this stream.
|
@Stability(value=Experimental) @Nullable default RuleTargetInput getMessage()
Must be a valid JSON text passed to the target stream.
Default: - the entire CloudWatch event
@Stability(value=Experimental) @Nullable default String getPartitionKeyPath()
Default: - eventId as the partition key
@Stability(value=Experimental) static KinesisStreamProps.Builder builder()
KinesisStreamProps.Builder of KinesisStreamPropsCopyright © 2022. All rights reserved.