Struct aws_sdk_iot::input::UpdateThingGroupInput [−][src]
#[non_exhaustive]pub struct UpdateThingGroupInput {
pub thing_group_name: Option<String>,
pub thing_group_properties: Option<ThingGroupProperties>,
pub expected_version: Option<i64>,
}
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.thing_group_name: Option<String>
The thing group to update.
thing_group_properties: Option<ThingGroupProperties>
The thing group properties.
expected_version: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThingGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThingGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateThingGroup
>
Creates a new builder-style object to manufacture UpdateThingGroupInput
The thing group to update.
The thing group properties.
The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.
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 UpdateThingGroupInput
impl Send for UpdateThingGroupInput
impl Sync for UpdateThingGroupInput
impl Unpin for UpdateThingGroupInput
impl UnwindSafe for UpdateThingGroupInput
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