1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdatePlacement`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`placement_name(impl Into<String>)`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::placement_name) / [`set_placement_name(Option<String>)`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::set_placement_name): <p>The name of the placement to update.</p>
    ///   - [`project_name(impl Into<String>)`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::project_name) / [`set_project_name(Option<String>)`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::set_project_name): <p>The name of the project containing the placement to be updated.</p>
    ///   - [`attributes(HashMap<String, String>)`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::attributes) / [`set_attributes(Option<HashMap<String, String>>)`](crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::set_attributes): <p>The user-defined object of attributes used to update the placement. The maximum number of key/value pairs is 50.</p>
    /// - On success, responds with [`UpdatePlacementOutput`](crate::operation::update_placement::UpdatePlacementOutput)
    /// - On failure, responds with [`SdkError<UpdatePlacementError>`](crate::operation::update_placement::UpdatePlacementError)
    pub fn update_placement(
        &self,
    ) -> crate::operation::update_placement::builders::UpdatePlacementFluentBuilder {
        crate::operation::update_placement::builders::UpdatePlacementFluentBuilder::new(
            self.handle.clone(),
        )
    }
}