interface RouteCalculatorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Location.RouteCalculatorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslocation#RouteCalculatorReference |
Java | software.amazon.awscdk.interfaces.location.RouteCalculatorReference |
Python | aws_cdk.interfaces.aws_location.RouteCalculatorReference |
TypeScript | aws-cdk-lib » interfaces » aws_location » RouteCalculatorReference |
A reference to a RouteCalculator resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_location as interfaces_aws_location } from 'aws-cdk-lib/interfaces';
const routeCalculatorReference: interfaces_aws_location.RouteCalculatorReference = {
calculatorName: 'calculatorName',
routeCalculatorArn: 'routeCalculatorArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| calculator | string | The CalculatorName of the RouteCalculator resource. |
| route | string | The ARN of the RouteCalculator resource. |
calculatorName
Type:
string
The CalculatorName of the RouteCalculator resource.
routeCalculatorArn
Type:
string
The ARN of the RouteCalculator resource.

.NET
Go
Java
Python
TypeScript