Class: Aws::EventBridge::Types::ListRuleNamesByTargetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListRuleNamesByTargetRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ListRuleNamesByTargetRequest data as a hash:
{
target_arn: "TargetArn", # required
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 rules for.
-
#limit ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the target resource.
Instance Attribute Details
#event_bus_name ⇒ String
The name or ARN of the event bus to list rules for. If you omit this, the default event bus is used.
3655 3656 3657 3658 3659 3660 3661 3662 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3655 class ListRuleNamesByTargetRequest < Struct.new( :target_arn, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of results to return.
3655 3656 3657 3658 3659 3660 3661 3662 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3655 class ListRuleNamesByTargetRequest < Struct.new( :target_arn, :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.
3655 3656 3657 3658 3659 3660 3661 3662 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3655 class ListRuleNamesByTargetRequest < Struct.new( :target_arn, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the target resource.
3655 3656 3657 3658 3659 3660 3661 3662 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3655 class ListRuleNamesByTargetRequest < Struct.new( :target_arn, :event_bus_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |