PlaceIndexReference
- class aws_cdk.aws_location.PlaceIndexReference(*, index_name, place_index_arn)
Bases:
object
A reference to a PlaceIndex resource.
- Parameters:
index_name (
str
) – The IndexName of the PlaceIndex resource.place_index_arn (
str
) – The ARN of the PlaceIndex 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 place_index_reference = location.PlaceIndexReference( index_name="indexName", place_index_arn="placeIndexArn" )
Attributes
- index_name
The IndexName of the PlaceIndex resource.
- place_index_arn
The ARN of the PlaceIndex resource.