aws_sdk_securityir/client/
batch_get_member_account_details.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 [`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><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 errors 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())
    }
}