#[non_exhaustive]pub struct GetServiceGraphOutputBuilder { /* private fields */ }
Expand description
A builder for GetServiceGraphOutput
.
Implementations§
source§impl GetServiceGraphOutputBuilder
impl GetServiceGraphOutputBuilder
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start of the time frame for which the graph was generated.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start of the time frame for which the graph was generated.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The start of the time frame for which the graph was generated.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The end of the time frame for which the graph was generated.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The end of the time frame for which the graph was generated.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The end of the time frame for which the graph was generated.
sourcepub fn services(self, input: Service) -> Self
pub fn services(self, input: Service) -> Self
Appends an item to services
.
To override the contents of this collection use set_services
.
The services that have processed a traced request during the specified time frame.
sourcepub fn set_services(self, input: Option<Vec<Service>>) -> Self
pub fn set_services(self, input: Option<Vec<Service>>) -> Self
The services that have processed a traced request during the specified time frame.
sourcepub fn get_services(&self) -> &Option<Vec<Service>>
pub fn get_services(&self) -> &Option<Vec<Service>>
The services that have processed a traced request during the specified time frame.
sourcepub fn contains_old_group_versions(self, input: bool) -> Self
pub fn contains_old_group_versions(self, input: bool) -> Self
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 set_contains_old_group_versions(self, input: Option<bool>) -> Self
pub fn set_contains_old_group_versions(self, input: Option<bool>) -> Self
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 get_contains_old_group_versions(&self) -> &Option<bool>
pub fn get_contains_old_group_versions(&self) -> &Option<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, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Pagination token.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Pagination token.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Pagination token.
sourcepub fn build(self) -> GetServiceGraphOutput
pub fn build(self) -> GetServiceGraphOutput
Consumes the builder and constructs a GetServiceGraphOutput
.
Trait Implementations§
source§impl Clone for GetServiceGraphOutputBuilder
impl Clone for GetServiceGraphOutputBuilder
source§fn clone(&self) -> GetServiceGraphOutputBuilder
fn clone(&self) -> GetServiceGraphOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetServiceGraphOutputBuilder
impl Debug for GetServiceGraphOutputBuilder
source§impl Default for GetServiceGraphOutputBuilder
impl Default for GetServiceGraphOutputBuilder
source§fn default() -> GetServiceGraphOutputBuilder
fn default() -> GetServiceGraphOutputBuilder
source§impl PartialEq for GetServiceGraphOutputBuilder
impl PartialEq for GetServiceGraphOutputBuilder
source§fn eq(&self, other: &GetServiceGraphOutputBuilder) -> bool
fn eq(&self, other: &GetServiceGraphOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetServiceGraphOutputBuilder
Auto Trait Implementations§
impl Freeze for GetServiceGraphOutputBuilder
impl RefUnwindSafe for GetServiceGraphOutputBuilder
impl Send for GetServiceGraphOutputBuilder
impl Sync for GetServiceGraphOutputBuilder
impl Unpin for GetServiceGraphOutputBuilder
impl UnwindSafe for GetServiceGraphOutputBuilder
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