aws_sdk_datazone/client/
get_group_profile.rs

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 [`GetGroupProfile`](crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain in which the group profile exists.</p><br>
    ///   - [`group_identifier(impl Into<String>)`](crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder::group_identifier) / [`set_group_identifier(Option<String>)`](crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder::set_group_identifier):<br>required: **true**<br><p>The identifier of the group profile.</p><br>
    /// - On success, responds with [`GetGroupProfileOutput`](crate::operation::get_group_profile::GetGroupProfileOutput) with field(s):
    ///   - [`domain_id(Option<String>)`](crate::operation::get_group_profile::GetGroupProfileOutput::domain_id): <p>The identifier of the Amazon DataZone domain in which the group profile exists.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_group_profile::GetGroupProfileOutput::id): <p>The identifier of the group profile.</p>
    ///   - [`status(Option<GroupProfileStatus>)`](crate::operation::get_group_profile::GetGroupProfileOutput::status): <p>The identifier of the group profile.</p>
    ///   - [`group_name(Option<String>)`](crate::operation::get_group_profile::GetGroupProfileOutput::group_name): <p>The name of the group for which the specified group profile exists.</p>
    /// - On failure, responds with [`SdkError<GetGroupProfileError>`](crate::operation::get_group_profile::GetGroupProfileError)
    pub fn get_group_profile(&self) -> crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder {
        crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder::new(self.handle.clone())
    }
}