pub struct DescribeAccountOverview { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeAccountOverview
.
For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights.
Implementations§
source§impl DescribeAccountOverview
impl DescribeAccountOverview
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeAccountOverview, AwsResponseRetryClassifier>, SdkError<DescribeAccountOverviewError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeAccountOverview, AwsResponseRetryClassifier>, SdkError<DescribeAccountOverviewError>>
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<DescribeAccountOverviewOutput, SdkError<DescribeAccountOverviewError>>
pub async fn send(
self
) -> Result<DescribeAccountOverviewOutput, SdkError<DescribeAccountOverviewError>>
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 from_time(self, input: DateTime) -> Self
pub fn from_time(self, input: DateTime) -> Self
The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.
sourcepub fn set_from_time(self, input: Option<DateTime>) -> Self
pub fn set_from_time(self, input: Option<DateTime>) -> Self
The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.
sourcepub fn to_time(self, input: DateTime) -> Self
pub fn to_time(self, input: DateTime) -> Self
The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.
sourcepub fn set_to_time(self, input: Option<DateTime>) -> Self
pub fn set_to_time(self, input: Option<DateTime>) -> Self
The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.
Trait Implementations§
source§impl Clone for DescribeAccountOverview
impl Clone for DescribeAccountOverview
source§fn clone(&self) -> DescribeAccountOverview
fn clone(&self) -> DescribeAccountOverview
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more