#[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<AggregatedProfileTimeBuilder> for AggregatedProfileTimeBuilder
impl PartialEq<AggregatedProfileTimeBuilder> 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 ==
.