Struct rusoto_health::EntityAggregate[][src]

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

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

The unique identifier for the event. Format: arn:aws:health:event-region::event/EVENT_TYPE_PLUS_ID . Example: arn:aws:health:us-east-1::event/AWS_EC2_MAINTENANCE_5331

Trait Implementations

impl Default for EntityAggregate
[src]

Returns the "default value" for a type. Read more

impl Debug for EntityAggregate
[src]

Formats the value using the given formatter. Read more

impl Clone for EntityAggregate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EntityAggregate
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations