[][src]Struct rusoto_redshift::Event

pub struct Event {
    pub date: Option<String>,
    pub event_categories: Option<Vec<String>>,
    pub event_id: Option<String>,
    pub message: Option<String>,
    pub severity: Option<String>,
    pub source_identifier: Option<String>,
    pub source_type: Option<String>,
}

Describes an event.

Fields

date: Option<String>

The date and time of the event.

event_categories: Option<Vec<String>>

A list of the event categories.

Values: Configuration, Management, Monitoring, Security

event_id: Option<String>

The identifier of the event.

message: Option<String>

The text of this event.

severity: Option<String>

The severity of the event.

Values: ERROR, INFO

source_identifier: Option<String>

The identifier for the source of the event.

source_type: Option<String>

The source type for this event.

Trait Implementations

impl Clone for Event[src]

impl Debug for Event[src]

impl Default for Event[src]

impl PartialEq<Event> for Event[src]

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