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

DescribeAgentsRequest

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

§Properties

§
agentIds?: string[] | null
[src]

The agent or the Connector IDs for which you want information. If you specify no IDs, the system returns information about all agents/Connectors associated with your Amazon Web Services user account.

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

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

{"key": "collectionStatus", "value": "STARTED"}
§
maxResults?: number | null
[src]

The total number of agents/Connectors to return in a single page of output. The maximum value is 100.

§
nextToken?: string | null
[src]

Token to retrieve the next set of results. For example, if you previously specified 100 IDs for DescribeAgentsRequest$agentIds but set DescribeAgentsRequest$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.