1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteThingShadow`](crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`thing_name(impl Into<String>)`](crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder::thing_name) / [`set_thing_name(Option<String>)`](crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder::set_thing_name):<br>required: **true**<br><p>The name of the thing.</p><br>
    ///   - [`shadow_name(impl Into<String>)`](crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder::shadow_name) / [`set_shadow_name(Option<String>)`](crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder::set_shadow_name):<br>required: **false**<br><p>The name of the shadow.</p><br>
    /// - On success, responds with [`DeleteThingShadowOutput`](crate::operation::delete_thing_shadow::DeleteThingShadowOutput) with field(s):
    ///   - [`payload(Blob)`](crate::operation::delete_thing_shadow::DeleteThingShadowOutput::payload): <p>The state information, in JSON format.</p>
    /// - On failure, responds with [`SdkError<DeleteThingShadowError>`](crate::operation::delete_thing_shadow::DeleteThingShadowError)
    pub fn delete_thing_shadow(&self) -> crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder {
        crate::operation::delete_thing_shadow::builders::DeleteThingShadowFluentBuilder::new(self.handle.clone())
    }
}