Struct rusoto_health::EntityFilter [] [src]

pub struct EntityFilter {
    pub entity_arns: Option<Vec<String>>,
    pub entity_values: Option<Vec<String>>,
    pub event_arns: Vec<String>,
    pub last_updated_times: Option<Vec<DateTimeRange>>,
    pub status_codes: Option<Vec<String>>,
    pub tags: Option<Vec<HashMap<String, String>>>,
}

The values to use to filter results from the DescribeAffectedEntities operation.

Fields

A list of entity ARNs (unique identifiers).

A list of IDs for affected entities.

A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/AWS_EC2_MAINTENANCE_5331", "arn:aws:health:us-west-1::event/AWS_EBS_LOST_VOLUME_xyz"

A list of the most recent dates and times that the entity was updated.

A list of entity status codes (IMPAIRED, UNIMPAIRED, or UNKNOWN).

A map of entity tags attached to the affected entity.

Trait Implementations

impl Default for EntityFilter
[src]

[src]

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

impl Debug for EntityFilter
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for EntityFilter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for EntityFilter

impl Sync for EntityFilter