1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeGroup`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`group_name(impl Into<String>)`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder::group_name) / [`set_group_name(Option<String>)`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder::set_group_name):<br>required: **true**<br><p>The name of the group that you want to describe.</p><br>
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder::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::describe_group::builders::DescribeGroupFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace of the group that you want described.</p><br>
    /// - On success, responds with [`DescribeGroupOutput`](crate::operation::describe_group::DescribeGroupOutput) with field(s):
    ///   - [`group(Option<Group>)`](crate::operation::describe_group::DescribeGroupOutput::group): <p>The name of the group.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::describe_group::DescribeGroupOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::describe_group::DescribeGroupOutput::status): <p>The HTTP status of the request.</p>
    /// - On failure, responds with [`SdkError<DescribeGroupError>`](crate::operation::describe_group::DescribeGroupError)
    pub fn describe_group(&self) -> crate::operation::describe_group::builders::DescribeGroupFluentBuilder {
        crate::operation::describe_group::builders::DescribeGroupFluentBuilder::new(self.handle.clone())
    }
}