@Stability(value=Stable)
public static interface CfnDeploymentGroup.DeploymentProperty
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.*;
DeploymentProperty deploymentProperty = DeploymentProperty.builder()
.revision(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())
// the properties below are optional
.description("description")
.ignoreApplicationStopFailures(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeploymentGroup.DeploymentProperty.Builder
A builder for
CfnDeploymentGroup.DeploymentProperty |
static class |
CfnDeploymentGroup.DeploymentProperty.Jsii$Proxy
An implementation for
CfnDeploymentGroup.DeploymentProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeploymentGroup.DeploymentProperty.Builder |
builder() |
default String |
getDescription()
`CfnDeploymentGroup.DeploymentProperty.Description`.
|
default Object |
getIgnoreApplicationStopFailures()
`CfnDeploymentGroup.DeploymentProperty.IgnoreApplicationStopFailures`.
|
Object |
getRevision()
`CfnDeploymentGroup.DeploymentProperty.Revision`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getIgnoreApplicationStopFailures()
@Stability(value=Stable) @NotNull Object getRevision()
@Stability(value=Stable) static CfnDeploymentGroup.DeploymentProperty.Builder builder()
Copyright © 2021. All rights reserved.