1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateScene`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`workspace_id(impl Into<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::workspace_id) / [`set_workspace_id(Option<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::set_workspace_id): <p>The ID of the workspace that contains the scene.</p>
    ///   - [`scene_id(impl Into<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::scene_id) / [`set_scene_id(Option<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::set_scene_id): <p>The ID of the scene.</p>
    ///   - [`content_location(impl Into<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::content_location) / [`set_content_location(Option<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::set_content_location): <p>The relative path that specifies the location of the content definition file.</p>
    ///   - [`description(impl Into<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::set_description): <p>The description of this scene.</p>
    ///   - [`capabilities(Vec<String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::capabilities) / [`set_capabilities(Option<Vec<String>>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::set_capabilities): <p>A list of capabilities that the scene uses to render.</p>
    ///   - [`scene_metadata(HashMap<String, String>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::scene_metadata) / [`set_scene_metadata(Option<HashMap<String, String>>)`](crate::operation::update_scene::builders::UpdateSceneFluentBuilder::set_scene_metadata): <p>The scene metadata.</p>
    /// - On success, responds with [`UpdateSceneOutput`](crate::operation::update_scene::UpdateSceneOutput) with field(s):
    ///   - [`update_date_time(Option<DateTime>)`](crate::operation::update_scene::UpdateSceneOutput::update_date_time): <p>The date and time when the scene was last updated.</p>
    /// - On failure, responds with [`SdkError<UpdateSceneError>`](crate::operation::update_scene::UpdateSceneError)
    pub fn update_scene(
        &self,
    ) -> crate::operation::update_scene::builders::UpdateSceneFluentBuilder {
        crate::operation::update_scene::builders::UpdateSceneFluentBuilder::new(self.handle.clone())
    }
}