Struct rusoto_health::EventTypeFilter [] [src]

pub struct EventTypeFilter {
    pub event_type_categories: Option<Vec<String>>,
    pub event_type_codes: Option<Vec<String>>,
    pub services: Option<Vec<String>>,
}

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

Fields

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

A list of event type codes.

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

Trait Implementations

impl Default for EventTypeFilter
[src]

[src]

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

impl Debug for EventTypeFilter
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for EventTypeFilter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations