1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListCalculatedAttributesForProfile`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous call to ListCalculatedAttributesForProfile.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of calculated attributes returned per page.</p><br>
    ///   - [`domain_name(impl Into<String>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
    ///   - [`profile_id(impl Into<String>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::profile_id) / [`set_profile_id(Option<String>)`](crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::set_profile_id):<br>required: **true**<br><p>The unique identifier of a customer profile.</p><br>
    /// - On success, responds with [`ListCalculatedAttributesForProfileOutput`](crate::operation::list_calculated_attributes_for_profile::ListCalculatedAttributesForProfileOutput) with field(s):
    ///   - [`items(Option<Vec::<ListCalculatedAttributeForProfileItem>>)`](crate::operation::list_calculated_attributes_for_profile::ListCalculatedAttributesForProfileOutput::items): <p>The list of calculated attributes.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_calculated_attributes_for_profile::ListCalculatedAttributesForProfileOutput::next_token): <p>The pagination token from the previous call to ListCalculatedAttributesForProfile.</p>
    /// - On failure, responds with [`SdkError<ListCalculatedAttributesForProfileError>`](crate::operation::list_calculated_attributes_for_profile::ListCalculatedAttributesForProfileError)
    pub fn list_calculated_attributes_for_profile(
        &self,
    ) -> crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder {
        crate::operation::list_calculated_attributes_for_profile::builders::ListCalculatedAttributesForProfileFluentBuilder::new(self.handle.clone())
    }
}