Struct aws_sdk_iotdataplane::input::PublishInput [−][src]
#[non_exhaustive]pub struct PublishInput {
pub topic: Option<String>,
pub qos: i32,
pub retain: bool,
pub payload: Option<Blob>,
}
Expand description
The input for the Publish operation.
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.topic: Option<String>
The name of the MQTT topic.
qos: i32
The Quality of Service (QoS) level.
retain: bool
A Boolean value that determines whether to set the RETAIN flag when the message is published.
Setting the RETAIN flag causes the message to be retained and sent to new subscribers to the topic.
Valid values: true
| false
Default value: false
payload: Option<Blob>
The message body. MQTT accepts text, binary, and empty (null) message payloads.
Publishing an empty (null) payload with retain = true
deletes the retained message identified by topic from IoT Core.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<Publish, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<Publish, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<Publish
>
Creates a new builder-style object to manufacture PublishInput
A Boolean value that determines whether to set the RETAIN flag when the message is published.
Setting the RETAIN flag causes the message to be retained and sent to new subscribers to the topic.
Valid values: true
| false
Default value: false
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 PublishInput
impl Send for PublishInput
impl Sync for PublishInput
impl Unpin for PublishInput
impl UnwindSafe for PublishInput
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