[][src]Struct rusoto_iotevents_data::BatchUpdateDetectorErrorEntry

pub struct BatchUpdateDetectorErrorEntry {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub message_id: Option<String>,
}

Information about the error that occured when attempting to update a detector.

Fields

error_code: Option<String>

The code of the error.

error_message: Option<String>

A message describing the error.

message_id: Option<String>

The "messageId" of the update request that caused the error. (The value of the "messageId" in the update request "Detector" object.)

Trait Implementations

impl Clone for BatchUpdateDetectorErrorEntry[src]

impl Debug for BatchUpdateDetectorErrorEntry[src]

impl Default for BatchUpdateDetectorErrorEntry[src]

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

impl PartialEq<BatchUpdateDetectorErrorEntry> for BatchUpdateDetectorErrorEntry[src]

impl StructuralPartialEq for BatchUpdateDetectorErrorEntry[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.