1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteScene`](crate::operation::delete_scene::builders::DeleteSceneFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`workspace_id(impl Into<String>)`](crate::operation::delete_scene::builders::DeleteSceneFluentBuilder::workspace_id) / [`set_workspace_id(Option<String>)`](crate::operation::delete_scene::builders::DeleteSceneFluentBuilder::set_workspace_id):<br>required: **true**<br><p>The ID of the workspace.</p><br>
    ///   - [`scene_id(impl Into<String>)`](crate::operation::delete_scene::builders::DeleteSceneFluentBuilder::scene_id) / [`set_scene_id(Option<String>)`](crate::operation::delete_scene::builders::DeleteSceneFluentBuilder::set_scene_id):<br>required: **true**<br><p>The ID of the scene to delete.</p><br>
    /// - On success, responds with [`DeleteSceneOutput`](crate::operation::delete_scene::DeleteSceneOutput)
    /// - On failure, responds with [`SdkError<DeleteSceneError>`](crate::operation::delete_scene::DeleteSceneError)
    pub fn delete_scene(&self) -> crate::operation::delete_scene::builders::DeleteSceneFluentBuilder {
        crate::operation::delete_scene::builders::DeleteSceneFluentBuilder::new(self.handle.clone())
    }
}