TrackerReference

class aws_cdk.aws_location.TrackerReference(*, tracker_arn, tracker_name)

Bases: object

A reference to a Tracker resource.

Parameters:
  • tracker_arn (str) – The ARN of the Tracker resource.

  • tracker_name (str) – The TrackerName of the Tracker 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

tracker_reference = location.TrackerReference(
    tracker_arn="trackerArn",
    tracker_name="trackerName"
)

Attributes

tracker_arn

The ARN of the Tracker resource.

tracker_name

The TrackerName of the Tracker resource.