aws_sdk_ssmsap/client/list_configuration_check_operations.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 [`ListConfigurationCheckOperations`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`application_id(impl Into<String>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::set_application_id):<br>required: **true**<br><p>The ID of the application.</p><br>
8 /// - [`list_mode(ConfigurationCheckOperationListingMode)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::list_mode) / [`set_list_mode(Option<ConfigurationCheckOperationListingMode>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::set_list_mode):<br>required: **false**<br><p>The mode for listing configuration check operations. Defaults to "LATEST_PER_CHECK".</p> <ul> <li> <p>LATEST_PER_CHECK - Will list the latest configuration check operation per check type.</p></li> <li> <p>ALL_OPERATIONS - Will list all configuration check operations performed on the application.</p></li> </ul><br>
9 /// - [`max_results(i32)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::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>
10 /// - [`next_token(impl Into<String>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
11 /// - [`filters(Filter)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::set_filters):<br>required: **false**<br><p>The filters of an operation.</p><br>
12 /// - On success, responds with [`ListConfigurationCheckOperationsOutput`](crate::operation::list_configuration_check_operations::ListConfigurationCheckOperationsOutput) with field(s):
13 /// - [`configuration_check_operations(Option<Vec::<ConfigurationCheckOperation>>)`](crate::operation::list_configuration_check_operations::ListConfigurationCheckOperationsOutput::configuration_check_operations): <p>The configuration check operations performed by AWS Systems Manager for SAP.</p>
14 /// - [`next_token(Option<String>)`](crate::operation::list_configuration_check_operations::ListConfigurationCheckOperationsOutput::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>
15 /// - On failure, responds with [`SdkError<ListConfigurationCheckOperationsError>`](crate::operation::list_configuration_check_operations::ListConfigurationCheckOperationsError)
16 pub fn list_configuration_check_operations(
17 &self,
18 ) -> crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder {
19 crate::operation::list_configuration_check_operations::builders::ListConfigurationCheckOperationsFluentBuilder::new(self.handle.clone())
20 }
21}