1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeIndexFields`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl Into<String>)`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::set_domain_name):<br>required: **true**<br><p>The name of the domain you want to describe.</p><br>
    ///   - [`field_names(impl Into<String>)`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::field_names) / [`set_field_names(Option<Vec::<String>>)`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::set_field_names):<br>required: **false**<br><p>A list of the index fields you want to describe. If not specified, information is returned for all configured index fields.</p><br>
    ///   - [`deployed(bool)`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::deployed) / [`set_deployed(Option<bool>)`](crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::set_deployed):<br>required: **false**<br><p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p><br>
    /// - On success, responds with [`DescribeIndexFieldsOutput`](crate::operation::describe_index_fields::DescribeIndexFieldsOutput) with field(s):
    ///   - [`index_fields(Vec::<IndexFieldStatus>)`](crate::operation::describe_index_fields::DescribeIndexFieldsOutput::index_fields): <p>The index fields configured for the domain.</p>
    /// - On failure, responds with [`SdkError<DescribeIndexFieldsError>`](crate::operation::describe_index_fields::DescribeIndexFieldsError)
    pub fn describe_index_fields(&self) -> crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder {
        crate::operation::describe_index_fields::builders::DescribeIndexFieldsFluentBuilder::new(self.handle.clone())
    }
}