Struct aws_sdk_glue::model::string_column_statistics_data::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for StringColumnStatisticsData.
Implementations§
source§impl Builder
impl Builder
sourcepub fn maximum_length(self, input: i64) -> Self
pub fn maximum_length(self, input: i64) -> Self
The size of the longest string in the column.
sourcepub fn set_maximum_length(self, input: Option<i64>) -> Self
pub fn set_maximum_length(self, input: Option<i64>) -> Self
The size of the longest string in the column.
sourcepub fn average_length(self, input: f64) -> Self
pub fn average_length(self, input: f64) -> Self
The average string length in the column.
sourcepub fn set_average_length(self, input: Option<f64>) -> Self
pub fn set_average_length(self, input: Option<f64>) -> Self
The average string length 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) -> StringColumnStatisticsData
pub fn build(self) -> StringColumnStatisticsData
Consumes the builder and constructs a StringColumnStatisticsData.