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

DescribeEnvironmentHealthRequest

import type { DescribeEnvironmentHealthRequest } from "https://aws-api.deno.dev/v0.4/services/elasticbeanstalk.ts?docs=full";

See the example below to learn how to create a request body.

interface DescribeEnvironmentHealthRequest {
AttributeNames?: EnvironmentHealthAttribute[] | null;
EnvironmentId?: string | null;
EnvironmentName?: string | null;
}

§Properties

§
AttributeNames?: EnvironmentHealthAttribute[] | null
[src]

Specify the response elements to return. To retrieve all attributes, set to All. If no attribute names are specified, returns the name of the environment.

§
EnvironmentId?: string | null
[src]

Specify the environment by ID.

You must specify either this or an EnvironmentName, or both.

§
EnvironmentName?: string | null
[src]

Specify the environment by name.

You must specify either this or an EnvironmentName, or both.