// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeFeaturedResultsSet`](crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`index_id(impl Into<String>)`](crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder::index_id) / [`set_index_id(Option<String>)`](crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder::set_index_id):<br>required: **true**<br><p>The identifier of the index used for featuring results.</p><br>
/// - [`featured_results_set_id(impl Into<String>)`](crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder::featured_results_set_id) / [`set_featured_results_set_id(Option<String>)`](crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder::set_featured_results_set_id):<br>required: **true**<br><p>The identifier of the set of featured results that you want to get information on.</p><br>
/// - On success, responds with [`DescribeFeaturedResultsSetOutput`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput) with field(s):
/// - [`featured_results_set_id(Option<String>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::featured_results_set_id): <p>The identifier of the set of featured results.</p>
/// - [`featured_results_set_name(Option<String>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::featured_results_set_name): <p>The name for the set of featured results.</p>
/// - [`description(Option<String>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::description): <p>The description for the set of featured results.</p>
/// - [`status(Option<FeaturedResultsSetStatus>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::status): <p>The current status of the set of featured results. When the value is <code>ACTIVE</code>, featured results are ready for use. You can still configure your settings before setting the status to <code>ACTIVE</code>. You can set the status to <code>ACTIVE</code> or <code>INACTIVE</code> using the <a href="https://docs.aws.amazon.com/kendra/latest/dg/API_UpdateFeaturedResultsSet.html">UpdateFeaturedResultsSet</a> API. The queries you specify for featured results must be unique per featured results set for each index, whether the status is <code>ACTIVE</code> or <code>INACTIVE</code>.</p>
/// - [`query_texts(Option<Vec::<String>>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::query_texts): <p>The list of queries for featuring results. For more information on the list of queries, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/API_FeaturedResultsSet.html">FeaturedResultsSet</a>.</p>
/// - [`featured_documents_with_metadata(Option<Vec::<FeaturedDocumentWithMetadata>>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::featured_documents_with_metadata): <p>The list of document IDs for the documents you want to feature with their metadata information. For more information on the list of featured documents, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/API_FeaturedResultsSet.html">FeaturedResultsSet</a>.</p>
/// - [`featured_documents_missing(Option<Vec::<FeaturedDocumentMissing>>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::featured_documents_missing): <p>The list of document IDs that don't exist but you have specified as featured documents. Amazon Kendra cannot feature these documents if they don't exist in the index. You can check the status of a document and its ID or check for documents with status errors using the <a href="https://docs.aws.amazon.com/kendra/latest/dg/API_BatchGetDocumentStatus.html">BatchGetDocumentStatus</a> API.</p>
/// - [`last_updated_timestamp(Option<i64>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::last_updated_timestamp): <p>The timestamp when the set of featured results was last updated.</p>
/// - [`creation_timestamp(Option<i64>)`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetOutput::creation_timestamp): <p>The Unix timestamp when the set of the featured results was created.</p>
/// - On failure, responds with [`SdkError<DescribeFeaturedResultsSetError>`](crate::operation::describe_featured_results_set::DescribeFeaturedResultsSetError)
pub fn describe_featured_results_set(
&self,
) -> crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder {
crate::operation::describe_featured_results_set::builders::DescribeFeaturedResultsSetFluentBuilder::new(self.handle.clone())
}
}