// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetOpsSummary`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`sync_name(impl Into<String>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::sync_name) / [`set_sync_name(Option<String>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_sync_name): <p>Specify the name of a resource data sync to get.</p>
/// - [`filters(Vec<OpsFilter>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::filters) / [`set_filters(Option<Vec<OpsFilter>>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_filters): <p>Optional filters used to scope down the returned OpsData. </p>
/// - [`aggregators(Vec<OpsAggregator>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::aggregators) / [`set_aggregators(Option<Vec<OpsAggregator>>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_aggregators): <p>Optional aggregators that return counts of OpsData based on one or more expressions.</p>
/// - [`result_attributes(Vec<OpsResultAttribute>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::result_attributes) / [`set_result_attributes(Option<Vec<OpsResultAttribute>>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_result_attributes): <p>The OpsData data type to return.</p>
/// - [`next_token(impl Into<String>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_next_token): <p>A token to start the list. Use this token to get the next set of results. </p>
/// - [`max_results(i32)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_max_results): <p>The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.</p>
/// - On success, responds with [`GetOpsSummaryOutput`](crate::operation::get_ops_summary::GetOpsSummaryOutput) with field(s):
/// - [`entities(Option<Vec<OpsEntity>>)`](crate::operation::get_ops_summary::GetOpsSummaryOutput::entities): <p>The list of aggregated details and filtered OpsData.</p>
/// - [`next_token(Option<String>)`](crate::operation::get_ops_summary::GetOpsSummaryOutput::next_token): <p>The token for the next set of items to return. Use this token to get the next set of results.</p>
/// - On failure, responds with [`SdkError<GetOpsSummaryError>`](crate::operation::get_ops_summary::GetOpsSummaryError)
pub fn get_ops_summary(
&self,
) -> crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder {
crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::new(
self.handle.clone(),
)
}
}