#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[InsightImpactGraphService]>
pub fn services(&self) -> Option<&[InsightImpactGraphService]>
The Amazon Web Services instrumented services related to the insight.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetInsightImpactGraphOutput
impl Debug for GetInsightImpactGraphOutput
source§impl PartialEq<GetInsightImpactGraphOutput> for GetInsightImpactGraphOutput
impl PartialEq<GetInsightImpactGraphOutput> for GetInsightImpactGraphOutput
source§fn eq(&self, other: &GetInsightImpactGraphOutput) -> bool
fn eq(&self, other: &GetInsightImpactGraphOutput) -> bool
This method tests for
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>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetInsightImpactGraphOutput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more