// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`BatchGetAssetPropertyValueHistory`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`entries(BatchGetAssetPropertyValueHistoryEntry)`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::entries) / [`set_entries(Option<Vec::<BatchGetAssetPropertyValueHistoryEntry>>)`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::set_entries):<br>required: **true**<br><p>The list of asset property historical value entries for the batch get request. You can specify up to 16 entries per request.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to be used for the next set of paginated results.</p><br>
/// - [`max_results(i32)`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first.</p> <ul> <li> <p>The size of the result set is equal to 4 MB.</p></li> <li> <p>The number of data points in the result set is equal to the value of <code>maxResults</code>. The maximum value of <code>maxResults</code> is 20000.</p></li> </ul><br>
/// - On success, responds with [`BatchGetAssetPropertyValueHistoryOutput`](crate::operation::batch_get_asset_property_value_history::BatchGetAssetPropertyValueHistoryOutput) with field(s):
/// - [`error_entries(Vec::<BatchGetAssetPropertyValueHistoryErrorEntry>)`](crate::operation::batch_get_asset_property_value_history::BatchGetAssetPropertyValueHistoryOutput::error_entries): <p>A list of the errors (if any) associated with the batch request. Each error entry contains the <code>entryId</code> of the entry that failed.</p>
/// - [`success_entries(Vec::<BatchGetAssetPropertyValueHistorySuccessEntry>)`](crate::operation::batch_get_asset_property_value_history::BatchGetAssetPropertyValueHistoryOutput::success_entries): <p>A list of entries that were processed successfully by this batch request. Each success entry contains the <code>entryId</code> of the entry that succeeded and the latest query result.</p>
/// - [`skipped_entries(Vec::<BatchGetAssetPropertyValueHistorySkippedEntry>)`](crate::operation::batch_get_asset_property_value_history::BatchGetAssetPropertyValueHistoryOutput::skipped_entries): <p>A list of entries that were not processed by this batch request. because these entries had been completely processed by previous paginated requests. Each skipped entry contains the <code>entryId</code> of the entry that skipped.</p>
/// - [`next_token(Option<String>)`](crate::operation::batch_get_asset_property_value_history::BatchGetAssetPropertyValueHistoryOutput::next_token): <p>The token for the next set of results, or null if there are no additional results.</p>
/// - On failure, responds with [`SdkError<BatchGetAssetPropertyValueHistoryError>`](crate::operation::batch_get_asset_property_value_history::BatchGetAssetPropertyValueHistoryError)
pub fn batch_get_asset_property_value_history(
&self,
) -> crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder {
crate::operation::batch_get_asset_property_value_history::builders::BatchGetAssetPropertyValueHistoryFluentBuilder::new(self.handle.clone())
}
}