// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListDataProductRevisions`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the domain of the data product revisions that you want to list.</p><br>
/// - [`identifier(impl Into<String>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the data product revision.</p><br>
/// - [`max_results(i32)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of asset filters to return in a single call to <code>ListDataProductRevisions</code>. When the number of data product revisions to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>ListDataProductRevisions</code> to list the next set of data product revisions.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::set_next_token):<br>required: **false**<br><p>When the number of data product revisions is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of data product revisions, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListDataProductRevisions</code> to list the next set of data product revisions.</p><br>
/// - On success, responds with [`ListDataProductRevisionsOutput`](crate::operation::list_data_product_revisions::ListDataProductRevisionsOutput) with field(s):
/// - [`items(Vec::<DataProductRevision>)`](crate::operation::list_data_product_revisions::ListDataProductRevisionsOutput::items): <p>The results of the <code>ListDataProductRevisions</code> action.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_data_product_revisions::ListDataProductRevisionsOutput::next_token): <p>When the number of data product revisions is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of data product revisions, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListDataProductRevisions</code> to list the next set of data product revisions.</p>
/// - On failure, responds with [`SdkError<ListDataProductRevisionsError>`](crate::operation::list_data_product_revisions::ListDataProductRevisionsError)
pub fn list_data_product_revisions(&self) -> crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder {
crate::operation::list_data_product_revisions::builders::ListDataProductRevisionsFluentBuilder::new(self.handle.clone())
}
}