aws_sdk_quicksight/client/
describe_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 [`DescribeGroup`](crate::operation::describe_group::builders::DescribeGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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 Quick Sight account.</p><br>
8    ///   - [`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>
9    /// - On success, responds with [`DescribeGroupOutput`](crate::operation::describe_group::DescribeGroupOutput) with field(s):
10    ///   - [`group(Option<Group>)`](crate::operation::describe_group::DescribeGroupOutput::group): <p>The name of the group.</p>
11    ///   - [`request_id(Option<String>)`](crate::operation::describe_group::DescribeGroupOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12    ///   - [`status(i32)`](crate::operation::describe_group::DescribeGroupOutput::status): <p>The HTTP status of the request.</p>
13    /// - On failure, responds with [`SdkError<DescribeGroupError>`](crate::operation::describe_group::DescribeGroupError)
14    pub fn describe_group(&self) -> crate::operation::describe_group::builders::DescribeGroupFluentBuilder {
15        crate::operation::describe_group::builders::DescribeGroupFluentBuilder::new(self.handle.clone())
16    }
17}