Class ListReplaysRequest
- Namespace
- Amazon.EventBridge.Model
- Assembly
- AWSSDK.EventBridge.dll
Container for the parameters to the ListReplays operation. Lists your replays. You can either list all the replays or you can provide a prefix to match to the replay names. Filter parameters are exclusive.
public class ListReplaysRequest : AmazonEventBridgeRequest
- Inheritance
-
ListReplaysRequest
Constructors
ListReplaysRequest()
public ListReplaysRequest()
Properties
EventSourceArn
Gets and sets the property EventSourceArn.
The ARN of the archive from which the events are replayed.
public string EventSourceArn { get; set; }
Property Value
Limit
Gets and sets the property Limit.
The maximum number of replays to retrieve.
public int Limit { get; set; }
Property Value
NamePrefix
Gets and sets the property NamePrefix.
A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.
public string NamePrefix { get; set; }
Property Value
NextToken
Gets and sets the property NextToken.
The token returned by a previous call to retrieve the next set of results.
public string NextToken { get; set; }
Property Value
State
Gets and sets the property State.
The state of the replay.
public ReplayState State { get; set; }