Interface CodeStarConnectionsSourceActionProps
- All Superinterfaces:
CommonActionProps
,CommonAwsActionProps
,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
BitBucketSourceActionProps
- All Known Implementing Classes:
BitBucketSourceActionProps.Jsii$Proxy
,CodeStarConnectionsSourceActionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.425Z")
@Stability(Stable)
public interface CodeStarConnectionsSourceActionProps
extends software.amazon.jsii.JsiiSerializable, CommonAwsActionProps
Construction properties for
CodeStarConnectionsSourceAction
.
Example:
Artifact sourceOutput = new Artifact(); CodeStarConnectionsSourceAction sourceAction = CodeStarConnectionsSourceAction.Builder.create() .actionName("BitBucket_Source") .owner("aws") .repo("aws-cdk") .output(sourceOutput) .connectionArn("arn:aws:codestar-connections:us-east-1:123456789012:connection/12345678-abcd-12ab-34cdef5678gh") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCodeStarConnectionsSourceActionProps
static final class
An implementation forCodeStarConnectionsSourceActionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The branch to build.default Boolean
Whether the output should be the contents of the repository (which is the default), or a link that allows CodeBuild to clone the repository before building.The ARN of the CodeStar Connection created in the AWS console that has permissions to access this GitHub or BitBucket repository.The output artifact that this action produces.getOwner()
The owning user or organization of the repository.getRepo()
The name of the repository.default Boolean
Controls automatically starting your pipeline when a new commit is made on the configured repository and branch.Methods inherited from interface software.amazon.awscdk.services.codepipeline.CommonActionProps
getActionName, getRunOrder, getVariablesNamespace
Methods inherited from interface software.amazon.awscdk.services.codepipeline.CommonAwsActionProps
getRole
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionArn
The ARN of the CodeStar Connection created in the AWS console that has permissions to access this GitHub or BitBucket repository.Example:
"arn:aws:codestar-connections:us-east-1:123456789012:connection/12345678-abcd-12ab-34cdef5678gh";
-
getOutput
The output artifact that this action produces.Can be used as input for further pipeline actions.
-
getOwner
The owning user or organization of the repository.Example:
"aws";
-
getRepo
The name of the repository.Example:
"aws-cdk";
-
getBranch
The branch to build.Default: 'master'
-
getCodeBuildCloneOutput
Whether the output should be the contents of the repository (which is the default), or a link that allows CodeBuild to clone the repository before building.**Note**: if this option is true, then only CodeBuild actions can use the resulting
output
.Default: false
-
getTriggerOnPush
Controls automatically starting your pipeline when a new commit is made on the configured repository and branch.If unspecified, the default value is true, and the field does not display by default.
Default: true
-
builder
-