Struct rusoto_elasticbeanstalk::RequestEnvironmentInfoMessage[][src]

pub struct RequestEnvironmentInfoMessage {
    pub environment_id: Option<String>,
    pub environment_name: Option<String>,
    pub info_type: String,
}

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

Fields

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.

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.

Trait Implementations

impl Default for RequestEnvironmentInfoMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for RequestEnvironmentInfoMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for RequestEnvironmentInfoMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RequestEnvironmentInfoMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations