AWS::Location::TrackerConsumerThe `AWS::Location::TrackerConsumer` resource specifies an association between a geofence collection and a tracker resource. The geofence collection is referred to as the *consumer* of the tracker. This allows the tracker resource to communicate location data to the linked geofence collection. > Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.
import { CfnTrackerConsumer } from 'aws-cdk-lib/aws-location';Or use the module namespace:
import * as location from 'aws-cdk-lib/aws-location';
// location.CfnTrackerConsumerConfiguration passed to the constructor as CfnTrackerConsumerProps.
consumerArnRequiredstringThe Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you need to specify a resource across all AWS . - Format example: `arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer`
trackerNameRequiredstringThe name for the tracker resource. Requirements: - Contain only alphanumeric characters (A-Z, a-z, 0-9) , hyphens (-), periods (.), and underscores (_). - Must be a unique tracker resource name. - No spaces allowed. For example, `ExampleTracker` .
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-locationAWS::Location::TrackerConsumer