pub struct ListConfigurationHistory { /* private fields */ }
Expand description
Fluent builder constructing a request to ListConfigurationHistory
.
Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are:
-
INFO: creating a new alarm or updating an alarm threshold.
-
WARN: alarm not created due to insufficient data points used to predict thresholds.
-
ERROR: alarm not created due to permission errors or exceeding quotas.
Implementations§
source§impl ListConfigurationHistory
impl ListConfigurationHistory
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListConfigurationHistory, AwsResponseRetryClassifier>, SdkError<ListConfigurationHistoryError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListConfigurationHistory, AwsResponseRetryClassifier>, SdkError<ListConfigurationHistoryError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListConfigurationHistoryOutput, SdkError<ListConfigurationHistoryError>>
pub async fn send(
self
) -> Result<ListConfigurationHistoryOutput, SdkError<ListConfigurationHistoryError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListConfigurationHistoryPaginator
pub fn into_paginator(self) -> ListConfigurationHistoryPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn resource_group_name(self, input: impl Into<String>) -> Self
pub fn resource_group_name(self, input: impl Into<String>) -> Self
Resource group to which the application belongs.
sourcepub fn set_resource_group_name(self, input: Option<String>) -> Self
pub fn set_resource_group_name(self, input: Option<String>) -> Self
Resource group to which the application belongs.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start time of the event.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start time of the event.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The end time of the event.
sourcepub fn event_status(self, input: ConfigurationEventStatus) -> Self
pub fn event_status(self, input: ConfigurationEventStatus) -> Self
The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
sourcepub fn set_event_status(self, input: Option<ConfigurationEventStatus>) -> Self
pub fn set_event_status(self, input: Option<ConfigurationEventStatus>) -> Self
The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results returned by ListConfigurationHistory
in paginated output. When this parameter is used, ListConfigurationHistory
returns only MaxResults
in a single page along with a NextToken
response element. The remaining results of the initial request can be seen by sending another ListConfigurationHistory
request with the returned NextToken
value. If this parameter is not used, then ListConfigurationHistory
returns all results.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results returned by ListConfigurationHistory
in paginated output. When this parameter is used, ListConfigurationHistory
returns only MaxResults
in a single page along with a NextToken
response element. The remaining results of the initial request can be seen by sending another ListConfigurationHistory
request with the returned NextToken
value. If this parameter is not used, then ListConfigurationHistory
returns all results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The NextToken
value returned from a previous paginated ListConfigurationHistory
request where MaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken
value. This value is null
when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The NextToken
value returned from a previous paginated ListConfigurationHistory
request where MaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken
value. This value is null
when there are no more results to return.
Trait Implementations§
source§impl Clone for ListConfigurationHistory
impl Clone for ListConfigurationHistory
source§fn clone(&self) -> ListConfigurationHistory
fn clone(&self) -> ListConfigurationHistory
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more