interface RouteReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RefactorSpaces.RouteReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrefactorspaces#RouteReference |
Java | software.amazon.awscdk.interfaces.refactorspaces.RouteReference |
Python | aws_cdk.interfaces.aws_refactorspaces.RouteReference |
TypeScript | aws-cdk-lib » interfaces » aws_refactorspaces » RouteReference |
A reference to a Route 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_aws_refactorspaces } from 'aws-cdk-lib/interfaces';
const routeReference: interfaces_aws_refactorspaces.RouteReference = {
applicationIdentifier: 'applicationIdentifier',
environmentIdentifier: 'environmentIdentifier',
routeArn: 'routeArn',
routeIdentifier: 'routeIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationIdentifier of the Route resource. |
| environment | string | The EnvironmentIdentifier of the Route resource. |
| route | string | The ARN of the Route resource. |
| route | string | The RouteIdentifier of the Route resource. |
applicationIdentifier
Type:
string
The ApplicationIdentifier of the Route resource.
environmentIdentifier
Type:
string
The EnvironmentIdentifier of the Route resource.
routeArn
Type:
string
The ARN of the Route resource.
routeIdentifier
Type:
string
The RouteIdentifier of the Route resource.

.NET
Go
Java
Python
TypeScript