Struct aws_sdk_iotdataplane::operation::update_thing_shadow::builders::UpdateThingShadowInputBuilder
source · #[non_exhaustive]pub struct UpdateThingShadowInputBuilder { /* private fields */ }
Expand description
A builder for UpdateThingShadowInput
.
Implementations§
source§impl UpdateThingShadowInputBuilder
impl UpdateThingShadowInputBuilder
sourcepub fn thing_name(self, input: impl Into<String>) -> Self
pub fn thing_name(self, input: impl Into<String>) -> Self
The name of the thing.
sourcepub fn set_thing_name(self, input: Option<String>) -> Self
pub fn set_thing_name(self, input: Option<String>) -> Self
The name of the thing.
sourcepub fn get_thing_name(&self) -> &Option<String>
pub fn get_thing_name(&self) -> &Option<String>
The name of the thing.
sourcepub fn shadow_name(self, input: impl Into<String>) -> Self
pub fn shadow_name(self, input: impl Into<String>) -> Self
The name of the shadow.
sourcepub fn set_shadow_name(self, input: Option<String>) -> Self
pub fn set_shadow_name(self, input: Option<String>) -> Self
The name of the shadow.
sourcepub fn get_shadow_name(&self) -> &Option<String>
pub fn get_shadow_name(&self) -> &Option<String>
The name of the shadow.
sourcepub fn set_payload(self, input: Option<Blob>) -> Self
pub fn set_payload(self, input: Option<Blob>) -> Self
The state information, in JSON format.
sourcepub fn get_payload(&self) -> &Option<Blob>
pub fn get_payload(&self) -> &Option<Blob>
The state information, in JSON format.
sourcepub fn build(self) -> Result<UpdateThingShadowInput, BuildError>
pub fn build(self) -> Result<UpdateThingShadowInput, BuildError>
Consumes the builder and constructs a UpdateThingShadowInput
.
source§impl UpdateThingShadowInputBuilder
impl UpdateThingShadowInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateThingShadowOutput, SdkError<UpdateThingShadowError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateThingShadowOutput, SdkError<UpdateThingShadowError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateThingShadowInputBuilder
impl Clone for UpdateThingShadowInputBuilder
source§fn clone(&self) -> UpdateThingShadowInputBuilder
fn clone(&self) -> UpdateThingShadowInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for UpdateThingShadowInputBuilder
impl Default for UpdateThingShadowInputBuilder
source§fn default() -> UpdateThingShadowInputBuilder
fn default() -> UpdateThingShadowInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateThingShadowInputBuilder> for UpdateThingShadowInputBuilder
impl PartialEq<UpdateThingShadowInputBuilder> for UpdateThingShadowInputBuilder
source§fn eq(&self, other: &UpdateThingShadowInputBuilder) -> bool
fn eq(&self, other: &UpdateThingShadowInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateThingShadowInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateThingShadowInputBuilder
impl Send for UpdateThingShadowInputBuilder
impl Sync for UpdateThingShadowInputBuilder
impl Unpin for UpdateThingShadowInputBuilder
impl UnwindSafe for UpdateThingShadowInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more