// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`BatchGetMemberAccountDetails`](crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`membership_id(impl Into<String>)`](crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder::membership_id) / [`set_membership_id(Option<String>)`](crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder::set_membership_id):<br>required: **true**<br><p>Required element used in combination with BatchGetMemberAccountDetails to identify the membership ID to query.</p><br>
/// - [`account_ids(impl Into<String>)`](crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder::account_ids) / [`set_account_ids(Option<Vec::<String>>)`](crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder::set_account_ids):<br>required: **true**<br><p>Optional element to query the membership relationship status to a provided list of account IDs.</p><note> <p>AWS account ID's may appear less than 12 characters and need to be zero-prepended. An example would be <code>123123123</code> which is nine digits, and with zero-prepend would be <code>000123123123</code>. Not zero-prepending to 12 digits could result in errors.</p> </note><br>
/// - On success, responds with [`BatchGetMemberAccountDetailsOutput`](crate::operation::batch_get_member_account_details::BatchGetMemberAccountDetailsOutput) with field(s):
/// - [`items(Option<Vec::<GetMembershipAccountDetailItem>>)`](crate::operation::batch_get_member_account_details::BatchGetMemberAccountDetailsOutput::items): <p>The response element providing responses for requests to GetMembershipAccountDetails.</p>
/// - [`errors(Option<Vec::<GetMembershipAccountDetailError>>)`](crate::operation::batch_get_member_account_details::BatchGetMemberAccountDetailsOutput::errors): <p>The response element providing error messages for requests to GetMembershipAccountDetails.</p>
/// - On failure, responds with [`SdkError<BatchGetMemberAccountDetailsError>`](crate::operation::batch_get_member_account_details::BatchGetMemberAccountDetailsError)
pub fn batch_get_member_account_details(
&self,
) -> crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder {
crate::operation::batch_get_member_account_details::builders::BatchGetMemberAccountDetailsFluentBuilder::new(self.handle.clone())
}
}