Class: Aws::EventBridge::Types::ListReplaysRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListReplaysRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ListReplaysRequest data as a hash:
{
name_prefix: "ReplayName",
state: "STARTING", # accepts STARTING, RUNNING, CANCELLING, COMPLETED, CANCELLED, FAILED
event_source_arn: "Arn",
next_token: "NextToken",
limit: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_source_arn ⇒ String
The ARN of the archive from which the events are replayed.
-
#limit ⇒ Integer
The maximum number of replays to retrieve.
-
#name_prefix ⇒ String
A name prefix to filter the replays returned.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
-
#state ⇒ String
The state of the replay.
Instance Attribute Details
#event_source_arn ⇒ String
The ARN of the archive from which the events are replayed.
3596 3597 3598 3599 3600 3601 3602 3603 3604 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3596 class ListReplaysRequest < Struct.new( :name_prefix, :state, :event_source_arn, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of replays to retrieve.
3596 3597 3598 3599 3600 3601 3602 3603 3604 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3596 class ListReplaysRequest < Struct.new( :name_prefix, :state, :event_source_arn, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#name_prefix ⇒ String
A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.
3596 3597 3598 3599 3600 3601 3602 3603 3604 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3596 class ListReplaysRequest < Struct.new( :name_prefix, :state, :event_source_arn, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
3596 3597 3598 3599 3600 3601 3602 3603 3604 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3596 class ListReplaysRequest < Struct.new( :name_prefix, :state, :event_source_arn, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the replay.
3596 3597 3598 3599 3600 3601 3602 3603 3604 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3596 class ListReplaysRequest < Struct.new( :name_prefix, :state, :event_source_arn, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |