[][src]Struct rusoto_datapipeline::ValidationWarning

pub struct ValidationWarning {
    pub id: Option<String>,
    pub warnings: Option<Vec<String>>,
}

Defines a validation warning. Validation warnings do not prevent pipeline activation. The set of validation warnings that can be returned are defined by AWS Data Pipeline.

Fields

id: Option<String>

The identifier of the object that contains the validation warning.

warnings: Option<Vec<String>>

A description of the validation warning.

Trait Implementations

impl Clone for ValidationWarning[src]

impl Debug for ValidationWarning[src]

impl Default for ValidationWarning[src]

impl<'de> Deserialize<'de> for ValidationWarning[src]

impl PartialEq<ValidationWarning> for ValidationWarning[src]

impl StructuralPartialEq for ValidationWarning[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.