aws_sdk_datazone/client/get_group_profile.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 [`GetGroupProfile`](crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`GetGroupProfileOutput`](crate::operation::get_group_profile::GetGroupProfileOutput) with field(s):
9 /// - [`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>
10 /// - [`id(Option<String>)`](crate::operation::get_group_profile::GetGroupProfileOutput::id): <p>The identifier of the group profile.</p>
11 /// - [`status(Option<GroupProfileStatus>)`](crate::operation::get_group_profile::GetGroupProfileOutput::status): <p>The identifier of the group profile.</p>
12 /// - [`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>
13 /// - [`role_principal_arn(Option<String>)`](crate::operation::get_group_profile::GetGroupProfileOutput::role_principal_arn): <p>The ARN of the IAM role principal. This role is associated with the group profile.</p>
14 /// - [`role_principal_id(Option<String>)`](crate::operation::get_group_profile::GetGroupProfileOutput::role_principal_id): <p>The unique identifier of the IAM role principal. This principal is associated with the group profile.</p>
15 /// - On failure, responds with [`SdkError<GetGroupProfileError>`](crate::operation::get_group_profile::GetGroupProfileError)
16 pub fn get_group_profile(&self) -> crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder {
17 crate::operation::get_group_profile::builders::GetGroupProfileFluentBuilder::new(self.handle.clone())
18 }
19}