Class: Aws::EventBridge::Types::ListRuleNamesByTargetResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListRuleNamesByTargetResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Indicates whether there are additional results to retrieve.
-
#rule_names ⇒ Array<String>
The names of the rules that can invoke the given target.
Instance Attribute Details
#next_token ⇒ String
Indicates whether there are additional results to retrieve. If there are no more results, the value is null.
3110 3111 3112 3113 3114 3115 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3110 class ListRuleNamesByTargetResponse < Struct.new( :rule_names, :next_token) SENSITIVE = [] include Aws::Structure end |
#rule_names ⇒ Array<String>
The names of the rules that can invoke the given target.
3110 3111 3112 3113 3114 3115 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3110 class ListRuleNamesByTargetResponse < Struct.new( :rule_names, :next_token) SENSITIVE = [] include Aws::Structure end |