Class: Aws::EventBridge::Types::ListRulesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListRulesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_bus_name ⇒ String
The name or ARN of the event bus to list the rules for.
-
#limit ⇒ Integer
The maximum number of results to return.
-
#name_prefix ⇒ String
The prefix matching the rule name.
-
#next_token ⇒ String
The token returned by a previous call, which you can use to retrieve the next set of results.
Instance Attribute Details
#event_bus_name ⇒ String
The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.
3421 3422 3423 3424 3425 3426 3427 3428 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3421 class ListRulesRequest < Struct.new( :name_prefix, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of results to return.
3421 3422 3423 3424 3425 3426 3427 3428 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3421 class ListRulesRequest < Struct.new( :name_prefix, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#name_prefix ⇒ String
The prefix matching the rule name.
3421 3422 3423 3424 3425 3426 3427 3428 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3421 class ListRulesRequest < Struct.new( :name_prefix, :event_bus_name, :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.
3421 3422 3423 3424 3425 3426 3427 3428 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3421 class ListRulesRequest < Struct.new( :name_prefix, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |