#[non_exhaustive]pub struct AggregatedProfileTimeBuilder { /* private fields */ }
Expand description
A builder for AggregatedProfileTime
.
Implementations§
source§impl AggregatedProfileTimeBuilder
impl AggregatedProfileTimeBuilder
sourcepub fn start(self, input: DateTime) -> Self
pub fn start(self, input: DateTime) -> Self
The time that aggregation of posted agent profiles for a profiling group starts. The aggregation profile contains profiles posted by the agent starting at this time for an aggregation period specified by the period
property of the AggregatedProfileTime
object.
Specify start
using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn set_start(self, input: Option<DateTime>) -> Self
pub fn set_start(self, input: Option<DateTime>) -> Self
The time that aggregation of posted agent profiles for a profiling group starts. The aggregation profile contains profiles posted by the agent starting at this time for an aggregation period specified by the period
property of the AggregatedProfileTime
object.
Specify start
using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn get_start(&self) -> &Option<DateTime>
pub fn get_start(&self) -> &Option<DateTime>
The time that aggregation of posted agent profiles for a profiling group starts. The aggregation profile contains profiles posted by the agent starting at this time for an aggregation period specified by the period
property of the AggregatedProfileTime
object.
Specify start
using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn period(self, input: AggregationPeriod) -> Self
pub fn period(self, input: AggregationPeriod) -> Self
The aggregation period. This indicates the period during which an aggregation profile collects posted agent profiles for a profiling group. Use one of three valid durations that are specified using the ISO 8601 format.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn set_period(self, input: Option<AggregationPeriod>) -> Self
pub fn set_period(self, input: Option<AggregationPeriod>) -> Self
The aggregation period. This indicates the period during which an aggregation profile collects posted agent profiles for a profiling group. Use one of three valid durations that are specified using the ISO 8601 format.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn get_period(&self) -> &Option<AggregationPeriod>
pub fn get_period(&self) -> &Option<AggregationPeriod>
The aggregation period. This indicates the period during which an aggregation profile collects posted agent profiles for a profiling group. Use one of three valid durations that are specified using the ISO 8601 format.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn build(self) -> AggregatedProfileTime
pub fn build(self) -> AggregatedProfileTime
Consumes the builder and constructs a AggregatedProfileTime
.
Trait Implementations§
source§impl Clone for AggregatedProfileTimeBuilder
impl Clone for AggregatedProfileTimeBuilder
source§fn clone(&self) -> AggregatedProfileTimeBuilder
fn clone(&self) -> AggregatedProfileTimeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AggregatedProfileTimeBuilder
impl Debug for AggregatedProfileTimeBuilder
source§impl Default for AggregatedProfileTimeBuilder
impl Default for AggregatedProfileTimeBuilder
source§fn default() -> AggregatedProfileTimeBuilder
fn default() -> AggregatedProfileTimeBuilder
source§impl PartialEq for AggregatedProfileTimeBuilder
impl PartialEq for AggregatedProfileTimeBuilder
source§fn eq(&self, other: &AggregatedProfileTimeBuilder) -> bool
fn eq(&self, other: &AggregatedProfileTimeBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AggregatedProfileTimeBuilder
Auto Trait Implementations§
impl Freeze for AggregatedProfileTimeBuilder
impl RefUnwindSafe for AggregatedProfileTimeBuilder
impl Send for AggregatedProfileTimeBuilder
impl Sync for AggregatedProfileTimeBuilder
impl Unpin for AggregatedProfileTimeBuilder
impl UnwindSafe for AggregatedProfileTimeBuilder
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> 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