Interface CfnReplayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:03.852Z")
@Stability(Stable)
public interface CfnReplayProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnReplay.
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.*;
CfnReplayProps cfnReplayProps = CfnReplayProps.builder()
.destination(DestinationProperty.builder()
.arn("arn")
.build())
.eventEndTime("eventEndTime")
.eventSourceArn("eventSourceArn")
.eventStartTime("eventStartTime")
.replayName("replayName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplayPropsstatic final classAn implementation forCfnReplayProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnReplayProps.Builderbuilder()A ReplayDestination object that includes details about the destination for the replay.A time stamp for the time to stop replaying events.The ARN of the archive to replay events from.A time stamp for the time to start replaying events.The name of the replay.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
A ReplayDestination object that includes details about the destination for the replay.Returns union: either
IResolvableorCfnReplay.DestinationProperty- See Also:
-
getEventEndTime
A time stamp for the time to stop replaying events.- See Also:
-
getEventSourceArn
The ARN of the archive to replay events from.- See Also:
-
getEventStartTime
A time stamp for the time to start replaying events.- See Also:
-
getReplayName
The name of the replay.- See Also:
-
builder
- Returns:
- a
CfnReplayProps.BuilderofCfnReplayProps
-