Class: Aws::DevOpsAgent::Types::TriggerFilterGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::TriggerFilterGroup
- Defined in:
- gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb
Overview
A group of trigger conditions. The group matches when ALL present conditions pass. A group cannot be empty: at least one condition must be present.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#events ⇒ Array<String>
Passes when the webhook event is one of the listed events.
-
#target_branches ⇒ Types::PatternFilter
Passes when the change request target branch matches.
Instance Attribute Details
#events ⇒ Array<String>
Passes when the webhook event is one of the listed events.
6556 6557 6558 6559 6560 6561 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 6556 class TriggerFilterGroup < Struct.new( :events, :target_branches) SENSITIVE = [] include Aws::Structure end |
#target_branches ⇒ Types::PatternFilter
Passes when the change request target branch matches. Applicable to RELEASE_READINESS_REVIEW only.
6556 6557 6558 6559 6560 6561 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 6556 class TriggerFilterGroup < Struct.new( :events, :target_branches) SENSITIVE = [] include Aws::Structure end |