Struct aws_sdk_glue::model::date_column_statistics_data::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for DateColumnStatisticsData.
Implementations§
source§impl Builder
impl Builder
sourcepub fn minimum_value(self, input: DateTime) -> Self
pub fn minimum_value(self, input: DateTime) -> Self
The lowest value in the column.
sourcepub fn set_minimum_value(self, input: Option<DateTime>) -> Self
pub fn set_minimum_value(self, input: Option<DateTime>) -> Self
The lowest value in the column.
sourcepub fn maximum_value(self, input: DateTime) -> Self
pub fn maximum_value(self, input: DateTime) -> Self
The highest value in the column.
sourcepub fn set_maximum_value(self, input: Option<DateTime>) -> Self
pub fn set_maximum_value(self, input: Option<DateTime>) -> Self
The highest value in the column.
sourcepub fn number_of_nulls(self, input: i64) -> Self
pub fn number_of_nulls(self, input: i64) -> Self
The number of null values in the column.
sourcepub fn set_number_of_nulls(self, input: Option<i64>) -> Self
pub fn set_number_of_nulls(self, input: Option<i64>) -> Self
The number of null values in the column.
sourcepub fn number_of_distinct_values(self, input: i64) -> Self
pub fn number_of_distinct_values(self, input: i64) -> Self
The number of distinct values in a column.
sourcepub fn set_number_of_distinct_values(self, input: Option<i64>) -> Self
pub fn set_number_of_distinct_values(self, input: Option<i64>) -> Self
The number of distinct values in a column.
sourcepub fn build(self) -> DateColumnStatisticsData
pub fn build(self) -> DateColumnStatisticsData
Consumes the builder and constructs a DateColumnStatisticsData.