@Stability(value=Stable)
public static interface CfnDeploymentGroup.RevisionLocationProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
RevisionLocationProperty revisionLocationProperty = RevisionLocationProperty.builder()
.gitHubLocation(GitHubLocationProperty.builder()
.commitId("commitId")
.repository("repository")
.build())
.revisionType("revisionType")
.s3Location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
// the properties below are optional
.bundleType("bundleType")
.eTag("eTag")
.version("version")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeploymentGroup.RevisionLocationProperty.Builder
A builder for
CfnDeploymentGroup.RevisionLocationProperty |
static class |
CfnDeploymentGroup.RevisionLocationProperty.Jsii$Proxy
An implementation for
CfnDeploymentGroup.RevisionLocationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeploymentGroup.RevisionLocationProperty.Builder |
builder() |
default Object |
getGitHubLocation()
`CfnDeploymentGroup.RevisionLocationProperty.GitHubLocation`.
|
default String |
getRevisionType()
`CfnDeploymentGroup.RevisionLocationProperty.RevisionType`.
|
default Object |
getS3Location()
`CfnDeploymentGroup.RevisionLocationProperty.S3Location`.
|
@Stability(value=Stable) @Nullable default Object getGitHubLocation()
@Stability(value=Stable) @Nullable default String getRevisionType()
@Stability(value=Stable) @Nullable default Object getS3Location()
@Stability(value=Stable) static CfnDeploymentGroup.RevisionLocationProperty.Builder builder()
Copyright © 2021. All rights reserved.