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

Class: Aws::EventBridge::Types::ListReplaysRequest

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

Overview

Note:

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

{
  name_prefix: "ReplayName",
  state: "STARTING", # accepts STARTING, RUNNING, CANCELLING, COMPLETED, CANCELLED, FAILED
  event_source_arn: "Arn",
  next_token: "NextToken",
  limit: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#event_source_arnString

The ARN of the event source associated with the replay.

Returns:

  • (String)

    The ARN of the event source associated with the replay.

#limitInteger

The maximum number of replays to retrieve.

Returns:

  • (Integer)

    The maximum number of replays to retrieve.

#name_prefixString

A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.

Returns:

  • (String)

    A name prefix to filter the replays returned.

#next_tokenString

The token returned by a previous call to retrieve the next set of results.

Returns:

  • (String)

    The token returned by a previous call to retrieve the next set of results.

#stateString

The state of the replay.

Possible values:

  • STARTING
  • RUNNING
  • CANCELLING
  • COMPLETED
  • CANCELLED
  • FAILED

Returns:

  • (String)

    The state of the replay.