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

.NET
Go
Java
Python
TypeScript