GeofenceCollectionReference

class aws_cdk.aws_location.GeofenceCollectionReference(*, collection_name, geofence_collection_arn)

Bases: object

A reference to a GeofenceCollection resource.

Parameters:
  • collection_name (str) – The CollectionName of the GeofenceCollection resource.

  • geofence_collection_arn (str) – The ARN of the GeofenceCollection 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

geofence_collection_reference = location.GeofenceCollectionReference(
    collection_name="collectionName",
    geofence_collection_arn="geofenceCollectionArn"
)

Attributes

collection_name

The CollectionName of the GeofenceCollection resource.

geofence_collection_arn

The ARN of the GeofenceCollection resource.