ConfigurationTemplateReference

class aws_cdk.aws_elasticbeanstalk.ConfigurationTemplateReference(*, application_name, template_name)

Bases: object

A reference to a ConfigurationTemplate resource.

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

  • template_name (str) – The TemplateName of the ConfigurationTemplate 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

configuration_template_reference = elasticbeanstalk.ConfigurationTemplateReference(
    application_name="applicationName",
    template_name="templateName"
)

Attributes

application_name

The ApplicationName of the ConfigurationTemplate resource.

template_name

The TemplateName of the ConfigurationTemplate resource.