TrackerArgs

data class TrackerArgs(val description: Output<String>? = null, val kmsKeyId: Output<String>? = null, val positionFiltering: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val trackerName: Output<String>? = null) : ConvertibleToJava<TrackerArgs>

Provides a Location Service Tracker.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.location.Tracker;
import com.pulumi.aws.location.TrackerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Tracker("example", TrackerArgs.builder()
.trackerName("example")
.build());
}
}

Import

aws_location_tracker resources can be imported using the tracker name, e.g.

$ pulumi import aws:location/tracker:Tracker example example

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, kmsKeyId: Output<String>? = null, positionFiltering: Output<String>? = null, tags: Output<Map<String, String>>? = null, trackerName: Output<String>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

The optional description for the tracker resource.

Link copied to clipboard
val kmsKeyId: Output<String>? = null

A key identifier for an AWS KMS customer managed key assigned to the Amazon Location resource.

Link copied to clipboard
val positionFiltering: Output<String>? = null

The position filtering method of the tracker resource. Valid values: TimeBased, DistanceBased, AccuracyBased. Default: TimeBased.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value tags for the tracker. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val trackerName: Output<String>? = null

The name of the tracker resource. The following arguments are optional:

Functions

Link copied to clipboard
open override fun toJava(): TrackerArgs