@Stability(value=Stable)
public static interface CfnDeploymentGroup.GitHubLocationProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getCommitId()
The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.
|
String |
getRepository()
The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.
|
@Stability(value=Stable) @NotNull String getCommitId()
@Stability(value=Stable) @NotNull String getRepository()
Specify the value as account/repository .
@Stability(value=Stable) static CfnDeploymentGroup.GitHubLocationProperty.Builder builder()
Copyright © 2022. All rights reserved.