// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListRecords`](crate::operation::list_records::builders::ListRecordsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_records::builders::ListRecordsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`feature_group_name(impl Into<String>)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::feature_group_name) / [`set_feature_group_name(Option<String>)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::set_feature_group_name):<br>required: **true**<br><p>The name or Amazon Resource Name (ARN) of the feature group to list records from.</p><br>
/// - [`max_results(i32)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of record identifiers to return in a single page of results. For the <code>InMemory</code> tier, this value is a hint and not a strict requirement. The response may contain more or fewer results than the specified <code>MaxResults</code>.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::set_next_token):<br>required: **false**<br><p>A token to resume pagination of <code>ListRecords</code> results.</p><br>
/// - [`include_soft_deleted_records(bool)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::include_soft_deleted_records) / [`set_include_soft_deleted_records(Option<bool>)`](crate::operation::list_records::builders::ListRecordsFluentBuilder::set_include_soft_deleted_records):<br>required: **false**<br><p>If set to <code>true</code>, the result includes records that have been soft deleted.</p><br>
/// - On success, responds with [`ListRecordsOutput`](crate::operation::list_records::ListRecordsOutput) with field(s):
/// - [`record_identifiers(Option<Vec::<String>>)`](crate::operation::list_records::ListRecordsOutput::record_identifiers): <p>A list of record identifier values for the records stored in the <code>OnlineStore</code>.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_records::ListRecordsOutput::next_token): <p>A token to resume pagination if the response includes more record identifiers than <code>MaxResults</code>.</p>
/// - On failure, responds with [`SdkError<ListRecordsError>`](crate::operation::list_records::ListRecordsError)
pub fn list_records(&self) -> crate::operation::list_records::builders::ListRecordsFluentBuilder {
crate::operation::list_records::builders::ListRecordsFluentBuilder::new(self.handle.clone())
}
}