MapReference
- class aws_cdk.interfaces.aws_location.MapReference(*, map_arn, map_name)
Bases:
objectA 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.interfaces import aws_location as interfaces_aws_location map_reference = interfaces_aws_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.