Interface CfnDeploymentGroup.S3LocationProperty

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

@Stability(Stable) public static interface CfnDeploymentGroup.S3LocationProperty extends software.amazon.jsii.JsiiSerializable
S3Location is a property of the CodeDeploy DeploymentGroup Revision property that specifies the location of an application revision that is stored in Amazon Simple Storage Service ( Amazon S3 ).

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.*;
 S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
         .bucket("bucket")
         .key("key")
         // the properties below are optional
         .bundleType("bundleType")
         .eTag("eTag")
         .version("version")
         .build();
 

See Also: