#[non_exhaustive]pub struct GetInsightImpactGraphOutput {
pub insight_id: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub service_graph_start_time: Option<DateTime>,
pub service_graph_end_time: Option<DateTime>,
pub services: Option<Vec<InsightImpactGraphService>>,
pub next_token: Option<String>,
/* 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.insight_id: Option<String>
The insight's unique identifier.
start_time: Option<DateTime>
The provided start time.
end_time: Option<DateTime>
The provided end time.
service_graph_start_time: Option<DateTime>
The time, in Unix seconds, at which the service graph started.
service_graph_end_time: Option<DateTime>
The time, in Unix seconds, at which the service graph ended.
services: Option<Vec<InsightImpactGraphService>>
The Amazon Web Services instrumented services related to the insight.
next_token: Option<String>
Pagination token.
Implementations§
source§impl GetInsightImpactGraphOutput
impl GetInsightImpactGraphOutput
sourcepub fn insight_id(&self) -> Option<&str>
pub fn insight_id(&self) -> Option<&str>
The insight's unique identifier.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The provided start time.
sourcepub fn service_graph_start_time(&self) -> Option<&DateTime>
pub fn service_graph_start_time(&self) -> Option<&DateTime>
The time, in Unix seconds, at which the service graph started.
sourcepub fn service_graph_end_time(&self) -> Option<&DateTime>
pub fn service_graph_end_time(&self) -> Option<&DateTime>
The time, in Unix seconds, at which the service graph ended.
sourcepub fn services(&self) -> &[InsightImpactGraphService]
pub fn services(&self) -> &[InsightImpactGraphService]
The Amazon Web Services instrumented services related to the insight.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .services.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token.
source§impl GetInsightImpactGraphOutput
impl GetInsightImpactGraphOutput
sourcepub fn builder() -> GetInsightImpactGraphOutputBuilder
pub fn builder() -> GetInsightImpactGraphOutputBuilder
Creates a new builder-style object to manufacture GetInsightImpactGraphOutput
.
Trait Implementations§
source§impl Clone for GetInsightImpactGraphOutput
impl Clone for GetInsightImpactGraphOutput
source§fn clone(&self) -> GetInsightImpactGraphOutput
fn clone(&self) -> GetInsightImpactGraphOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetInsightImpactGraphOutput
impl Debug for GetInsightImpactGraphOutput
source§impl PartialEq for GetInsightImpactGraphOutput
impl PartialEq for GetInsightImpactGraphOutput
source§fn eq(&self, other: &GetInsightImpactGraphOutput) -> bool
fn eq(&self, other: &GetInsightImpactGraphOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetInsightImpactGraphOutput
impl RequestId for GetInsightImpactGraphOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetInsightImpactGraphOutput
Auto Trait Implementations§
impl Freeze for GetInsightImpactGraphOutput
impl RefUnwindSafe for GetInsightImpactGraphOutput
impl Send for GetInsightImpactGraphOutput
impl Sync for GetInsightImpactGraphOutput
impl Unpin for GetInsightImpactGraphOutput
impl UnwindSafe for GetInsightImpactGraphOutput
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