java.lang.Object
java.lang.Enum<CodeCommitTrigger>
software.amazon.awscdk.services.codepipeline.actions.CodeCommitTrigger
All Implemented Interfaces:
Serializable, Comparable<CodeCommitTrigger>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.512Z") @Stability(Stable) public enum CodeCommitTrigger extends Enum<CodeCommitTrigger>
How should the CodeCommit Action detect changes.

This is the type of the CodeCommitSourceAction.trigger property.

Example:

 // Source stage: read from repository
 Repository repo = Repository.Builder.create(stack, "TemplateRepo")
         .repositoryName("template-repo")
         .build();
 Artifact sourceOutput = new Artifact("SourceArtifact");
 CodeCommitSourceAction source = CodeCommitSourceAction.Builder.create()
         .actionName("Source")
         .repository(repo)
         .output(sourceOutput)
         .trigger(CodeCommitTrigger.POLL)
         .build();
 Map<String, Object> sourceStage = Map.of(
         "stageName", "Source",
         "actions", List.of(source));
 // Deployment stage: create and deploy changeset with manual approval
 String stackName = "OurStack";
 String changeSetName = "StagedChangeSet";
 Map<String, Object> prodStage = Map.of(
         "stageName", "Deploy",
         "actions", List.of(
             CloudFormationCreateReplaceChangeSetAction.Builder.create()
                     .actionName("PrepareChanges")
                     .stackName(stackName)
                     .changeSetName(changeSetName)
                     .adminPermissions(true)
                     .templatePath(sourceOutput.atPath("template.yaml"))
                     .runOrder(1)
                     .build(),
             ManualApprovalAction.Builder.create()
                     .actionName("ApproveChanges")
                     .runOrder(2)
                     .build(),
             CloudFormationExecuteChangeSetAction.Builder.create()
                     .actionName("ExecuteChanges")
                     .stackName(stackName)
                     .changeSetName(changeSetName)
                     .runOrder(3)
                     .build()));
 Pipeline.Builder.create(stack, "Pipeline")
         .crossAccountKeys(true)
         .stages(List.of(sourceStage, prodStage))
         .build();
 
  • Enum Constant Details

    • NONE

      @Stability(Stable) public static final CodeCommitTrigger NONE
      The Action will never detect changes - the Pipeline it's part of will only begin a run when explicitly started.
    • POLL

      @Stability(Stable) public static final CodeCommitTrigger POLL
      CodePipeline will poll the repository to detect changes.
    • EVENTS

      @Stability(Stable) public static final CodeCommitTrigger EVENTS
      CodePipeline will use CloudWatch Events to be notified of changes.

      This is the default method of detecting changes.

  • Method Details

    • values

      public static CodeCommitTrigger[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CodeCommitTrigger valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null