aws_sdk_securityir/client/list_case_edits.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListCaseEdits`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`next_token(impl Into<String>)`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::set_next_token):<br>required: **false**<br><p>Optional element for a customer provided token.</p><br>
/// - [`max_results(i32)`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::set_max_results):<br>required: **false**<br><p>Optional element to identify how many results to obtain. There is a maximum value of 25.</p><br>
/// - [`case_id(impl Into<String>)`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::case_id) / [`set_case_id(Option<String>)`](crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::set_case_id):<br>required: **true**<br><p>Required element used with ListCaseEdits to identify the case to query.</p><br>
/// - On success, responds with [`ListCaseEditsOutput`](crate::operation::list_case_edits::ListCaseEditsOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::list_case_edits::ListCaseEditsOutput::next_token): <p>Optional element.</p>
/// - [`items(Option<Vec::<CaseEditItem>>)`](crate::operation::list_case_edits::ListCaseEditsOutput::items): <p>Response element for ListCaseEdits that includes the action, eventtimestamp, message, and principal for the response.</p>
/// - [`total(Option<i32>)`](crate::operation::list_case_edits::ListCaseEditsOutput::total): <p>Response element for ListCaseEdits that identifies the total number of edits.</p>
/// - On failure, responds with [`SdkError<ListCaseEditsError>`](crate::operation::list_case_edits::ListCaseEditsError)
pub fn list_case_edits(&self) -> crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder {
crate::operation::list_case_edits::builders::ListCaseEditsFluentBuilder::new(self.handle.clone())
}
}