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

GetPropertyValueHistoryRequest

import type { GetPropertyValueHistoryRequest } from "https://aws-api.deno.dev/v0.4/services/iottwinmaker.ts?docs=full";
interface GetPropertyValueHistoryRequest {
componentName?: string | null;
componentTypeId?: string | null;
endDateTime?: Date | number | null;
endTime?: string | null;
entityId?: string | null;
interpolation?: InterpolationParameters | null;
maxResults?: number | null;
nextToken?: string | null;
orderByTime?: OrderByTime | null;
propertyFilters?: PropertyFilter[] | null;
selectedProperties: string[];
startDateTime?: Date | number | null;
startTime?: string | null;
workspaceId: string;
}

§Properties

§
componentName?: string | null
[src]

The name of the component.

§
componentTypeId?: string | null
[src]

The ID of the component type.

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

The date and time of the latest property value to return.

§
endTime?: string | null
[src]

The ISO8601 DateTime of the latest property value to return.

For more information about the ISO8601 DateTime format, see the data type PropertyValue.

§
entityId?: string | null
[src]

The ID of the entity.

§
interpolation?: InterpolationParameters | null
[src]

An object that specifies the interpolation type and the interval over which to interpolate data.

§
maxResults?: number | null
[src]

The maximum number of results to return at one time. The default is 25.

Valid Range: Minimum value of 1. Maximum value of 250.

§
nextToken?: string | null
[src]

The string that specifies the next page of results.

§
orderByTime?: OrderByTime | null
[src]

The time direction to use in the result order.

§
propertyFilters?: PropertyFilter[] | null
[src]

A list of objects that filter the property value history request.

§
selectedProperties: string[]
[src]

A list of properties whose value histories the request retrieves.

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

The date and time of the earliest property value to return.

§
startTime?: string | null
[src]

The ISO8601 DateTime of the earliest property value to return.

For more information about the ISO8601 DateTime format, see the data type PropertyValue.

§
workspaceId: string
[src]

The ID of the workspace.