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

AgentInfo

import type { AgentInfo } from "https://aws-api.deno.dev/v0.3/services/discovery.ts?docs=full";

Information about agents or connectors associated with the user’s AWS account. Information includes agent or connector IDs, IP addresses, media access control (MAC) addresses, agent or connector health, hostname where the agent or connector resides, and agent version for each agent.

interface AgentInfo {
agentId?: string | null;
agentNetworkInfoList?: AgentNetworkInfo[] | null;
agentType?: string | null;
collectionStatus?: string | null;
connectorId?: string | null;
health?: AgentStatus | null;
hostName?: string | null;
lastHealthPingTime?: string | null;
registeredTime?: string | null;
version?: string | null;
}

§Properties

§
agentId?: string | null
[src]

The agent or connector ID.

§
agentNetworkInfoList?: AgentNetworkInfo[] | null
[src]

Network details about the host where the agent or connector resides.

§
agentType?: string | null
[src]

Type of agent.

§
collectionStatus?: string | null
[src]

Status of the collection process for an agent or connector.

§
connectorId?: string | null
[src]

The ID of the connector.

§
health?: AgentStatus | null
[src]

The health of the agent or connector.

§
hostName?: string | null
[src]

The name of the host where the agent or connector resides. The host can be a server or virtual machine.

§
lastHealthPingTime?: string | null
[src]

Time since agent or connector health was reported.

§
registeredTime?: string | null
[src]

Agent's first registration timestamp in UTC.

§
version?: string | null
[src]

The agent or connector version.