Struct aws_sdk_iotdataplane::input::publish_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for PublishInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn retain(self, input: bool) -> Self
pub fn retain(self, input: bool) -> Self
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
sourcepub fn set_retain(self, input: Option<bool>) -> Self
pub fn set_retain(self, input: Option<bool>) -> Self
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
sourcepub fn payload(self, input: Blob) -> Self
pub fn payload(self, input: Blob) -> Self
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 Amazon Web Services IoT Core.
sourcepub fn set_payload(self, input: Option<Blob>) -> Self
pub fn set_payload(self, input: Option<Blob>) -> Self
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 Amazon Web Services IoT Core.
sourcepub fn build(self) -> Result<PublishInput, BuildError>
pub fn build(self) -> Result<PublishInput, BuildError>
Consumes the builder and constructs a PublishInput
.