Struct aws_sdk_codeguruprofiler::operation::batch_get_frame_metric_data::builders::BatchGetFrameMetricDataInputBuilder
source · #[non_exhaustive]pub struct BatchGetFrameMetricDataInputBuilder { /* private fields */ }
Expand description
A builder for BatchGetFrameMetricDataInput
.
Implementations§
source§impl BatchGetFrameMetricDataInputBuilder
impl BatchGetFrameMetricDataInputBuilder
sourcepub fn profiling_group_name(self, input: impl Into<String>) -> Self
pub fn profiling_group_name(self, input: impl Into<String>) -> Self
The name of the profiling group associated with the the frame metrics used to return the time series values.
This field is required.sourcepub fn set_profiling_group_name(self, input: Option<String>) -> Self
pub fn set_profiling_group_name(self, input: Option<String>) -> Self
The name of the profiling group associated with the the frame metrics used to return the time series values.
sourcepub fn get_profiling_group_name(&self) -> &Option<String>
pub fn get_profiling_group_name(&self) -> &Option<String>
The name of the profiling group associated with the the frame metrics used to return the time series values.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start time of the time period for the frame metrics used to return the time series values. This is specified 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_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start time of the time period for the frame metrics used to return the time series values. This is specified 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_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The start time of the time period for the frame metrics used to return the time series values. This is specified 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 end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The end time of the time period for the returned time series values. This is specified 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_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The end time of the time period for the returned time series values. This is specified 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_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The end time of the time period for the returned time series values. This is specified 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: impl Into<String>) -> Self
pub fn period(self, input: impl Into<String>) -> Self
The duration of the frame metrics used to return the time series values. Specify using the ISO 8601 format. The maximum period duration is one day (PT24H
or P1D
).
sourcepub fn set_period(self, input: Option<String>) -> Self
pub fn set_period(self, input: Option<String>) -> Self
The duration of the frame metrics used to return the time series values. Specify using the ISO 8601 format. The maximum period duration is one day (PT24H
or P1D
).
sourcepub fn get_period(&self) -> &Option<String>
pub fn get_period(&self) -> &Option<String>
The duration of the frame metrics used to return the time series values. Specify using the ISO 8601 format. The maximum period duration is one day (PT24H
or P1D
).
sourcepub fn target_resolution(self, input: AggregationPeriod) -> Self
pub fn target_resolution(self, input: AggregationPeriod) -> Self
The requested resolution of time steps for the returned time series of values. If the requested target resolution is not available due to data not being retained we provide a best effort result by falling back to the most granular available resolution after the target resolution. There are 3 valid values.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn set_target_resolution(self, input: Option<AggregationPeriod>) -> Self
pub fn set_target_resolution(self, input: Option<AggregationPeriod>) -> Self
The requested resolution of time steps for the returned time series of values. If the requested target resolution is not available due to data not being retained we provide a best effort result by falling back to the most granular available resolution after the target resolution. There are 3 valid values.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn get_target_resolution(&self) -> &Option<AggregationPeriod>
pub fn get_target_resolution(&self) -> &Option<AggregationPeriod>
The requested resolution of time steps for the returned time series of values. If the requested target resolution is not available due to data not being retained we provide a best effort result by falling back to the most granular available resolution after the target resolution. There are 3 valid values.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn frame_metrics(self, input: FrameMetric) -> Self
pub fn frame_metrics(self, input: FrameMetric) -> Self
Appends an item to frame_metrics
.
To override the contents of this collection use set_frame_metrics
.
The details of the metrics that are used to request a time series of values. The metric includes the name of the frame, the aggregation type to calculate the metric value for the frame, and the thread states to use to get the count for the metric value of the frame.
sourcepub fn set_frame_metrics(self, input: Option<Vec<FrameMetric>>) -> Self
pub fn set_frame_metrics(self, input: Option<Vec<FrameMetric>>) -> Self
The details of the metrics that are used to request a time series of values. The metric includes the name of the frame, the aggregation type to calculate the metric value for the frame, and the thread states to use to get the count for the metric value of the frame.
sourcepub fn get_frame_metrics(&self) -> &Option<Vec<FrameMetric>>
pub fn get_frame_metrics(&self) -> &Option<Vec<FrameMetric>>
The details of the metrics that are used to request a time series of values. The metric includes the name of the frame, the aggregation type to calculate the metric value for the frame, and the thread states to use to get the count for the metric value of the frame.
sourcepub fn build(self) -> Result<BatchGetFrameMetricDataInput, BuildError>
pub fn build(self) -> Result<BatchGetFrameMetricDataInput, BuildError>
Consumes the builder and constructs a BatchGetFrameMetricDataInput
.
source§impl BatchGetFrameMetricDataInputBuilder
impl BatchGetFrameMetricDataInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<BatchGetFrameMetricDataOutput, SdkError<BatchGetFrameMetricDataError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<BatchGetFrameMetricDataOutput, SdkError<BatchGetFrameMetricDataError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchGetFrameMetricDataInputBuilder
impl Clone for BatchGetFrameMetricDataInputBuilder
source§fn clone(&self) -> BatchGetFrameMetricDataInputBuilder
fn clone(&self) -> BatchGetFrameMetricDataInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetFrameMetricDataInputBuilder
impl Default for BatchGetFrameMetricDataInputBuilder
source§fn default() -> BatchGetFrameMetricDataInputBuilder
fn default() -> BatchGetFrameMetricDataInputBuilder
source§impl PartialEq for BatchGetFrameMetricDataInputBuilder
impl PartialEq for BatchGetFrameMetricDataInputBuilder
source§fn eq(&self, other: &BatchGetFrameMetricDataInputBuilder) -> bool
fn eq(&self, other: &BatchGetFrameMetricDataInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetFrameMetricDataInputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetFrameMetricDataInputBuilder
impl RefUnwindSafe for BatchGetFrameMetricDataInputBuilder
impl Send for BatchGetFrameMetricDataInputBuilder
impl Sync for BatchGetFrameMetricDataInputBuilder
impl Unpin for BatchGetFrameMetricDataInputBuilder
impl UnwindSafe for BatchGetFrameMetricDataInputBuilder
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