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 ==.impl StructuralPartialEq for PutRumEventsInput
Auto Trait Implementations§
impl Freeze for PutRumEventsInput
impl RefUnwindSafe for PutRumEventsInput
impl Send for PutRumEventsInput
impl Sync for PutRumEventsInput
impl Unpin for PutRumEventsInput
impl UnwindSafe for PutRumEventsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more