Module: AWSCDK::CodePipelineActions::CodeCommitTrigger
- Defined in:
- code_pipeline_actions/code_commit_trigger.rb
Overview
How should the CodeCommit Action detect changes.
This is the type of the CodeCommitSourceAction.trigger property.
Constant Summary collapse
- NONE =
Deprecated.Note:
Default:
The Action will never detect changes - the Pipeline it's part of will only begin a run when explicitly started.
Jsii::Enum.new("aws-cdk-lib.aws_codepipeline_actions.CodeCommitTrigger", "NONE")
- POLL =
Deprecated.Note:
Default:
CodePipeline will poll the repository to detect changes.
Jsii::Enum.new("aws-cdk-lib.aws_codepipeline_actions.CodeCommitTrigger", "POLL")
- EVENTS =
Deprecated.Note:
Default:
CodePipeline will use CloudWatch Events to be notified of changes.
This is the default method of detecting changes.
Jsii::Enum.new("aws-cdk-lib.aws_codepipeline_actions.CodeCommitTrigger", "EVENTS")