aws-sdk-ssmsap 1.100.0

AWS SDK for AWS Systems Manager for SAP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListSubCheckResults`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`operation_id(impl Into<String>)`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::operation_id) / [`set_operation_id(Option<String>)`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::set_operation_id):<br>required: **true**<br><p>The ID of the configuration check operation.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
    /// - On success, responds with [`ListSubCheckResultsOutput`](crate::operation::list_sub_check_results::ListSubCheckResultsOutput) with field(s):
    ///   - [`sub_check_results(Option<Vec::<SubCheckResult>>)`](crate::operation::list_sub_check_results::ListSubCheckResultsOutput::sub_check_results): <p>The sub-check results of a configuration check operation.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_sub_check_results::ListSubCheckResultsOutput::next_token): <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
    /// - On failure, responds with [`SdkError<ListSubCheckResultsError>`](crate::operation::list_sub_check_results::ListSubCheckResultsError)
    pub fn list_sub_check_results(&self) -> crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder {
        crate::operation::list_sub_check_results::builders::ListSubCheckResultsFluentBuilder::new(self.handle.clone())
    }
}