Struct aws_sdk_iotthingsgraph::model::FlowExecutionMessage
source · [−]#[non_exhaustive]pub struct FlowExecutionMessage {
pub message_id: Option<String>,
pub event_type: Option<FlowExecutionEventType>,
pub timestamp: Option<DateTime>,
pub payload: Option<String>,
}
Expand description
An object that contains information about a flow event.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.message_id: Option<String>
The unique identifier of the message.
event_type: Option<FlowExecutionEventType>
The type of flow event .
timestamp: Option<DateTime>
The date and time when the message was last updated.
payload: Option<String>
A string containing information about the flow event.
Implementations
The unique identifier of the message.
The type of flow event .
The date and time when the message was last updated.
Creates a new builder-style object to manufacture FlowExecutionMessage
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 FlowExecutionMessage
impl Send for FlowExecutionMessage
impl Sync for FlowExecutionMessage
impl Unpin for FlowExecutionMessage
impl UnwindSafe for FlowExecutionMessage
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