Interface KinesisStreamPutRecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,ScheduleTargetBaseProps
- All Known Implementing Classes:
KinesisStreamPutRecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:46.924Z")
@Stability(Stable)
public interface KinesisStreamPutRecordProps
extends software.amazon.jsii.JsiiSerializable, ScheduleTargetBaseProps
Properties for a Kinesis Data Streams Target.
Example:
import software.amazon.awscdk.services.kinesis.*;
Stream stream = new Stream(this, "MyStream");
Schedule.Builder.create(this, "Schedule")
.schedule(ScheduleExpression.rate(Duration.minutes(60)))
.target(KinesisStreamPutRecord.Builder.create(stream)
.partitionKey("key")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forKinesisStreamPutRecordPropsstatic final classAn implementation forKinesisStreamPutRecordProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The shard to which EventBridge Scheduler sends the event.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.scheduler.targets.ScheduleTargetBaseProps
getDeadLetterQueue, getInput, getMaxEventAge, getRetryAttempts, getRole
-
Method Details
-
getPartitionKey
The shard to which EventBridge Scheduler sends the event.The length must be between 1 and 256.
- See Also:
-
builder
-