// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListAssessmentTemplates`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`assessment_target_arns(impl Into<String>)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::assessment_target_arns) / [`set_assessment_target_arns(Option<Vec::<String>>)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::set_assessment_target_arns):<br>required: **false**<br><p>A list of ARNs that specifies the assessment targets whose assessment templates you want to list.</p><br>
/// - [`filter(AssessmentTemplateFilter)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::filter) / [`set_filter(Option<AssessmentTemplateFilter>)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::set_filter):<br>required: **false**<br><p>You can use this parameter to specify a subset of data to be included in the action's response.</p> <p>For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::set_next_token):<br>required: **false**<br><p>You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the <b>ListAssessmentTemplates</b> action. Subsequent calls to the action fill <b>nextToken</b> in the request with the value of <b>NextToken</b> from the previous response to continue listing data.</p><br>
/// - [`max_results(i32)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::set_max_results):<br>required: **false**<br><p>You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500.</p><br>
/// - On success, responds with [`ListAssessmentTemplatesOutput`](crate::operation::list_assessment_templates::ListAssessmentTemplatesOutput) with field(s):
/// - [`assessment_template_arns(Vec::<String>)`](crate::operation::list_assessment_templates::ListAssessmentTemplatesOutput::assessment_template_arns): <p>A list of ARNs that specifies the assessment templates returned by the action.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_assessment_templates::ListAssessmentTemplatesOutput::next_token): <p> When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the <b>nextToken</b> parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.</p>
/// - On failure, responds with [`SdkError<ListAssessmentTemplatesError>`](crate::operation::list_assessment_templates::ListAssessmentTemplatesError)
pub fn list_assessment_templates(&self) -> crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder {
crate::operation::list_assessment_templates::builders::ListAssessmentTemplatesFluentBuilder::new(self.handle.clone())
}
}