CfnApplicationVersionMixinProps

class aws_cdk.mixins_preview.aws_elasticbeanstalk.mixins.CfnApplicationVersionMixinProps(*, application_name=None, description=None, source_bundle=None)

Bases: object

Properties for CfnApplicationVersionPropsMixin.

Parameters:
  • application_name (Optional[str]) – The name of the Elastic Beanstalk application that is associated with this application version.

  • description (Optional[str]) – A description of this application version.

  • source_bundle (Union[IResolvable, SourceBundleProperty, Dict[str, Any], None]) – The Amazon S3 bucket and key that identify the location of the source bundle for this version. .. epigraph:: The Amazon S3 bucket must be in the same region as the environment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-applicationversion.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_elasticbeanstalk import mixins as elasticbeanstalk_mixins

cfn_application_version_mixin_props = elasticbeanstalk_mixins.CfnApplicationVersionMixinProps(
    application_name="applicationName",
    description="description",
    source_bundle=elasticbeanstalk_mixins.CfnApplicationVersionPropsMixin.SourceBundleProperty(
        s3_bucket="s3Bucket",
        s3_key="s3Key"
    )
)

Attributes

application_name

The name of the Elastic Beanstalk application that is associated with this application version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-applicationversion.html#cfn-elasticbeanstalk-applicationversion-applicationname

description

A description of this application version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-applicationversion.html#cfn-elasticbeanstalk-applicationversion-description

source_bundle

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-applicationversion.html#cfn-elasticbeanstalk-applicationversion-sourcebundle