@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
85 lines (84 loc) • 4.39 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Definition of AWS::Location::Tracker Resource Type
*/
export declare function getTracker(args: GetTrackerArgs, opts?: pulumi.InvokeOptions): Promise<GetTrackerResult>;
export interface GetTrackerArgs {
/**
* 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` .
*/
trackerName: string;
}
export interface GetTrackerResult {
/**
* The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all AWS .
*
* - Format example: `arn:aws:geo:region:account-id:tracker/ExampleTracker`
*/
readonly arn?: string;
/**
* The timestamp for when the tracker resource was created in [ISO 8601](https://docs.aws.amazon.com/https://www.iso.org/iso-8601-date-and-time-format.html) format: `YYYY-MM-DDThh:mm:ss.sssZ` .
*/
readonly createTime?: string;
/**
* An optional description for the tracker resource.
*/
readonly description?: string;
readonly eventBridgeEnabled?: boolean;
readonly kmsKeyEnableGeospatialQueries?: boolean;
/**
* Specifies the position filtering for the tracker resource.
*
* Valid values:
*
* - `TimeBased` - Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID.
* - `DistanceBased` - If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this area are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map.
* - `AccuracyBased` - If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This can reduce the effects of GPS noise when displaying device trajectories on a map, and can help control your costs by reducing the number of geofence evaluations.
*
* This field is optional. If not specified, the default value is `TimeBased` .
*/
readonly positionFiltering?: enums.location.TrackerPositionFiltering;
readonly pricingPlan?: enums.location.TrackerPricingPlan;
/**
* This shape is deprecated since 2022-02-01: Deprecated. No longer allowed.
*/
readonly pricingPlanDataSource?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
/**
* Synonym for `Arn` . The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all AWS .
*
* - Format example: `arn:aws:geo:region:account-id:tracker/ExampleTracker`
*/
readonly trackerArn?: string;
/**
* The timestamp for when the tracker resource was last updated in [ISO 8601](https://docs.aws.amazon.com/https://www.iso.org/iso-8601-date-and-time-format.html) format: `YYYY-MM-DDThh:mm:ss.sssZ` .
*/
readonly updateTime?: string;
}
/**
* Definition of AWS::Location::Tracker Resource Type
*/
export declare function getTrackerOutput(args: GetTrackerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTrackerResult>;
export interface GetTrackerOutputArgs {
/**
* 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` .
*/
trackerName: pulumi.Input<string>;
}