pub struct Builder { /* private fields */ }
Expand description
A builder for TotalAggregationComputation
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn computation_id(self, input: impl Into<String>) -> Self
pub fn computation_id(self, input: impl Into<String>) -> Self
The ID for a computation.
sourcepub fn set_computation_id(self, input: Option<String>) -> Self
pub fn set_computation_id(self, input: Option<String>) -> Self
The ID for a computation.
sourcepub fn value(self, input: MeasureField) -> Self
pub fn value(self, input: MeasureField) -> Self
The value field that is used in a computation.
sourcepub fn set_value(self, input: Option<MeasureField>) -> Self
pub fn set_value(self, input: Option<MeasureField>) -> Self
The value field that is used in a computation.
sourcepub fn build(self) -> TotalAggregationComputation
pub fn build(self) -> TotalAggregationComputation
Consumes the builder and constructs a TotalAggregationComputation
.