CfnTrackerConsumerMixinProps
- class aws_cdk.mixins_preview.aws_location.mixins.CfnTrackerConsumerMixinProps(*, consumer_arn=None, tracker_name=None)
Bases:
objectProperties for CfnTrackerConsumerPropsMixin.
- Parameters:
consumer_arn (
Optional[str]) – 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/ExampleGeofenceCollectionConsumertracker_name (
Optional[str]) – 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.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_location import mixins as location_mixins cfn_tracker_consumer_mixin_props = location_mixins.CfnTrackerConsumerMixinProps( consumer_arn="consumerArn", tracker_name="trackerName" )
Attributes
- consumer_arn
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
- tracker_name
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.