interface CfnTrackerConsumerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Location.CfnTrackerConsumerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslocation#CfnTrackerConsumerMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.location.CfnTrackerConsumerMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_location.CfnTrackerConsumerMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_location » CfnTrackerConsumerMixinProps |
Properties for CfnTrackerConsumerPropsMixin.
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/cfn-property-mixins';
const cfnTrackerConsumerMixinProps: location.CfnTrackerConsumerMixinProps = {
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
(optional)
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
(optional)
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.

.NET
Go
Java
Python
TypeScript