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

ListConfigurationsRequest

import type { ListConfigurationsRequest } from "https://aws-api.deno.dev/v0.4/services/discovery.ts?docs=full";
interface ListConfigurationsRequest {
configurationType: ConfigurationItemType;
filters?: Filter[] | null;
maxResults?: number | null;
nextToken?: string | null;
orderBy?: OrderByElement[] | null;
}

§Properties

§
configurationType: ConfigurationItemType
[src]

A valid configuration identified by Application Discovery Service.

§
filters?: Filter[] | null
[src]

You can filter the request using various logical operators and a key-value format. For example:

{"key": "serverType", "value": "webServer"}

For a complete list of filter options and guidance about using them with this action, see Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.

§
maxResults?: number | null
[src]

The total number of items to return. The maximum value is 100.

§
nextToken?: string | null
[src]

Token to retrieve the next set of results. For example, if a previous call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$maxResults to 10, you received a set of 10 results along with a token. Use that token in this query to get the next set of 10.

§
orderBy?: OrderByElement[] | null
[src]

Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action in the Amazon Web Services Application Discovery Service User Guide.