1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetGroup`](crate::operation::get_group::builders::GetGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`group_name(impl Into<String>)`](crate::operation::get_group::builders::GetGroupFluentBuilder::group_name) / [`set_group_name(Option<String>)`](crate::operation::get_group::builders::GetGroupFluentBuilder::set_group_name):<br>required: **false**<br><p>Deprecated - don't use this parameter. Use <code>Group</code> instead.</p><br>
    ///   - [`group(impl Into<String>)`](crate::operation::get_group::builders::GetGroupFluentBuilder::group) / [`set_group(Option<String>)`](crate::operation::get_group::builders::GetGroupFluentBuilder::set_group):<br>required: **false**<br><p>The name or the ARN of the resource group to retrieve.</p><br>
    /// - On success, responds with [`GetGroupOutput`](crate::operation::get_group::GetGroupOutput) with field(s):
    ///   - [`group(Option<Group>)`](crate::operation::get_group::GetGroupOutput::group): <p>A structure that contains the metadata details for the specified resource group. Use <code>GetGroupQuery</code> and <code>GetGroupConfiguration</code> to get those additional details of the resource group.</p>
    /// - On failure, responds with [`SdkError<GetGroupError>`](crate::operation::get_group::GetGroupError)
    pub fn get_group(&self) -> crate::operation::get_group::builders::GetGroupFluentBuilder {
        crate::operation::get_group::builders::GetGroupFluentBuilder::new(self.handle.clone())
    }
}