[][src]Struct rusoto_health::EntityFilter

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

entity_arns: Option<Vec<String>>

A list of entity ARNs (unique identifiers).

entity_values: Option<Vec<String>>

A list of IDs for affected entities.

event_arns: Vec<String>

A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"

last_updated_times: Option<Vec<DateTimeRange>>

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

status_codes: Option<Vec<String>>

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

tags: Option<Vec<HashMap<String, String>>>

A map of entity tags attached to the affected entity.

Trait Implementations

impl Clone for EntityFilter[src]

impl Default for EntityFilter[src]

impl PartialEq<EntityFilter> for EntityFilter[src]

impl Debug for EntityFilter[src]

impl StructuralPartialEq for EntityFilter[src]

impl Serialize for EntityFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self