Table of Contents

Class ListRulesRequest

Namespace
Amazon.EventBridge.Model
Assembly
AWSSDK.EventBridge.dll

Container for the parameters to the ListRules operation. Lists your Amazon EventBridge rules. You can either list all the rules or you can provide a prefix to match to the rule names.

The maximum number of results per page for requests is 100.

ListRules does not list the targets of a rule. To see the targets associated with a rule, use ListTargetsByRule.

public class ListRulesRequest : AmazonEventBridgeRequest
Inheritance
ListRulesRequest

Constructors

ListRulesRequest()

public ListRulesRequest()

Properties

EventBusName

Gets and sets the property EventBusName.

The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.

public string EventBusName { get; set; }

Property Value

string

Limit

Gets and sets the property Limit.

The maximum number of results to return.

public int Limit { get; set; }

Property Value

int

NamePrefix

Gets and sets the property NamePrefix.

The prefix matching the rule name.

public string NamePrefix { get; set; }

Property Value

string

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

string