CfnReplayProps

class aws_cdk.aws_events.CfnReplayProps(*, destination, event_end_time, event_source_arn, event_start_time, replay_name)

Bases: object

Properties for defining a CfnReplay.

Parameters:
  • destination (Union[IResolvable, DestinationProperty, Dict[str, Any]]) – A ReplayDestination object that includes details about the destination for the replay.

  • event_end_time (str) – A time stamp for the time to stop replaying events.

  • event_source_arn (str) – The ARN of the archive to replay events from.

  • event_start_time (str) – A time stamp for the time to start replaying events.

  • replay_name (str) – The name of the replay.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_events as events

cfn_replay_props = events.CfnReplayProps(
    destination=events.CfnReplay.DestinationProperty(
        arn="arn"
    ),
    event_end_time="eventEndTime",
    event_source_arn="eventSourceArn",
    event_start_time="eventStartTime",
    replay_name="replayName"
)

Attributes

destination

A ReplayDestination object that includes details about the destination for the replay.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html#cfn-events-replay-destination

event_end_time

A time stamp for the time to stop replaying events.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html#cfn-events-replay-eventendtime

event_source_arn

The ARN of the archive to replay events from.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html#cfn-events-replay-eventsourcearn

event_start_time

A time stamp for the time to start replaying events.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html#cfn-events-replay-eventstarttime

replay_name

The name of the replay.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-replay.html#cfn-events-replay-replayname