Struct aws_sdk_glue::types::builders::ColumnStatisticsBuilder
source · #[non_exhaustive]pub struct ColumnStatisticsBuilder { /* private fields */ }Expand description
A builder for ColumnStatistics.
Implementations§
source§impl ColumnStatisticsBuilder
impl ColumnStatisticsBuilder
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.
This field is required.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 get_column_name(&self) -> &Option<String>
pub fn get_column_name(&self) -> &Option<String>
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.
This field is required.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 get_column_type(&self) -> &Option<String>
pub fn get_column_type(&self) -> &Option<String>
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.
This field is required.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 get_analyzed_time(&self) -> &Option<DateTime>
pub fn get_analyzed_time(&self) -> &Option<DateTime>
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 get_statistics_data(&self) -> &Option<ColumnStatisticsData>
pub fn get_statistics_data(&self) -> &Option<ColumnStatisticsData>
A ColumnStatisticData object that contains the statistics data values.
sourcepub fn build(self) -> Result<ColumnStatistics, BuildError>
pub fn build(self) -> Result<ColumnStatistics, BuildError>
Consumes the builder and constructs a ColumnStatistics.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ColumnStatisticsBuilder
impl Clone for ColumnStatisticsBuilder
source§fn clone(&self) -> ColumnStatisticsBuilder
fn clone(&self) -> ColumnStatisticsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ColumnStatisticsBuilder
impl Debug for ColumnStatisticsBuilder
source§impl Default for ColumnStatisticsBuilder
impl Default for ColumnStatisticsBuilder
source§fn default() -> ColumnStatisticsBuilder
fn default() -> ColumnStatisticsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ColumnStatisticsBuilder
impl PartialEq for ColumnStatisticsBuilder
source§fn eq(&self, other: &ColumnStatisticsBuilder) -> bool
fn eq(&self, other: &ColumnStatisticsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ColumnStatisticsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ColumnStatisticsBuilder
impl Send for ColumnStatisticsBuilder
impl Sync for ColumnStatisticsBuilder
impl Unpin for ColumnStatisticsBuilder
impl UnwindSafe for ColumnStatisticsBuilder
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.