Class: Aws::CodePipeline::Types::ExecutionTrigger
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ExecutionTrigger
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The interaction or event that started a pipeline execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#trigger_detail ⇒ String
Detail related to the event that started a pipeline execution, such as the webhook ARN of the webhook that triggered the pipeline execution or the user ARN for a user-initiated ‘start-pipeline-execution` CLI command.
-
#trigger_type ⇒ String
The type of change-detection method, command, or user interaction that started a pipeline execution.
Instance Attribute Details
#trigger_detail ⇒ String
Detail related to the event that started a pipeline execution, such as the webhook ARN of the webhook that triggered the pipeline execution or the user ARN for a user-initiated ‘start-pipeline-execution` CLI command.
1819 1820 1821 1822 1823 1824 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1819 class ExecutionTrigger < Struct.new( :trigger_type, :trigger_detail) SENSITIVE = [] include Aws::Structure end |
#trigger_type ⇒ String
The type of change-detection method, command, or user interaction that started a pipeline execution.
1819 1820 1821 1822 1823 1824 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1819 class ExecutionTrigger < Struct.new( :trigger_type, :trigger_detail) SENSITIVE = [] include Aws::Structure end |