Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetDevicePositionHistoryRequest

import type { GetDevicePositionHistoryRequest } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";
interface GetDevicePositionHistoryRequest {
DeviceId: string;
EndTimeExclusive?: Date | number | null;
NextToken?: string | null;
StartTimeInclusive?: Date | number | null;
TrackerName: string;
}

§Properties

§
DeviceId: string
[src]

The device whose position history you want to retrieve.

§
EndTimeExclusive?: Date | number | null
[src]

Specify the end time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. By default, the value will be the time that the request is made.

Requirement:

  • The time specified for EndTimeExclusive must be after the time for StartTimeInclusive.
§
NextToken?: string | null
[src]

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

§
StartTimeInclusive?: Date | number | null
[src]

Specify the start time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. By default, the value will be 24 hours prior to the time that the request is made.

Requirement:

  • The time specified for StartTimeInclusive must be before EndTimeExclusive.
§
TrackerName: string
[src]

The tracker resource receiving the request for the device position history.