#[non_exhaustive]pub struct GetServiceGraphOutput {
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub services: Option<Vec<Service>>,
pub contains_old_group_versions: bool,
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.start_time: Option<DateTime>
The start of the time frame for which the graph was generated.
end_time: Option<DateTime>
The end of the time frame for which the graph was generated.
services: Option<Vec<Service>>
The services that have processed a traced request during the specified time frame.
contains_old_group_versions: bool
A flag indicating whether the group's filter expression has been consistent, or if the returned service graph may show traces from an older version of the group's filter expression.
next_token: Option<String>
Pagination token.
Implementations§
source§impl GetServiceGraphOutput
impl GetServiceGraphOutput
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start of the time frame for which the graph was generated.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The end of the time frame for which the graph was generated.
sourcepub fn services(&self) -> &[Service]
pub fn services(&self) -> &[Service]
The services that have processed a traced request during the specified time frame.
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 contains_old_group_versions(&self) -> bool
pub fn contains_old_group_versions(&self) -> bool
A flag indicating whether the group's filter expression has been consistent, or if the returned service graph may show traces from an older version of the group's filter expression.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token.
source§impl GetServiceGraphOutput
impl GetServiceGraphOutput
sourcepub fn builder() -> GetServiceGraphOutputBuilder
pub fn builder() -> GetServiceGraphOutputBuilder
Creates a new builder-style object to manufacture GetServiceGraphOutput
.
Trait Implementations§
source§impl Clone for GetServiceGraphOutput
impl Clone for GetServiceGraphOutput
source§fn clone(&self) -> GetServiceGraphOutput
fn clone(&self) -> GetServiceGraphOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetServiceGraphOutput
impl Debug for GetServiceGraphOutput
source§impl PartialEq for GetServiceGraphOutput
impl PartialEq for GetServiceGraphOutput
source§fn eq(&self, other: &GetServiceGraphOutput) -> bool
fn eq(&self, other: &GetServiceGraphOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetServiceGraphOutput
impl RequestId for GetServiceGraphOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.