aws_sdk_applicationinsights/client/list_configuration_history.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 [`ListConfigurationHistory`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`resource_group_name(impl Into<String>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::resource_group_name) / [`set_resource_group_name(Option<String>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_resource_group_name):<br>required: **false**<br><p>Resource group to which the application belongs.</p><br>
8 /// - [`start_time(DateTime)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::start_time) / [`set_start_time(Option<DateTime>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_start_time):<br>required: **false**<br><p>The start time of the event.</p><br>
9 /// - [`end_time(DateTime)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::end_time) / [`set_end_time(Option<DateTime>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_end_time):<br>required: **false**<br><p>The end time of the event.</p><br>
10 /// - [`event_status(ConfigurationEventStatus)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::event_status) / [`set_event_status(Option<ConfigurationEventStatus>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_event_status):<br>required: **false**<br><p>The status of the configuration update event. Possible values include INFO, WARN, and ERROR.</p><br>
11 /// - [`max_results(i32)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results returned by <code>ListConfigurationHistory</code> in paginated output. When this parameter is used, <code>ListConfigurationHistory</code> returns only <code>MaxResults</code> in a single page along with a <code>NextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListConfigurationHistory</code> request with the returned <code>NextToken</code> value. If this parameter is not used, then <code>ListConfigurationHistory</code> returns all results.</p><br>
12 /// - [`next_token(impl Into<String>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>NextToken</code> value returned from a previous paginated <code>ListConfigurationHistory</code> request where <code>MaxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>NextToken</code> value. This value is <code>null</code> when there are no more results to return.</p><br>
13 /// - [`account_id(impl Into<String>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::set_account_id):<br>required: **false**<br><p>The Amazon Web Services account ID for the resource group owner.</p><br>
14 /// - On success, responds with [`ListConfigurationHistoryOutput`](crate::operation::list_configuration_history::ListConfigurationHistoryOutput) with field(s):
15 /// - [`event_list(Option<Vec::<ConfigurationEvent>>)`](crate::operation::list_configuration_history::ListConfigurationHistoryOutput::event_list): <p>The list of configuration events and their corresponding details.</p>
16 /// - [`next_token(Option<String>)`](crate::operation::list_configuration_history::ListConfigurationHistoryOutput::next_token): <p>The <code>NextToken</code> value to include in a future <code>ListConfigurationHistory</code> request. When the results of a <code>ListConfigurationHistory</code> request exceed <code>MaxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
17 /// - On failure, responds with [`SdkError<ListConfigurationHistoryError>`](crate::operation::list_configuration_history::ListConfigurationHistoryError)
18 pub fn list_configuration_history(&self) -> crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder {
19 crate::operation::list_configuration_history::builders::ListConfigurationHistoryFluentBuilder::new(self.handle.clone())
20 }
21}