Class: Aws::DevOpsAgent::Types::TriggerFilterGroup

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#events ⇒ Array<String>

Passes when the webhook event is one of the listed events.

Returns:

  • (Array<String>)


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