1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetChangeLogs`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`GetChangeLogsOutput`](crate::operation::get_change_logs::GetChangeLogsOutput) with field(s):
    ///   - [`change_logs(Option<Vec::<ChangeLog>>)`](crate::operation::get_change_logs::GetChangeLogsOutput::change_logs): <p>The list of user activity for the control.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<GetChangeLogsError>`](crate::operation::get_change_logs::GetChangeLogsError)
    pub fn get_change_logs(&self) -> crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder {
        crate::operation::get_change_logs::builders::GetChangeLogsFluentBuilder::new(self.handle.clone())
    }
}