interface CfnReplayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.CfnReplayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnReplayProps |
Java | software.amazon.awscdk.services.events.CfnReplayProps |
Python | aws_cdk.aws_events.CfnReplayProps |
TypeScript | aws-cdk-lib » aws_events » CfnReplayProps |
Properties for defining a CfnReplay.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const cfnReplayProps: events.CfnReplayProps = {
destination: {
arn: 'arn',
},
eventEndTime: 'eventEndTime',
eventSourceArn: 'eventSourceArn',
eventStartTime: 'eventStartTime',
replayName: 'replayName',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Destination | A ReplayDestination object that includes details about the destination for the replay. |
| event | string | A time stamp for the time to stop replaying events. |
| event | string | The ARN of the archive to replay events from. |
| event | string | A time stamp for the time to start replaying events. |
| replay | string | The name of the replay. |
destination
Type:
IResolvable | Destination
A ReplayDestination object that includes details about the destination for the replay.
eventEndTime
Type:
string
A time stamp for the time to stop replaying events.
eventSourceArn
Type:
string
The ARN of the archive to replay events from.
eventStartTime
Type:
string
A time stamp for the time to start replaying events.
replayName
Type:
string
The name of the replay.

.NET
Go
Java
Python
TypeScript