pub struct Event {
pub date: Option<String>,
pub message: Option<String>,
pub source_identifier: Option<String>,
pub source_type: Option<String>,
}
Expand description
Represents a single occurrence of something interesting within the system. Some examples of events are creating a cluster, adding or removing a cache node, or rebooting a node.
Fields§
§date: Option<String>
The date and time when the event occurred.
message: Option<String>
The text of the event.
source_identifier: Option<String>
The identifier for the source of the event. For example, if the event occurred at the cluster level, the identifier would be the name of the cluster.
source_type: Option<String>
Specifies the origin of this event - a cluster, a parameter group, a security group, etc.
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