#[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.