aws_sdk_controlcatalog/client/list_common_controls.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListCommonControls`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results on a page or for an API request call.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token that's used to fetch the next set of results.</p><br>
/// - [`common_control_filter(CommonControlFilter)`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::common_control_filter) / [`set_common_control_filter(Option<CommonControlFilter>)`](crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::set_common_control_filter):<br>required: **false**<br><p>An optional filter that narrows the results to a specific objective.</p> <p>This filter allows you to specify one objective ARN at a time. Passing multiple ARNs in the <code>CommonControlFilter</code> isn’t currently supported.</p><br>
/// - On success, responds with [`ListCommonControlsOutput`](crate::operation::list_common_controls::ListCommonControlsOutput) with field(s):
/// - [`common_controls(Vec::<CommonControlSummary>)`](crate::operation::list_common_controls::ListCommonControlsOutput::common_controls): <p>The list of common controls that the <code>ListCommonControls</code> API returns.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_common_controls::ListCommonControlsOutput::next_token): <p>The pagination token that's used to fetch the next set of results.</p>
/// - On failure, responds with [`SdkError<ListCommonControlsError>`](crate::operation::list_common_controls::ListCommonControlsError)
pub fn list_common_controls(&self) -> crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder {
crate::operation::list_common_controls::builders::ListCommonControlsFluentBuilder::new(self.handle.clone())
}
}