interface CfnTrackerConsumerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Location.Mixins.CfnTrackerConsumerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslocation/mixins#CfnTrackerConsumerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.location.mixins.CfnTrackerConsumerMixinProps |
Python | aws_cdk.mixins_preview.aws_location.mixins.CfnTrackerConsumerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_location » mixins » 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 { mixins as location_mixins } from '@aws-cdk/mixins-preview/aws-location';
const cfnTrackerConsumerMixinProps: location_mixins.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