aws_sdk_iotthingsgraph/client/dissociate_entity_from_thing.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DissociateEntityFromThing`](crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`thing_name(impl Into<String>)`](crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder::thing_name) / [`set_thing_name(Option<String>)`](crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder::set_thing_name):<br>required: **true**<br><p>The name of the thing to disassociate.</p><br>
7 /// - [`entity_type(EntityType)`](crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder::entity_type) / [`set_entity_type(Option<EntityType>)`](crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder::set_entity_type):<br>required: **true**<br><p>The entity type from which to disassociate the thing.</p><br>
8 /// - On success, responds with [`DissociateEntityFromThingOutput`](crate::operation::dissociate_entity_from_thing::DissociateEntityFromThingOutput)
9 /// - On failure, responds with [`SdkError<DissociateEntityFromThingError>`](crate::operation::dissociate_entity_from_thing::DissociateEntityFromThingError)
10 #[deprecated(note = "since: 2022-08-30")]
11 pub fn dissociate_entity_from_thing(&self) -> crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder {
12 crate::operation::dissociate_entity_from_thing::builders::DissociateEntityFromThingFluentBuilder::new(self.handle.clone())
13 }
14}