Interface CfnDeploymentGroupPropsMixin.S3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeploymentGroupPropsMixin.S3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnDeploymentGroupPropsMixin
@Stability(Stable)
public static interface CfnDeploymentGroupPropsMixin.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.cfnpropertymixins.services.codedeploy.*;
S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
.bucket("bucket")
.bundleType("bundleType")
.eTag("eTag")
.key("key")
.version("version")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeploymentGroupPropsMixin.S3LocationPropertystatic final classAn implementation forCfnDeploymentGroupPropsMixin.S3LocationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Amazon S3 bucket where the application revision is stored.default StringThe file type of the application revision.default StringgetETag()The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.default StringgetKey()The name of the Amazon S3 object that represents the bundled artifacts for the application revision.default StringA specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the Amazon S3 bucket where the application revision is stored.- See Also:
-
getBundleType
The file type of the application revision. Must be one of the following:.- JSON
- tar: A tar archive file.
- tgz: A compressed tar archive file.
- YAML
- zip: A zip archive file.
- See Also:
-
getETag
The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.If the ETag is not specified as an input parameter, ETag validation of the object is skipped.
- See Also:
-
getKey
The name of the Amazon S3 object that represents the bundled artifacts for the application revision.- See Also:
-
getVersion
A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.If the version is not specified, the system uses the most recent version by default.
- See Also:
-
builder
-