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

ListDevicesRequest

import type { ListDevicesRequest } from "https://aws-api.deno.dev/v0.4/services/panorama.ts?docs=full";
interface ListDevicesRequest {
DeviceAggregatedStatusFilter?: DeviceAggregatedStatus | null;
MaxResults?: number | null;
NameFilter?: string | null;
NextToken?: string | null;
SortBy?: ListDevicesSortBy | null;
SortOrder?: SortOrder | null;
}

§Properties

§
DeviceAggregatedStatusFilter?: DeviceAggregatedStatus | null
[src]

Filter based on a device's status.

§
MaxResults?: number | null
[src]

The maximum number of devices to return in one page of results.

§
NameFilter?: string | null
[src]

Filter based on device's name. Prefixes supported.

§
NextToken?: string | null
[src]

Specify the pagination token from a previous request to retrieve the next page of results.

§
SortBy?: ListDevicesSortBy | null
[src]

The target column to be sorted on. Default column sort is CREATED_TIME.

§
SortOrder?: SortOrder | null
[src]

The sorting order for the returned list. SortOrder is DESCENDING by default based on CREATED_TIME. Otherwise, SortOrder is ASCENDING.