Interface CfnTrackerConsumerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrackerConsumerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:45.881Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrackerConsumerProps
static final class
An 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.Builder
ofCfnTrackerConsumerProps
-