Class BitBucketSourceAction

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.codepipeline.actions.BitBucketSourceAction
All Implemented Interfaces:
IAction, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.343Z") @Stability(Deprecated) @Deprecated public class BitBucketSourceAction extends software.amazon.jsii.JsiiObject implements IAction
Deprecated.
use CodeStarConnectionsSourceAction instead
(deprecated) A CodePipeline source action for BitBucket.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codepipeline.*;
 import software.amazon.awscdk.services.codepipeline.actions.*;
 import software.amazon.awscdk.services.iam.*;
 Artifact artifact;
 Role role;
 BitBucketSourceAction bitBucketSourceAction = BitBucketSourceAction.Builder.create()
         .actionName("actionName")
         .connectionArn("connectionArn")
         .output(artifact)
         .owner("owner")
         .repo("repo")
         // the properties below are optional
         .branch("branch")
         .codeBuildCloneOutput(false)
         .role(role)
         .runOrder(123)
         .triggerOnPush(false)
         .variablesNamespace("variablesNamespace")
         .build();
 

  • Constructor Details

    • BitBucketSourceAction

      protected BitBucketSourceAction(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • BitBucketSourceAction

      protected BitBucketSourceAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • BitBucketSourceAction

      @Stability(Deprecated) @Deprecated public BitBucketSourceAction(@NotNull BitBucketSourceActionProps props)
      Deprecated.
      Parameters:
      props - This parameter is required.
  • Method Details