Struct aws_sdk_glue::model::column_statistics::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for ColumnStatistics.
Implementations§
source§impl Builder
impl Builder
sourcepub fn column_name(self, input: impl Into<String>) -> Self
pub fn column_name(self, input: impl Into<String>) -> Self
Name of column which statistics belong to.
sourcepub fn set_column_name(self, input: Option<String>) -> Self
pub fn set_column_name(self, input: Option<String>) -> Self
Name of column which statistics belong to.
sourcepub fn column_type(self, input: impl Into<String>) -> Self
pub fn column_type(self, input: impl Into<String>) -> Self
The data type of the column.
sourcepub fn set_column_type(self, input: Option<String>) -> Self
pub fn set_column_type(self, input: Option<String>) -> Self
The data type of the column.
sourcepub fn analyzed_time(self, input: DateTime) -> Self
pub fn analyzed_time(self, input: DateTime) -> Self
The timestamp of when column statistics were generated.
sourcepub fn set_analyzed_time(self, input: Option<DateTime>) -> Self
pub fn set_analyzed_time(self, input: Option<DateTime>) -> Self
The timestamp of when column statistics were generated.
sourcepub fn statistics_data(self, input: ColumnStatisticsData) -> Self
pub fn statistics_data(self, input: ColumnStatisticsData) -> Self
A ColumnStatisticData object that contains the statistics data values.
sourcepub fn set_statistics_data(self, input: Option<ColumnStatisticsData>) -> Self
pub fn set_statistics_data(self, input: Option<ColumnStatisticsData>) -> Self
A ColumnStatisticData object that contains the statistics data values.
sourcepub fn build(self) -> ColumnStatistics
pub fn build(self) -> ColumnStatistics
Consumes the builder and constructs a ColumnStatistics.