Struct rusoto_elasticbeanstalk::ValidationMessage[][src]

pub struct ValidationMessage {
    pub message: Option<String>,
    pub namespace: Option<String>,
    pub option_name: Option<String>,
    pub severity: Option<String>,
}

An error or warning for a desired configuration option value.

Fields

A message describing the error or warning.

The namespace to which the option belongs.

The name of the option.

An indication of the severity of this message:

  • error: This message indicates that this is not a valid setting for an option.

  • warning: This message is providing information you should take into account.

Trait Implementations

impl Default for ValidationMessage
[src]

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

impl Debug for ValidationMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ValidationMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ValidationMessage
[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