Interface CfnDeploymentGroup.RevisionLocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentGroup.RevisionLocationProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentGroup

@Stability(Stable) public static interface CfnDeploymentGroup.RevisionLocationProperty extends software.amazon.jsii.JsiiSerializable
RevisionLocation is a property that defines the location of the CodeDeploy application revision to deploy.

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.*;
 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();
 

See Also: