// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetProducts`](crate::operation::get_products::builders::GetProductsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::get_products::builders::GetProductsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`service_code(impl Into<String>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::service_code) / [`set_service_code(Option<String>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::set_service_code):<br>required: **true**<br><p>The code for the service whose products you want to retrieve. </p><br>
/// - [`filters(Filter)`](crate::operation::get_products::builders::GetProductsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::set_filters):<br>required: **false**<br><p>The list of filters that limit the returned products. only products that match all filters are returned.</p><br>
/// - [`format_version(impl Into<String>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::format_version) / [`set_format_version(Option<String>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::set_format_version):<br>required: **false**<br><p>The format version that you want the response to be in.</p> <p>Valid values are: <code>aws_v1</code> </p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token that indicates the next set of results that you want to retrieve.</p><br>
/// - [`max_results(i32)`](crate::operation::get_products::builders::GetProductsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_products::builders::GetProductsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response.</p><br>
/// - On success, responds with [`GetProductsOutput`](crate::operation::get_products::GetProductsOutput) with field(s):
/// - [`format_version(Option<String>)`](crate::operation::get_products::GetProductsOutput::format_version): <p>The format version of the response. For example, aws_v1.</p>
/// - [`price_list(Option<Vec::<String>>)`](crate::operation::get_products::GetProductsOutput::price_list): <p>The list of products that match your filters. The list contains both the product metadata and the price information.</p>
/// - [`next_token(Option<String>)`](crate::operation::get_products::GetProductsOutput::next_token): <p>The pagination token that indicates the next set of results to retrieve.</p>
/// - On failure, responds with [`SdkError<GetProductsError>`](crate::operation::get_products::GetProductsError)
pub fn get_products(&self) -> crate::operation::get_products::builders::GetProductsFluentBuilder {
crate::operation::get_products::builders::GetProductsFluentBuilder::new(self.handle.clone())
}
}