pub struct EventDescription {
pub application_name: Option<String>,
pub environment_name: Option<String>,
pub event_date: Option<String>,
pub message: Option<String>,
pub platform_arn: Option<String>,
pub request_id: Option<String>,
pub severity: Option<String>,
pub template_name: Option<String>,
pub version_label: Option<String>,
}
Expand description
Describes an event.
Fields§
§application_name: Option<String>
The application associated with the event.
environment_name: Option<String>
The name of the environment associated with this event.
event_date: Option<String>
The date when the event occurred.
message: Option<String>
The event message.
platform_arn: Option<String>
The ARN of the platform version.
request_id: Option<String>
The web service request ID for the activity of this event.
severity: Option<String>
The severity level of this event.
template_name: Option<String>
The name of the configuration associated with this event.
version_label: Option<String>
The release label for the application version associated with this event.
Trait Implementations§
Source§impl Clone for EventDescription
impl Clone for EventDescription
Source§fn clone(&self) -> EventDescription
fn clone(&self) -> EventDescription
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EventDescription
impl Debug for EventDescription
Source§impl Default for EventDescription
impl Default for EventDescription
Source§fn default() -> EventDescription
fn default() -> EventDescription
Returns the “default value” for a type. Read more
Source§impl PartialEq for EventDescription
impl PartialEq for EventDescription
impl StructuralPartialEq for EventDescription
Auto Trait Implementations§
impl Freeze for EventDescription
impl RefUnwindSafe for EventDescription
impl Send for EventDescription
impl Sync for EventDescription
impl Unpin for EventDescription
impl UnwindSafe for EventDescription
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