interface TrackerConsumerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Location.TrackerConsumerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslocation#TrackerConsumerReference |
Java | software.amazon.awscdk.interfaces.location.TrackerConsumerReference |
Python | aws_cdk.interfaces.aws_location.TrackerConsumerReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_location } from 'aws-cdk-lib/interfaces';
const trackerConsumerReference: interfaces_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