RouteCalculatorReference

class aws_cdk.aws_location.RouteCalculatorReference(*, calculator_name, route_calculator_arn)

Bases: object

A reference to a RouteCalculator resource.

Parameters:
  • calculator_name (str) – The CalculatorName of the RouteCalculator resource.

  • route_calculator_arn (str) – The ARN of the RouteCalculator resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_location as location

route_calculator_reference = location.RouteCalculatorReference(
    calculator_name="calculatorName",
    route_calculator_arn="routeCalculatorArn"
)

Attributes

calculator_name

The CalculatorName of the RouteCalculator resource.

route_calculator_arn

The ARN of the RouteCalculator resource.