interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins.CfnDeploymentGroupPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodedeploy/mixins#CfnDeploymentGroupPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.codedeploy.mixins.CfnDeploymentGroupPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_codedeploy.mixins.CfnDeploymentGroupPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codedeploy » mixins » CfnDeploymentGroupPropsMixin » S3LocationProperty |
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 { mixins as codedeploy_mixins } from '@aws-cdk/mixins-preview/aws-codedeploy';
const s3LocationProperty: codedeploy_mixins.CfnDeploymentGroupPropsMixin.S3LocationProperty = {
bucket: 'bucket',
bundleType: 'bundleType',
eTag: 'eTag',
key: 'key',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the Amazon S3 bucket where the application revision is stored. |
| bundle | string | The file type of the application revision. Must be one of the following:. |
| e | string | The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision. |
| key? | string | The name of the Amazon S3 object that represents the bundled artifacts for the application revision. |
| version? | string | A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision. |
bucket?
Type:
string
(optional)
The name of the Amazon S3 bucket where the application revision is stored.
bundleType?
Type:
string
(optional)
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.
eTag?
Type:
string
(optional)
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.
key?
Type:
string
(optional)
The name of the Amazon S3 object that represents the bundled artifacts for the application revision.
version?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript