aws_sdk_customerprofiles/client/batch_get_calculated_attribute_for_profile.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`BatchGetCalculatedAttributeForProfile`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`calculated_attribute_name(impl Into<String>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::calculated_attribute_name) / [`set_calculated_attribute_name(Option<String>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::set_calculated_attribute_name):<br>required: **true**<br><p>The unique name of the calculated attribute.</p><br>
/// - [`domain_name(impl Into<String>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
/// - [`profile_ids(impl Into<String>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::profile_ids) / [`set_profile_ids(Option<Vec::<String>>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::set_profile_ids):<br>required: **true**<br><p>List of unique identifiers for customer profiles to retrieve.</p><br>
/// - [`condition_overrides(ConditionOverrides)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::condition_overrides) / [`set_condition_overrides(Option<ConditionOverrides>)`](crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::set_condition_overrides):<br>required: **false**<br><p>Overrides the condition block within the original calculated attribute definition.</p><br>
/// - On success, responds with [`BatchGetCalculatedAttributeForProfileOutput`](crate::operation::batch_get_calculated_attribute_for_profile::BatchGetCalculatedAttributeForProfileOutput) with field(s):
/// - [`errors(Option<Vec::<BatchGetCalculatedAttributeForProfileError>>)`](crate::operation::batch_get_calculated_attribute_for_profile::BatchGetCalculatedAttributeForProfileOutput::errors): <p>List of errors for calculated attribute values that could not be retrieved.</p>
/// - [`calculated_attribute_values(Option<Vec::<CalculatedAttributeValue>>)`](crate::operation::batch_get_calculated_attribute_for_profile::BatchGetCalculatedAttributeForProfileOutput::calculated_attribute_values): <p>List of calculated attribute values retrieved.</p>
/// - [`condition_overrides(Option<ConditionOverrides>)`](crate::operation::batch_get_calculated_attribute_for_profile::BatchGetCalculatedAttributeForProfileOutput::condition_overrides): <p>Overrides the condition block within the original calculated attribute definition.</p>
/// - On failure, responds with [`SdkError<BatchGetCalculatedAttributeForProfileError>`](crate::operation::batch_get_calculated_attribute_for_profile::BatchGetCalculatedAttributeForProfileError)
pub fn batch_get_calculated_attribute_for_profile(
&self,
) -> crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder {
crate::operation::batch_get_calculated_attribute_for_profile::builders::BatchGetCalculatedAttributeForProfileFluentBuilder::new(
self.handle.clone(),
)
}
}