aws_sdk_detective/client/get_members.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetMembers`](crate::operation::get_members::builders::GetMembersFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`graph_arn(impl Into<String>)`](crate::operation::get_members::builders::GetMembersFluentBuilder::graph_arn) / [`set_graph_arn(Option<String>)`](crate::operation::get_members::builders::GetMembersFluentBuilder::set_graph_arn):<br>required: **true**<br><p>The ARN of the behavior graph for which to request the member details.</p><br>
/// - [`account_ids(impl Into<String>)`](crate::operation::get_members::builders::GetMembersFluentBuilder::account_ids) / [`set_account_ids(Option<Vec::<String>>)`](crate::operation::get_members::builders::GetMembersFluentBuilder::set_account_ids):<br>required: **true**<br><p>The list of Amazon Web Services account identifiers for the member account for which to return member details. You can request details for up to 50 member accounts at a time.</p> <p>You cannot use <code>GetMembers</code> to retrieve information about member accounts that were removed from the behavior graph.</p><br>
/// - On success, responds with [`GetMembersOutput`](crate::operation::get_members::GetMembersOutput) with field(s):
/// - [`member_details(Option<Vec::<MemberDetail>>)`](crate::operation::get_members::GetMembersOutput::member_details): <p>The member account details that Detective is returning in response to the request.</p>
/// - [`unprocessed_accounts(Option<Vec::<UnprocessedAccount>>)`](crate::operation::get_members::GetMembersOutput::unprocessed_accounts): <p>The requested member accounts for which Detective was unable to return member details.</p> <p>For each account, provides the reason why the request could not be processed.</p>
/// - On failure, responds with [`SdkError<GetMembersError>`](crate::operation::get_members::GetMembersError)
pub fn get_members(&self) -> crate::operation::get_members::builders::GetMembersFluentBuilder {
crate::operation::get_members::builders::GetMembersFluentBuilder::new(self.handle.clone())
}
}