[][src]Struct rusoto_health::EventDetailsErrorItem

pub struct EventDetailsErrorItem {
    pub error_message: Option<String>,
    pub error_name: Option<String>,
    pub event_arn: Option<String>,
}

Error information returned when a DescribeEventDetails operation cannot find a specified event.

Fields

error_message: Option<String>

A message that describes the error.

error_name: Option<String>

The name of the error.

event_arn: Option<String>

The unique identifier for the event. Format: arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID . Example: Example: arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

Trait Implementations

impl Clone for EventDetailsErrorItem[src]

impl Debug for EventDetailsErrorItem[src]

impl Default for EventDetailsErrorItem[src]

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

impl PartialEq<EventDetailsErrorItem> for EventDetailsErrorItem[src]

impl StructuralPartialEq for EventDetailsErrorItem[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, 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.