interface SourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElasticBeanstalk.CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticbeanstalk#CfnConfigurationTemplatePropsMixin_SourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticbeanstalk.CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticbeanstalk.CfnConfigurationTemplatePropsMixin.SourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticbeanstalk » 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 { aws_elasticbeanstalk as elasticbeanstalk } from '@aws-cdk/cfn-property-mixins';
const sourceConfigurationProperty: elasticbeanstalk.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