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

RequestEnvironmentInfoMessage

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

Request to retrieve logs from an environment and store them in your Elastic Beanstalk storage bucket.

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

§Properties

§
EnvironmentId?: string | null
[src]

The ID of the environment of the requested data.

If no such environment is found, RequestEnvironmentInfo 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 environment of the requested data.

If no such environment is found, RequestEnvironmentInfo 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 request.