ConfigurationTemplateReference
- class aws_cdk.interfaces.aws_elasticbeanstalk.ConfigurationTemplateReference(*, application_name, template_name)
Bases:
objectA 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.interfaces import aws_elasticbeanstalk as interfaces_aws_elasticbeanstalk configuration_template_reference = interfaces_aws_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.