1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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):<br>required: **false**<br><p>Specify the name of a resource data sync to get.</p><br>
    ///   - [`filters(OpsFilter)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::filters) / [`set_filters(Option<Vec::<OpsFilter>>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_filters):<br>required: **false**<br><p>Optional filters used to scope down the returned OpsData. </p><br>
    ///   - [`aggregators(OpsAggregator)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::aggregators) / [`set_aggregators(Option<Vec::<OpsAggregator>>)`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::set_aggregators):<br>required: **false**<br><p>Optional aggregators that return counts of OpsData based on one or more expressions.</p><br>
    ///   - [`result_attributes(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):<br>required: **false**<br><p>The OpsData data type to return.</p><br>
    ///   - [`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):<br>required: **false**<br><p>A token to start the list. Use this token to get the next set of results. </p><br>
    ///   - [`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):<br>required: **false**<br><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><br>
    /// - 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())
    }
}