#[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§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.impl StructuralPartialEq for GetServiceGraphOutput
Auto Trait Implementations§
impl Freeze for GetServiceGraphOutput
impl RefUnwindSafe for GetServiceGraphOutput
impl Send for GetServiceGraphOutput
impl Sync for GetServiceGraphOutput
impl Unpin for GetServiceGraphOutput
impl UnwindSafe for GetServiceGraphOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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