interface ConfigurationTemplateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticBeanstalk.ConfigurationTemplateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticbeanstalk#ConfigurationTemplateReference |
Java | software.amazon.awscdk.services.elasticbeanstalk.ConfigurationTemplateReference |
Python | aws_cdk.aws_elasticbeanstalk.ConfigurationTemplateReference |
TypeScript | aws-cdk-lib » aws_elasticbeanstalk » ConfigurationTemplateReference |
A reference to a 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-lib';
const configurationTemplateReference: elasticbeanstalk.ConfigurationTemplateReference = {
applicationName: 'applicationName',
templateName: 'templateName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationName of the ConfigurationTemplate resource. |
| template | string | The TemplateName of the ConfigurationTemplate resource. |
applicationName
Type:
string
The ApplicationName of the ConfigurationTemplate resource.
templateName
Type:
string
The TemplateName of the ConfigurationTemplate resource.

.NET
Go
Java
Python
TypeScript