interface ApplicationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeDeploy.ApplicationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#ApplicationReference |
Java | software.amazon.awscdk.services.codedeploy.ApplicationReference |
Python | aws_cdk.aws_codedeploy.ApplicationReference |
TypeScript | aws-cdk-lib » aws_codedeploy » 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_codedeploy as codedeploy } from 'aws-cdk-lib';
const applicationReference: codedeploy.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