interface SourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticBeanstalk.CfnConfigurationTemplate.SourceConfigurationProperty |
Java | software.amazon.awscdk.services.elasticbeanstalk.CfnConfigurationTemplate.SourceConfigurationProperty |
Python | aws_cdk.aws_elasticbeanstalk.CfnConfigurationTemplate.SourceConfigurationProperty |
TypeScript | @aws-cdk/aws-elasticbeanstalk » CfnConfigurationTemplate » SourceConfigurationProperty |
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 * as elasticbeanstalk from '@aws-cdk/aws-elasticbeanstalk';
const sourceConfigurationProperty: elasticbeanstalk.CfnConfigurationTemplate.SourceConfigurationProperty = {
applicationName: 'applicationName',
templateName: 'templateName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The name of the application associated with the configuration. |
| template | string | The name of the configuration template. |
applicationName
Type:
string
The name of the application associated with the configuration.
templateName
Type:
string
The name of the configuration template.

.NET
Java
Python
TypeScript