aws_sdk_taxsettings/client/
batch_get_tax_exemptions.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 [`BatchGetTaxExemptions`](crate::operation::batch_get_tax_exemptions::builders::BatchGetTaxExemptionsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`account_ids(impl Into<String>)`](crate::operation::batch_get_tax_exemptions::builders::BatchGetTaxExemptionsFluentBuilder::account_ids) / [`set_account_ids(Option<Vec::<String>>)`](crate::operation::batch_get_tax_exemptions::builders::BatchGetTaxExemptionsFluentBuilder::set_account_ids):<br>required: **true**<br><p>List of unique account identifiers.</p><br>
7    /// - On success, responds with [`BatchGetTaxExemptionsOutput`](crate::operation::batch_get_tax_exemptions::BatchGetTaxExemptionsOutput) with field(s):
8    ///   - [`tax_exemption_details_map(Option<HashMap::<String, TaxExemptionDetails>>)`](crate::operation::batch_get_tax_exemptions::BatchGetTaxExemptionsOutput::tax_exemption_details_map): <p>The tax exemption details map of accountId and tax exemption details.</p>
9    ///   - [`failed_accounts(Option<Vec::<String>>)`](crate::operation::batch_get_tax_exemptions::BatchGetTaxExemptionsOutput::failed_accounts): <p>The list of accounts that failed to get tax exemptions.</p>
10    /// - On failure, responds with [`SdkError<BatchGetTaxExemptionsError>`](crate::operation::batch_get_tax_exemptions::BatchGetTaxExemptionsError)
11    pub fn batch_get_tax_exemptions(&self) -> crate::operation::batch_get_tax_exemptions::builders::BatchGetTaxExemptionsFluentBuilder {
12        crate::operation::batch_get_tax_exemptions::builders::BatchGetTaxExemptionsFluentBuilder::new(self.handle.clone())
13    }
14}