You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EventBridge::Types::StartReplayRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing StartReplayRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  replay_name: "ReplayName", # required
  description: "ReplayDescription",
  event_source_arn: "Arn", # required
  event_start_time: Time.now, # required
  event_end_time: Time.now, # required
  destination: { # required
    arn: "Arn", # required
    filter_arns: ["Arn"],
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description for the replay to start.

Returns:

  • (String)

    A description for the replay to start.

#destinationTypes::ReplayDestination

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

Returns:

#event_end_timeTime

A time stamp for the time to stop replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

Returns:

  • (Time)

    A time stamp for the time to stop replaying events.

#event_source_arnString

The ARN of the archive to replay events from.

Returns:

  • (String)

    The ARN of the archive to replay events from.

#event_start_timeTime

A time stamp for the time to start replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

Returns:

  • (Time)

    A time stamp for the time to start replaying events.

#replay_nameString

The name of the replay to start.

Returns:

  • (String)

    The name of the replay to start.