ApplicationVersionReference

class aws_cdk.aws_elasticbeanstalk.ApplicationVersionReference(*, application_name, application_version_id)

Bases: object

A reference to a ApplicationVersion resource.

Parameters:
  • application_name (str) – The ApplicationName of the ApplicationVersion resource.

  • application_version_id (str) – The Id of the ApplicationVersion resource.

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 import aws_elasticbeanstalk as elasticbeanstalk

application_version_reference = elasticbeanstalk.ApplicationVersionReference(
    application_name="applicationName",
    application_version_id="applicationVersionId"
)

Attributes

application_name

The ApplicationName of the ApplicationVersion resource.

application_version_id

The Id of the ApplicationVersion resource.