Struct aws_sdk_devopsguru::operation::describe_account_overview::DescribeAccountOverviewOutput
source · #[non_exhaustive]pub struct DescribeAccountOverviewOutput {
pub reactive_insights: i32,
pub proactive_insights: i32,
pub mean_time_to_recover_in_milliseconds: i64,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.reactive_insights: i32
An integer that specifies the number of open reactive insights in your Amazon Web Services account that were created during the time range passed in.
proactive_insights: i32
An integer that specifies the number of open proactive insights in your Amazon Web Services account that were created during the time range passed in.
mean_time_to_recover_in_milliseconds: i64
The Mean Time to Recover (MTTR) for all closed insights that were created during the time range passed in.
Implementations§
source§impl DescribeAccountOverviewOutput
impl DescribeAccountOverviewOutput
sourcepub fn reactive_insights(&self) -> i32
pub fn reactive_insights(&self) -> i32
An integer that specifies the number of open reactive insights in your Amazon Web Services account that were created during the time range passed in.
sourcepub fn proactive_insights(&self) -> i32
pub fn proactive_insights(&self) -> i32
An integer that specifies the number of open proactive insights in your Amazon Web Services account that were created during the time range passed in.
sourcepub fn mean_time_to_recover_in_milliseconds(&self) -> i64
pub fn mean_time_to_recover_in_milliseconds(&self) -> i64
The Mean Time to Recover (MTTR) for all closed insights that were created during the time range passed in.
source§impl DescribeAccountOverviewOutput
impl DescribeAccountOverviewOutput
sourcepub fn builder() -> DescribeAccountOverviewOutputBuilder
pub fn builder() -> DescribeAccountOverviewOutputBuilder
Creates a new builder-style object to manufacture DescribeAccountOverviewOutput
.
Trait Implementations§
source§impl Clone for DescribeAccountOverviewOutput
impl Clone for DescribeAccountOverviewOutput
source§fn clone(&self) -> DescribeAccountOverviewOutput
fn clone(&self) -> DescribeAccountOverviewOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeAccountOverviewOutput
impl PartialEq for DescribeAccountOverviewOutput
source§fn eq(&self, other: &DescribeAccountOverviewOutput) -> bool
fn eq(&self, other: &DescribeAccountOverviewOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeAccountOverviewOutput
impl RequestId for DescribeAccountOverviewOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeAccountOverviewOutput
Auto Trait Implementations§
impl Freeze for DescribeAccountOverviewOutput
impl RefUnwindSafe for DescribeAccountOverviewOutput
impl Send for DescribeAccountOverviewOutput
impl Sync for DescribeAccountOverviewOutput
impl Unpin for DescribeAccountOverviewOutput
impl UnwindSafe for DescribeAccountOverviewOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more