aws_sdk_customerprofiles/client/
list_profile_attribute_values.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 [`ListProfileAttributeValues`](crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_name(impl Into<String>)`](crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique identifier of the domain.</p><br>
7    ///   - [`attribute_name(impl Into<String>)`](crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder::attribute_name) / [`set_attribute_name(Option<String>)`](crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder::set_attribute_name):<br>required: **true**<br><p>The attribute name.</p><br>
8    /// - On success, responds with [`ListProfileAttributeValuesOutput`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput) with field(s):
9    ///   - [`domain_name(Option<String>)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::domain_name): <p>The name of the domain.</p>
10    ///   - [`attribute_name(Option<String>)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::attribute_name): <p>The attribute name.</p>
11    ///   - [`items(Option<Vec::<AttributeValueItem>>)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::items): <p>The items returned as part of the response.</p>
12    ///   - [`status_code(i32)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::status_code): <p>The status code for the response.</p>
13    /// - On failure, responds with [`SdkError<ListProfileAttributeValuesError>`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesError)
14    pub fn list_profile_attribute_values(
15        &self,
16    ) -> crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder {
17        crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder::new(self.handle.clone())
18    }
19}