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

GetAssetPropertyAggregatesRequest

import type { GetAssetPropertyAggregatesRequest } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";
interface GetAssetPropertyAggregatesRequest {
aggregateTypes: AggregateType[];
assetId?: string | null;
endDate: Date | number;
maxResults?: number | null;
nextToken?: string | null;
propertyAlias?: string | null;
propertyId?: string | null;
qualities?: Quality[] | null;
resolution: string;
startDate: Date | number;
timeOrdering?: TimeOrdering | null;
}

§Properties

§
aggregateTypes: AggregateType[]
[src]

The data aggregating function.

§
assetId?: string | null
[src]

The ID of the asset.

§
endDate: Date | number
[src]

The inclusive end of the range from which to query historical data, expressed in seconds in Unix epoch time.

§
maxResults?: number | null
[src]

The maximum number of results to return for each paginated request.

Default: 100

§
nextToken?: string | null
[src]

The token to be used for the next set of paginated results.

§
propertyAlias?: string | null
[src]

The alias that identifies the property, such as an OPC-UA server data stream path (for example, /company/windfarm/3/turbine/7/temperature). For more information, see Mapping industrial data streams to asset properties in the IoT SiteWise User Guide.

§
propertyId?: string | null
[src]

The ID of the asset property.

§
qualities?: Quality[] | null
[src]

The quality by which to filter asset data.

§
resolution: string
[src]

The time interval over which to aggregate data.

§
startDate: Date | number
[src]

The exclusive start of the range from which to query historical data, expressed in seconds in Unix epoch time.

§
timeOrdering?: TimeOrdering | null
[src]

The chronological sorting order of the requested information.

Default: ASCENDING