Struct aws_sdk_iotdataplane::operation::delete_thing_shadow::builders::DeleteThingShadowOutputBuilder
source · #[non_exhaustive]pub struct DeleteThingShadowOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteThingShadowOutput
.
Implementations§
source§impl DeleteThingShadowOutputBuilder
impl DeleteThingShadowOutputBuilder
sourcepub fn payload(self, input: Blob) -> Self
pub fn payload(self, input: Blob) -> Self
The state information, in JSON format.
This field is required.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<DeleteThingShadowOutput, BuildError>
pub fn build(self) -> Result<DeleteThingShadowOutput, BuildError>
Consumes the builder and constructs a DeleteThingShadowOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DeleteThingShadowOutputBuilder
impl Clone for DeleteThingShadowOutputBuilder
source§fn clone(&self) -> DeleteThingShadowOutputBuilder
fn clone(&self) -> DeleteThingShadowOutputBuilder
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 DeleteThingShadowOutputBuilder
impl Default for DeleteThingShadowOutputBuilder
source§fn default() -> DeleteThingShadowOutputBuilder
fn default() -> DeleteThingShadowOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteThingShadowOutputBuilder
impl PartialEq for DeleteThingShadowOutputBuilder
source§fn eq(&self, other: &DeleteThingShadowOutputBuilder) -> bool
fn eq(&self, other: &DeleteThingShadowOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteThingShadowOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteThingShadowOutputBuilder
impl RefUnwindSafe for DeleteThingShadowOutputBuilder
impl Send for DeleteThingShadowOutputBuilder
impl Sync for DeleteThingShadowOutputBuilder
impl Unpin for DeleteThingShadowOutputBuilder
impl UnwindSafe for DeleteThingShadowOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.