Interface CfnTrackerConsumerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrackerConsumerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.123Z")
@Stability(Stable)
public interface CfnTrackerConsumerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTrackerConsumer.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.location.*;
CfnTrackerConsumerProps cfnTrackerConsumerProps = CfnTrackerConsumerProps.builder()
.consumerArn("consumerArn")
.trackerName("trackerName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrackerConsumerPropsstatic final classAn implementation forCfnTrackerConsumerProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource.The name for the tracker resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConsumerArn
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
- See Also:
- Format example:
-
getTrackerName
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 Also:
-
builder
- Returns:
- a
CfnTrackerConsumerProps.BuilderofCfnTrackerConsumerProps
-