interface SourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins.CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticbeanstalk/mixins#CfnConfigurationTemplatePropsMixin_SourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticbeanstalk.mixins.CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_elasticbeanstalk.mixins.CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticbeanstalk » mixins » CfnConfigurationTemplatePropsMixin » 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 { mixins as elasticbeanstalk_mixins } from '@aws-cdk/mixins-preview/aws-elasticbeanstalk';
const sourceConfigurationProperty: elasticbeanstalk_mixins.CfnConfigurationTemplatePropsMixin.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
(optional)
The name of the application associated with the configuration.
templateName?
Type:
string
(optional)
The name of the configuration template.

.NET
Go
Java
Python
TypeScript