[][src]Struct rusoto_elasticbeanstalk::ValidationMessage

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

message: Option<String>

A message describing the error or warning.

namespace: Option<String>

The namespace to which the option belongs.

option_name: Option<String>

The name of the option.

severity: Option<String>

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 Clone for ValidationMessage[src]

impl Debug for ValidationMessage[src]

impl Default for ValidationMessage[src]

impl PartialEq<ValidationMessage> for ValidationMessage[src]

impl StructuralPartialEq for ValidationMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.