#[non_exhaustive]pub struct UpdateThingGroupInputBuilder { /* private fields */ }Expand description
A builder for UpdateThingGroupInput.
Implementations§
source§impl UpdateThingGroupInputBuilder
impl UpdateThingGroupInputBuilder
sourcepub fn thing_group_name(self, input: impl Into<String>) -> Self
pub fn thing_group_name(self, input: impl Into<String>) -> Self
The thing group to update.
This field is required.sourcepub fn set_thing_group_name(self, input: Option<String>) -> Self
pub fn set_thing_group_name(self, input: Option<String>) -> Self
The thing group to update.
sourcepub fn get_thing_group_name(&self) -> &Option<String>
pub fn get_thing_group_name(&self) -> &Option<String>
The thing group to update.
sourcepub fn thing_group_properties(self, input: ThingGroupProperties) -> Self
pub fn thing_group_properties(self, input: ThingGroupProperties) -> Self
The thing group properties.
This field is required.sourcepub fn set_thing_group_properties(
self,
input: Option<ThingGroupProperties>
) -> Self
pub fn set_thing_group_properties( self, input: Option<ThingGroupProperties> ) -> Self
The thing group properties.
sourcepub fn get_thing_group_properties(&self) -> &Option<ThingGroupProperties>
pub fn get_thing_group_properties(&self) -> &Option<ThingGroupProperties>
The thing group properties.
sourcepub fn expected_version(self, input: i64) -> Self
pub fn expected_version(self, input: i64) -> Self
The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.
sourcepub fn set_expected_version(self, input: Option<i64>) -> Self
pub fn set_expected_version(self, input: Option<i64>) -> Self
The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.
sourcepub fn get_expected_version(&self) -> &Option<i64>
pub fn get_expected_version(&self) -> &Option<i64>
The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.
sourcepub fn build(self) -> Result<UpdateThingGroupInput, BuildError>
pub fn build(self) -> Result<UpdateThingGroupInput, BuildError>
Consumes the builder and constructs a UpdateThingGroupInput.
source§impl UpdateThingGroupInputBuilder
impl UpdateThingGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateThingGroupOutput, SdkError<UpdateThingGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateThingGroupOutput, SdkError<UpdateThingGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateThingGroupInputBuilder
impl Clone for UpdateThingGroupInputBuilder
source§fn clone(&self) -> UpdateThingGroupInputBuilder
fn clone(&self) -> UpdateThingGroupInputBuilder
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 Debug for UpdateThingGroupInputBuilder
impl Debug for UpdateThingGroupInputBuilder
source§impl Default for UpdateThingGroupInputBuilder
impl Default for UpdateThingGroupInputBuilder
source§fn default() -> UpdateThingGroupInputBuilder
fn default() -> UpdateThingGroupInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateThingGroupInputBuilder
impl PartialEq for UpdateThingGroupInputBuilder
source§fn eq(&self, other: &UpdateThingGroupInputBuilder) -> bool
fn eq(&self, other: &UpdateThingGroupInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateThingGroupInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateThingGroupInputBuilder
impl Send for UpdateThingGroupInputBuilder
impl Sync for UpdateThingGroupInputBuilder
impl Unpin for UpdateThingGroupInputBuilder
impl UnwindSafe for UpdateThingGroupInputBuilder
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> 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>
Creates a shared type from an unshared type.