[][src]Struct rusoto_health::OrganizationAffectedEntitiesErrorItem

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

Error information returned when a DescribeAffectedEntitiesForOrganization operation cannot find or process a specific entity.

Fields

aws_account_id: Option<String>

The 12-digit AWS account numbers that contains the affected entities.

error_message: Option<String>

The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION. For example, AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

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 OrganizationAffectedEntitiesErrorItem[src]

impl Debug for OrganizationAffectedEntitiesErrorItem[src]

impl Default for OrganizationAffectedEntitiesErrorItem[src]

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

impl PartialEq<OrganizationAffectedEntitiesErrorItem> for OrganizationAffectedEntitiesErrorItem[src]

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