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

HttpInstanceSummary

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

In a response to a DiscoverInstances request, HttpInstanceSummary contains information about one instance that matches the values that you specified in the request.

interface HttpInstanceSummary {
Attributes?: {
[key: string]: string | null | undefined;
}
| null;
HealthStatus?: HealthStatus | null;
InstanceId?: string | null;
NamespaceName?: string | null;
ServiceName?: string | null;
}

§Properties

§
Attributes?: {
[key: string]: string | null | undefined;
}
| null
[src]

If you included any attributes when you registered the instance, the values of those attributes.

§
HealthStatus?: HealthStatus | null
[src]

If you configured health checking in the service, the current health status of the service instance.

§
InstanceId?: string | null
[src]

The ID of an instance that matches the values that you specified in the request.

§
NamespaceName?: string | null
[src]

``

The HttpName name of the namespace. It's found in the HttpProperties member of the Properties member of the namespace.

§
ServiceName?: string | null
[src]

The name of the service that you specified when you registered the instance.