aws_sdk_ssmsap/client/list_sub_check_rule_results.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 [`ListSubCheckRuleResults`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`sub_check_result_id(impl Into<String>)`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::sub_check_result_id) / [`set_sub_check_result_id(Option<String>)`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::set_sub_check_result_id):<br>required: **true**<br><p>The ID of the sub check result.</p><br>
8 /// - [`max_results(i32)`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::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>
9 /// - [`next_token(impl Into<String>)`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
10 /// - On success, responds with [`ListSubCheckRuleResultsOutput`](crate::operation::list_sub_check_rule_results::ListSubCheckRuleResultsOutput) with field(s):
11 /// - [`rule_results(Option<Vec::<RuleResult>>)`](crate::operation::list_sub_check_rule_results::ListSubCheckRuleResultsOutput::rule_results): <p>The rule results of a sub-check belonging to a configuration check operation.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_sub_check_rule_results::ListSubCheckRuleResultsOutput::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>
13 /// - On failure, responds with [`SdkError<ListSubCheckRuleResultsError>`](crate::operation::list_sub_check_rule_results::ListSubCheckRuleResultsError)
14 pub fn list_sub_check_rule_results(&self) -> crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder {
15 crate::operation::list_sub_check_rule_results::builders::ListSubCheckRuleResultsFluentBuilder::new(self.handle.clone())
16 }
17}