[][src]Struct rusoto_health::EntityAggregate

pub struct EntityAggregate {
    pub count: Option<i64>,
    pub event_arn: Option<String>,
}

The number of entities that are affected by one or more events. Returned by the DescribeEntityAggregates operation.

Fields

count: Option<i64>

The number of entities that match the criteria for the specified events.

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

impl Debug for EntityAggregate[src]

impl Default for EntityAggregate[src]

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

impl PartialEq<EntityAggregate> for EntityAggregate[src]

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