aws_sdk_ssm/client/get_ops_summary.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 [`GetOpsSummary`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - [`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>
11 /// - [`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>
12 /// - [`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>
13 /// - On success, responds with [`GetOpsSummaryOutput`](crate::operation::get_ops_summary::GetOpsSummaryOutput) with field(s):
14 /// - [`entities(Option<Vec::<OpsEntity>>)`](crate::operation::get_ops_summary::GetOpsSummaryOutput::entities): <p>The list of aggregated details and filtered OpsData.</p>
15 /// - [`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>
16 /// - On failure, responds with [`SdkError<GetOpsSummaryError>`](crate::operation::get_ops_summary::GetOpsSummaryError)
17 pub fn get_ops_summary(&self) -> crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder {
18 crate::operation::get_ops_summary::builders::GetOpsSummaryFluentBuilder::new(self.handle.clone())
19 }
20}