interface TrackerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Location.TrackerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslocation#TrackerReference |
Java | software.amazon.awscdk.interfaces.location.TrackerReference |
Python | aws_cdk.interfaces.aws_location.TrackerReference |
TypeScript | aws-cdk-lib » interfaces » aws_location » TrackerReference |
A reference to a Tracker resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_location as interfaces_location } from 'aws-cdk-lib/interfaces';
const trackerReference: interfaces_location.TrackerReference = {
trackerArn: 'trackerArn',
trackerName: 'trackerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| tracker | string | The ARN of the Tracker resource. |
| tracker | string | The TrackerName of the Tracker resource. |
trackerArn
Type:
string
The ARN of the Tracker resource.
trackerName
Type:
string
The TrackerName of the Tracker resource.

.NET
Go
Java
Python
TypeScript