Interface BitBucketSourceActionProps

All Superinterfaces:
CodeStarConnectionsSourceActionProps, CommonActionProps, CommonAwsActionProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BitBucketSourceActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.348Z") @Stability(Deprecated) @Deprecated public interface BitBucketSourceActionProps extends software.amazon.jsii.JsiiSerializable, CodeStarConnectionsSourceActionProps
Deprecated.
use CodeStarConnectionsSourceActionProps instead
(deprecated) Construction properties for BitBucketSourceAction.

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;
 BitBucketSourceActionProps bitBucketSourceActionProps = BitBucketSourceActionProps.builder()
         .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();