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>,
}
Expand description
Detailed information about an event.
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 StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more