[][src]Struct rusoto_rds::Event

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

This data type is used as a response element in the DescribeEvents action.

Fields

date: Option<String>

Specifies the date and time of the event.

event_categories: Option<Vec<String>>

Specifies the category for the event.

message: Option<String>

Provides the text of this event.

source_arn: Option<String>

The Amazon Resource Name (ARN) for the event.

source_identifier: Option<String>

Provides the identifier for the source of the event.

source_type: Option<String>

Specifies 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.