Struct rusoto_health::AffectedEntity [] [src]

pub struct AffectedEntity {
    pub aws_account_id: Option<String>,
    pub entity_arn: Option<String>,
    pub entity_value: Option<String>,
    pub event_arn: Option<String>,
    pub last_updated_time: Option<f64>,
    pub status_code: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Information about an entity that is affected by a Health event.

Fields

The 12-digit AWS account number that contains the affected entity.

The unique identifier for the entity. Format: arn:aws:health:entity-region:aws-account:entity/entity-id . Example: arn:aws:health:us-east-1:111222333444:entity/AVh5GGT7ul1arKr1sE1K

The ID of the affected entity.

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

The most recent time that the entity was updated.

The most recent status of the entity affected by the event. The possible values are IMPAIRED, UNIMPAIRED, and UNKNOWN.

A map of entity tags attached to the affected entity.

Trait Implementations

impl Default for AffectedEntity
[src]

[src]

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

impl Debug for AffectedEntity
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AffectedEntity
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations