aws_sdk_quicksight/client/
update_group.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`UpdateGroup`](crate::operation::update_group::builders::UpdateGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    ///   - [`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 Quick Sight account.</p><br>
9    ///   - [`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>
10    /// - On success, responds with [`UpdateGroupOutput`](crate::operation::update_group::UpdateGroupOutput) with field(s):
11    ///   - [`group(Option<Group>)`](crate::operation::update_group::UpdateGroupOutput::group): <p>The name of the group.</p>
12    ///   - [`request_id(Option<String>)`](crate::operation::update_group::UpdateGroupOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
13    ///   - [`status(i32)`](crate::operation::update_group::UpdateGroupOutput::status): <p>The HTTP status of the request.</p>
14    /// - On failure, responds with [`SdkError<UpdateGroupError>`](crate::operation::update_group::UpdateGroupError)
15    pub fn update_group(&self) -> crate::operation::update_group::builders::UpdateGroupFluentBuilder {
16        crate::operation::update_group::builders::UpdateGroupFluentBuilder::new(self.handle.clone())
17    }
18}