aws_sdk_auditmanager/client/get_change_logs.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetChangeLogs`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`assessment_id(impl Into<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::assessment_id) / [`set_assessment_id(Option<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::set_assessment_id):<br>required: **true**<br><p>The unique identifier for the assessment.</p><br>
8 /// - [`control_set_id(impl Into<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::control_set_id) / [`set_control_set_id(Option<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::set_control_set_id):<br>required: **false**<br><p>The unique identifier for the control set.</p><br>
9 /// - [`control_id(impl Into<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::control_id) / [`set_control_id(Option<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::set_control_id):<br>required: **false**<br><p>The unique identifier for the control.</p><br>
10 /// - [`next_token(impl Into<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token that's used to fetch the next set of results.</p><br>
11 /// - [`max_results(i32)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::set_max_results):<br>required: **false**<br><p>Represents the maximum number of results on a page or for an API request call.</p><br>
12 /// - On success, responds with [`GetChangeLogsOutput`](crate::operation::get_change_logs::GetChangeLogsOutput) with field(s):
13 /// - [`change_logs(Option<Vec::<ChangeLog>>)`](crate::operation::get_change_logs::GetChangeLogsOutput::change_logs): <p>The list of user activity for the control.</p>
14 /// - [`next_token(Option<String>)`](crate::operation::get_change_logs::GetChangeLogsOutput::next_token): <p>The pagination token that's used to fetch the next set of results.</p>
15 /// - On failure, responds with [`SdkError<GetChangeLogsError>`](crate::operation::get_change_logs::GetChangeLogsError)
16 pub fn get_change_logs(&self) -> crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder {
17 crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::new(self.handle.clone())
18 }
19}