Struct aws_sdk_rum::operation::put_rum_events::PutRumEventsInput
source · #[non_exhaustive]pub struct PutRumEventsInput {
pub id: Option<String>,
pub batch_id: Option<String>,
pub app_monitor_details: Option<AppMonitorDetails>,
pub user_details: Option<UserDetails>,
pub rum_events: Option<Vec<RumEvent>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>The ID of the app monitor that is sending this data.
batch_id: Option<String>A unique identifier for this batch of RUM event data.
app_monitor_details: Option<AppMonitorDetails>A structure that contains information about the app monitor that collected this telemetry information.
user_details: Option<UserDetails>A structure that contains information about the user session that this batch of events was collected from.
rum_events: Option<Vec<RumEvent>>An array of structures that contain the telemetry event data.
Implementations§
source§impl PutRumEventsInput
impl PutRumEventsInput
sourcepub fn app_monitor_details(&self) -> Option<&AppMonitorDetails>
pub fn app_monitor_details(&self) -> Option<&AppMonitorDetails>
A structure that contains information about the app monitor that collected this telemetry information.
sourcepub fn user_details(&self) -> Option<&UserDetails>
pub fn user_details(&self) -> Option<&UserDetails>
A structure that contains information about the user session that this batch of events was collected from.
sourcepub fn rum_events(&self) -> &[RumEvent]
pub fn rum_events(&self) -> &[RumEvent]
An array of structures that contain the telemetry event data.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .rum_events.is_none().
source§impl PutRumEventsInput
impl PutRumEventsInput
sourcepub fn builder() -> PutRumEventsInputBuilder
pub fn builder() -> PutRumEventsInputBuilder
Creates a new builder-style object to manufacture PutRumEventsInput.
Trait Implementations§
source§impl Clone for PutRumEventsInput
impl Clone for PutRumEventsInput
source§fn clone(&self) -> PutRumEventsInput
fn clone(&self) -> PutRumEventsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PutRumEventsInput
impl Debug for PutRumEventsInput
source§impl PartialEq for PutRumEventsInput
impl PartialEq for PutRumEventsInput
source§fn eq(&self, other: &PutRumEventsInput) -> bool
fn eq(&self, other: &PutRumEventsInput) -> bool
self and other values to be equal, and is used
by ==.