Struct aws_sdk_codecatalyst::types::EventLogEntry
source · #[non_exhaustive]pub struct EventLogEntry { /* private fields */ }
Expand description
Information about an entry in an event log of Amazon CodeCatalyst activity.
Implementations§
source§impl EventLogEntry
impl EventLogEntry
sourcepub fn event_name(&self) -> Option<&str>
pub fn event_name(&self) -> Option<&str>
The name of the event.
sourcepub fn event_type(&self) -> Option<&str>
pub fn event_type(&self) -> Option<&str>
The type of the event.
sourcepub fn event_category(&self) -> Option<&str>
pub fn event_category(&self) -> Option<&str>
The category for the event.
sourcepub fn event_source(&self) -> Option<&str>
pub fn event_source(&self) -> Option<&str>
The source of the event.
sourcepub fn event_time(&self) -> Option<&DateTime>
pub fn event_time(&self) -> Option<&DateTime>
The time the event took place, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
sourcepub fn operation_type(&self) -> Option<&OperationType>
pub fn operation_type(&self) -> Option<&OperationType>
The type of the event.
sourcepub fn user_identity(&self) -> Option<&UserIdentity>
pub fn user_identity(&self) -> Option<&UserIdentity>
The system-generated unique ID of the user whose actions are recorded in the event.
sourcepub fn project_information(&self) -> Option<&ProjectInformation>
pub fn project_information(&self) -> Option<&ProjectInformation>
Information about the project where the event occurred.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The system-generated unique ID of the request.
sourcepub fn request_payload(&self) -> Option<&EventPayload>
pub fn request_payload(&self) -> Option<&EventPayload>
Information about the payload of the request.
sourcepub fn response_payload(&self) -> Option<&EventPayload>
pub fn response_payload(&self) -> Option<&EventPayload>
Information about the payload of the response, if any.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The code of the error, if any.
sourcepub fn source_ip_address(&self) -> Option<&str>
pub fn source_ip_address(&self) -> Option<&str>
The IP address of the user whose actions are recorded in the event.
sourcepub fn user_agent(&self) -> Option<&str>
pub fn user_agent(&self) -> Option<&str>
source§impl EventLogEntry
impl EventLogEntry
sourcepub fn builder() -> EventLogEntryBuilder
pub fn builder() -> EventLogEntryBuilder
Creates a new builder-style object to manufacture EventLogEntry
.
Trait Implementations§
source§impl Clone for EventLogEntry
impl Clone for EventLogEntry
source§fn clone(&self) -> EventLogEntry
fn clone(&self) -> EventLogEntry
Returns a copy 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 EventLogEntry
impl Debug for EventLogEntry
source§impl PartialEq<EventLogEntry> for EventLogEntry
impl PartialEq<EventLogEntry> for EventLogEntry
source§fn eq(&self, other: &EventLogEntry) -> bool
fn eq(&self, other: &EventLogEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.