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

ListConfigurationsResponse

import type { ListConfigurationsResponse } from "https://aws-api.deno.dev/v0.3/services/discovery.ts?docs=full";
interface ListConfigurationsResponse {
configurations?: ({
[key: string]: string | null | undefined;
}
)
[]
| null;
nextToken?: string | null;
}

§Properties

§
configurations?: ({
[key: string]: string | null | undefined;
}
)
[]
| null
[src]

Returns configuration details, including the configuration ID, attribute names, and attribute values.

§
nextToken?: string | null
[src]

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