interface ApplicationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RefactorSpaces.ApplicationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrefactorspaces#ApplicationReference |
Java | software.amazon.awscdk.interfaces.refactorspaces.ApplicationReference |
Python | aws_cdk.interfaces.aws_refactorspaces.ApplicationReference |
TypeScript | aws-cdk-lib » interfaces » aws_refactorspaces » 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_refactorspaces as interfaces_refactorspaces } from 'aws-cdk-lib/interfaces';
const applicationReference: interfaces_refactorspaces.ApplicationReference = {
applicationArn: 'applicationArn',
applicationIdentifier: 'applicationIdentifier',
environmentIdentifier: 'environmentIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the Application resource. |
| application | string | The ApplicationIdentifier of the Application resource. |
| environment | string | The EnvironmentIdentifier of the Application resource. |
applicationArn
Type:
string
The ARN of the Application resource.
applicationIdentifier
Type:
string
The ApplicationIdentifier of the Application resource.
environmentIdentifier
Type:
string
The EnvironmentIdentifier of the Application resource.

.NET
Go
Java
Python
TypeScript