Class: Aws::EventBridge::Types::ListReplaysRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListReplaysRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
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, which you can use 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.
3297 3298 3299 3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3297 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.
3297 3298 3299 3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3297 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.
3297 3298 3299 3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3297 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, which you can use to retrieve the next set of results.
The value of ‘nextToken` is a unique pagination token for each page. To retrieve the next page of results, make the call again using the returned token. Keep all other arguments unchanged.
Using an expired pagination token results in an ‘HTTP 400 InvalidToken` error.
3297 3298 3299 3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3297 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.
3297 3298 3299 3300 3301 3302 3303 3304 3305 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3297 class ListReplaysRequest < Struct.new( :name_prefix, :state, :event_source_arn, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |