interface CfnTrackerConsumerProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Location.CfnTrackerConsumerProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslocation#CfnTrackerConsumerProps |
![]() | software.amazon.awscdk.services.location.CfnTrackerConsumerProps |
![]() | aws_cdk.aws_location.CfnTrackerConsumerProps |
![]() | aws-cdk-lib » aws_location » CfnTrackerConsumerProps |
Properties for defining a CfnTrackerConsumer
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_location as location } from 'aws-cdk-lib';
const cfnTrackerConsumerProps: location.CfnTrackerConsumerProps = {
consumerArn: 'consumerArn',
trackerName: 'trackerName',
};
Properties
Name | Type | Description |
---|---|---|
consumer | string | The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. |
tracker | string | The name for the tracker resource. |
consumerArn
Type:
string
The 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
trackerName
Type:
string
The 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
.