Struct aws_sdk_rum::model::RumEvent
source · [−]#[non_exhaustive]pub struct RumEvent {
pub id: Option<String>,
pub timestamp: Option<DateTime>,
pub type: Option<String>,
pub metadata: Option<String>,
pub details: Option<String>,
}Expand description
A structure that contains the information for one performance event that RUM collects from a user session with your application.
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>A unique ID for this event.
timestamp: Option<DateTime>The exact time that this event occurred.
type: Option<String>The JSON schema that denotes the type of event this is, such as a page load or a new session.
metadata: Option<String>Metadata about this event, which contains a JSON serialization of the identity of the user for this session. The user information comes from information such as the HTTP user-agent request header and document interface.
details: Option<String>A string containing details about the event.
Implementations
The JSON schema that denotes the type of event this is, such as a page load or a new session.
Metadata about this event, which contains a JSON serialization of the identity of the user for this session. The user information comes from information such as the HTTP user-agent request header and document interface.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RumEvent
impl UnwindSafe for RumEvent
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