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 [`UpdateGroup`](crate::operation::update_group::builders::UpdateGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`group_name(impl Into<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::group_name) / [`set_group_name(Option<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::set_group_name):<br>required: **true**<br><p>The name of the group that you want to update.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::set_description):<br>required: **false**<br><p>The description for the group that you want to update.</p><br>
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.</p><br>
    ///   - [`namespace(impl Into<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::update_group::builders::UpdateGroupFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace of the group that you want to update.</p><br>
    /// - On success, responds with [`UpdateGroupOutput`](crate::operation::update_group::UpdateGroupOutput) with field(s):
    ///   - [`group(Option<Group>)`](crate::operation::update_group::UpdateGroupOutput::group): <p>The name of the group.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::update_group::UpdateGroupOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::update_group::UpdateGroupOutput::status): <p>The HTTP status of the request.</p>
    /// - On failure, responds with [`SdkError<UpdateGroupError>`](crate::operation::update_group::UpdateGroupError)
    pub fn update_group(&self) -> crate::operation::update_group::builders::UpdateGroupFluentBuilder {
        crate::operation::update_group::builders::UpdateGroupFluentBuilder::new(self.handle.clone())
    }
}