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

RetrieveEnvironmentInfoMessage

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

Request to download logs retrieved with "RequestEnvironmentInfo".

interface RetrieveEnvironmentInfoMessage {
EnvironmentId?: string | null;
EnvironmentName?: string | null;
}

§Properties

§
EnvironmentId?: string | null
[src]

The ID of the data's environment.

If no such environment is found, returns an InvalidParameterValue error.

Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

§
EnvironmentName?: string | null
[src]

The name of the data's environment.

If no such environment is found, returns an InvalidParameterValue error.

Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

§

The type of information to retrieve.