MapReference

class aws_cdk.aws_location.MapReference(*, map_arn, map_name)

Bases: object

A reference to a Map resource.

Parameters:
  • map_arn (str) – The ARN of the Map resource.

  • map_name (str) – The MapName of the Map 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

map_reference = location.MapReference(
    map_arn="mapArn",
    map_name="mapName"
)

Attributes

map_arn

The ARN of the Map resource.

map_name

The MapName of the Map resource.