interface CfnApplicationVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins.CfnApplicationVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticbeanstalk/mixins#CfnApplicationVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticbeanstalk.mixins.CfnApplicationVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticbeanstalk.mixins.CfnApplicationVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticbeanstalk » mixins » CfnApplicationVersionMixinProps |
Properties for CfnApplicationVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticbeanstalk_mixins } from '@aws-cdk/mixins-preview/aws-elasticbeanstalk';
const cfnApplicationVersionMixinProps: elasticbeanstalk_mixins.CfnApplicationVersionMixinProps = {
applicationName: 'applicationName',
description: 'description',
sourceBundle: {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The name of the Elastic Beanstalk application that is associated with this application version. |
| description? | string | A description of this application version. |
| source | IResolvable | Source | The Amazon S3 bucket and key that identify the location of the source bundle for this version. |
applicationName?
Type:
string
(optional)
The name of the Elastic Beanstalk application that is associated with this application version.
description?
Type:
string
(optional)
A description of this application version.
sourceBundle?
Type:
IResolvable | Source
(optional)
The Amazon S3 bucket and key that identify the location of the source bundle for this version.
The Amazon S3 bucket must be in the same region as the environment.

.NET
Go
Java
Python
TypeScript