interface TrackerConsumerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Location.TrackerConsumerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslocation#TrackerConsumerReference |
Java | software.amazon.awscdk.services.location.TrackerConsumerReference |
Python | aws_cdk.aws_location.TrackerConsumerReference |
TypeScript | aws-cdk-lib » aws_location » TrackerConsumerReference |
A reference to a TrackerConsumer 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 location } from 'aws-cdk-lib';
const trackerConsumerReference: location.TrackerConsumerReference = {
consumerArn: 'consumerArn',
trackerName: 'trackerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| consumer | string | The ConsumerArn of the TrackerConsumer resource. |
| tracker | string | The TrackerName of the TrackerConsumer resource. |
consumerArn
Type:
string
The ConsumerArn of the TrackerConsumer resource.
trackerName
Type:
string
The TrackerName of the TrackerConsumer resource.

.NET
Go
Java
Python
TypeScript