Struct aws_sdk_xray::operation::get_time_series_service_statistics::builders::GetTimeSeriesServiceStatisticsOutputBuilder
source · #[non_exhaustive]pub struct GetTimeSeriesServiceStatisticsOutputBuilder { /* private fields */ }
Expand description
A builder for GetTimeSeriesServiceStatisticsOutput
.
Implementations§
source§impl GetTimeSeriesServiceStatisticsOutputBuilder
impl GetTimeSeriesServiceStatisticsOutputBuilder
sourcepub fn time_series_service_statistics(
self,
input: TimeSeriesServiceStatistics,
) -> Self
pub fn time_series_service_statistics( self, input: TimeSeriesServiceStatistics, ) -> Self
Appends an item to time_series_service_statistics
.
To override the contents of this collection use set_time_series_service_statistics
.
The collection of statistics.
sourcepub fn set_time_series_service_statistics(
self,
input: Option<Vec<TimeSeriesServiceStatistics>>,
) -> Self
pub fn set_time_series_service_statistics( self, input: Option<Vec<TimeSeriesServiceStatistics>>, ) -> Self
The collection of statistics.
sourcepub fn get_time_series_service_statistics(
&self,
) -> &Option<Vec<TimeSeriesServiceStatistics>>
pub fn get_time_series_service_statistics( &self, ) -> &Option<Vec<TimeSeriesServiceStatistics>>
The collection of statistics.
sourcepub fn contains_old_group_versions(self, input: bool) -> Self
pub fn contains_old_group_versions(self, input: bool) -> Self
A flag indicating whether or not a group's filter expression has been consistent, or if a returned aggregation might show statistics 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 or not a group's filter expression has been consistent, or if a returned aggregation might show statistics 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 or not a group's filter expression has been consistent, or if a returned aggregation might show statistics 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) -> GetTimeSeriesServiceStatisticsOutput
pub fn build(self) -> GetTimeSeriesServiceStatisticsOutput
Consumes the builder and constructs a GetTimeSeriesServiceStatisticsOutput
.
Trait Implementations§
source§impl Clone for GetTimeSeriesServiceStatisticsOutputBuilder
impl Clone for GetTimeSeriesServiceStatisticsOutputBuilder
source§fn clone(&self) -> GetTimeSeriesServiceStatisticsOutputBuilder
fn clone(&self) -> GetTimeSeriesServiceStatisticsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetTimeSeriesServiceStatisticsOutputBuilder
impl Default for GetTimeSeriesServiceStatisticsOutputBuilder
source§fn default() -> GetTimeSeriesServiceStatisticsOutputBuilder
fn default() -> GetTimeSeriesServiceStatisticsOutputBuilder
source§impl PartialEq for GetTimeSeriesServiceStatisticsOutputBuilder
impl PartialEq for GetTimeSeriesServiceStatisticsOutputBuilder
source§fn eq(&self, other: &GetTimeSeriesServiceStatisticsOutputBuilder) -> bool
fn eq(&self, other: &GetTimeSeriesServiceStatisticsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetTimeSeriesServiceStatisticsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetTimeSeriesServiceStatisticsOutputBuilder
impl RefUnwindSafe for GetTimeSeriesServiceStatisticsOutputBuilder
impl Send for GetTimeSeriesServiceStatisticsOutputBuilder
impl Sync for GetTimeSeriesServiceStatisticsOutputBuilder
impl Unpin for GetTimeSeriesServiceStatisticsOutputBuilder
impl UnwindSafe for GetTimeSeriesServiceStatisticsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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