aws_sdk_customerprofiles/client/list_profile_attribute_values.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListProfileAttributeValues`](crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - On success, responds with [`ListProfileAttributeValuesOutput`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput) with field(s):
/// - [`domain_name(Option<String>)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::domain_name): <p>The name of the domain.</p>
/// - [`attribute_name(Option<String>)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::attribute_name): <p>The attribute name.</p>
/// - [`items(Option<Vec::<AttributeValueItem>>)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::items): <p>The items returned as part of the response.</p>
/// - [`status_code(i32)`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesOutput::status_code): <p>The status code for the response.</p>
/// - On failure, responds with [`SdkError<ListProfileAttributeValuesError>`](crate::operation::list_profile_attribute_values::ListProfileAttributeValuesError)
pub fn list_profile_attribute_values(
&self,
) -> crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder {
crate::operation::list_profile_attribute_values::builders::ListProfileAttributeValuesFluentBuilder::new(self.handle.clone())
}
}