public static interface CfnDeploymentGroup.GitHubLocationProperty
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.codedeploy.*; GitHubLocationProperty gitHubLocationProperty = GitHubLocationProperty.builder() .commitId("commitId") .repository("repository") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDeploymentGroup.GitHubLocationProperty.Builder
A builder for
CfnDeploymentGroup.GitHubLocationProperty |
static class |
CfnDeploymentGroup.GitHubLocationProperty.Jsii$Proxy
An implementation for
CfnDeploymentGroup.GitHubLocationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDeploymentGroup.GitHubLocationProperty.Builder |
builder() |
java.lang.String |
getCommitId()
The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.
|
java.lang.String |
getRepository()
The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.
|
java.lang.String getCommitId()
java.lang.String getRepository()
Specify the value as account/repository
.
static CfnDeploymentGroup.GitHubLocationProperty.Builder builder()