1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateSpace`](crate::operation::update_space::builders::UpdateSpaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::update_space::builders::UpdateSpaceFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_space::builders::UpdateSpaceFluentBuilder::set_name):<br>required: **true**<br><p>The name of the space.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_space::builders::UpdateSpaceFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_space::builders::UpdateSpaceFluentBuilder::set_description):<br>required: **false**<br><p>The description of the space.</p><br>
    /// - On success, responds with [`UpdateSpaceOutput`](crate::operation::update_space::UpdateSpaceOutput) with field(s):
    ///   - [`name(Option<String>)`](crate::operation::update_space::UpdateSpaceOutput::name): <p>The name of the space.</p>
    ///   - [`display_name(Option<String>)`](crate::operation::update_space::UpdateSpaceOutput::display_name): <p>The friendly name of the space displayed to users in Amazon CodeCatalyst.</p>
    ///   - [`description(Option<String>)`](crate::operation::update_space::UpdateSpaceOutput::description): <p>The description of the space.</p>
    /// - On failure, responds with [`SdkError<UpdateSpaceError>`](crate::operation::update_space::UpdateSpaceError)
    pub fn update_space(&self) -> crate::operation::update_space::builders::UpdateSpaceFluentBuilder {
        crate::operation::update_space::builders::UpdateSpaceFluentBuilder::new(self.handle.clone())
    }
}