Class: Aws::EventBridge::Types::ListRulesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListRulesRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ListRulesRequest data as a hash:
{
name_prefix: "RuleName",
event_bus_name: "EventBusNameOrArn",
next_token: "NextToken",
limit: 1,
}
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 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.
3712 3713 3714 3715 3716 3717 3718 3719 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3712 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.
3712 3713 3714 3715 3716 3717 3718 3719 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3712 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.
3712 3713 3714 3715 3716 3717 3718 3719 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3712 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 to retrieve the next set of results.
3712 3713 3714 3715 3716 3717 3718 3719 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3712 class ListRulesRequest < Struct.new( :name_prefix, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |