Interface CfnConfigurationTemplate.SourceConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationTemplate.SourceConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationTemplate

@Stability(Stable) public static interface CfnConfigurationTemplate.SourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Use the SourceConfiguration property type to specify another AWS Elastic Beanstalk configuration template as the base to creating a new AWS::ElasticBeanstalk::ConfigurationTemplate resource in an AWS CloudFormation template.

An AWS Elastic Beanstalk configuration template to base a new one on. You can use it to define a AWS::ElasticBeanstalk::ConfigurationTemplate resource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.elasticbeanstalk.*;
 SourceConfigurationProperty sourceConfigurationProperty = SourceConfigurationProperty.builder()
         .applicationName("applicationName")
         .templateName("templateName")
         .build();