[][src]Struct rusoto_health::OrganizationEventFilter

pub struct OrganizationEventFilter {
    pub aws_account_ids: Option<Vec<String>>,
    pub end_time: Option<DateTimeRange>,
    pub entity_arns: Option<Vec<String>>,
    pub entity_values: Option<Vec<String>>,
    pub event_status_codes: Option<Vec<String>>,
    pub event_type_categories: Option<Vec<String>>,
    pub event_type_codes: Option<Vec<String>>,
    pub last_updated_time: Option<DateTimeRange>,
    pub regions: Option<Vec<String>>,
    pub services: Option<Vec<String>>,
    pub start_time: Option<DateTimeRange>,
}

The values to filter results from the DescribeEventsForOrganization operation.

Fields

aws_account_ids: Option<Vec<String>>

A list of 12-digit AWS account numbers that contains the affected entities.

end_time: Option<DateTimeRange>entity_arns: Option<Vec<String>>

A list of entity ARNs (unique identifiers).

entity_values: Option<Vec<String>>

A list of entity identifiers, such as EC2 instance IDs (i-34ab692e) or EBS volumes (vol-426ab23e).

event_status_codes: Option<Vec<String>>

A list of event status codes.

event_type_categories: Option<Vec<String>>

A list of event type category codes (issue, scheduledChange, or accountNotification).

event_type_codes: Option<Vec<String>>

A list of unique identifiers for event types. For example, "AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".

last_updated_time: Option<DateTimeRange>regions: Option<Vec<String>>

A list of AWS Regions.

services: Option<Vec<String>>

The AWS services associated with the event. For example, EC2, RDS.

start_time: Option<DateTimeRange>

Trait Implementations

impl Clone for OrganizationEventFilter[src]

impl Debug for OrganizationEventFilter[src]

impl Default for OrganizationEventFilter[src]

impl PartialEq<OrganizationEventFilter> for OrganizationEventFilter[src]

impl Serialize for OrganizationEventFilter[src]

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