Struct aws_sdk_rum::input::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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutRumEvents, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutRumEvents, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutRumEvents>
Creates a new builder-style object to manufacture PutRumEventsInput
A structure that contains information about the app monitor that collected this telemetry information.
A structure that contains information about the user session that this batch of events was collected from.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for PutRumEventsInput
impl Send for PutRumEventsInput
impl Sync for PutRumEventsInput
impl Unpin for PutRumEventsInput
impl UnwindSafe for PutRumEventsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more