CfnApplicationVersionMixinProps
- class aws_cdk.mixins_preview.aws_elasticbeanstalk.mixins.CfnApplicationVersionMixinProps(*, application_name=None, description=None, source_bundle=None)
Bases:
objectProperties 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:
- 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.
- description
A description of this application version.
- 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.