Struct aws_sdk_timestreamquery::types::builders::TypeBuilder
source · #[non_exhaustive]pub struct TypeBuilder { /* private fields */ }
Expand description
A builder for Type
.
Implementations§
source§impl TypeBuilder
impl TypeBuilder
sourcepub fn scalar_type(self, input: ScalarType) -> Self
pub fn scalar_type(self, input: ScalarType) -> Self
Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time.
sourcepub fn set_scalar_type(self, input: Option<ScalarType>) -> Self
pub fn set_scalar_type(self, input: Option<ScalarType>) -> Self
Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time.
sourcepub fn get_scalar_type(&self) -> &Option<ScalarType>
pub fn get_scalar_type(&self) -> &Option<ScalarType>
Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time.
sourcepub fn array_column_info(self, input: ColumnInfo) -> Self
pub fn array_column_info(self, input: ColumnInfo) -> Self
Indicates if the column is an array.
sourcepub fn set_array_column_info(self, input: Option<ColumnInfo>) -> Self
pub fn set_array_column_info(self, input: Option<ColumnInfo>) -> Self
Indicates if the column is an array.
sourcepub fn get_array_column_info(&self) -> &Option<ColumnInfo>
pub fn get_array_column_info(&self) -> &Option<ColumnInfo>
Indicates if the column is an array.
sourcepub fn time_series_measure_value_column_info(self, input: ColumnInfo) -> Self
pub fn time_series_measure_value_column_info(self, input: ColumnInfo) -> Self
Indicates if the column is a timeseries data type.
sourcepub fn set_time_series_measure_value_column_info(
self,
input: Option<ColumnInfo>
) -> Self
pub fn set_time_series_measure_value_column_info( self, input: Option<ColumnInfo> ) -> Self
Indicates if the column is a timeseries data type.
sourcepub fn get_time_series_measure_value_column_info(&self) -> &Option<ColumnInfo>
pub fn get_time_series_measure_value_column_info(&self) -> &Option<ColumnInfo>
Indicates if the column is a timeseries data type.
sourcepub fn row_column_info(self, input: ColumnInfo) -> Self
pub fn row_column_info(self, input: ColumnInfo) -> Self
Appends an item to row_column_info
.
To override the contents of this collection use set_row_column_info
.
Indicates if the column is a row.
sourcepub fn set_row_column_info(self, input: Option<Vec<ColumnInfo>>) -> Self
pub fn set_row_column_info(self, input: Option<Vec<ColumnInfo>>) -> Self
Indicates if the column is a row.
sourcepub fn get_row_column_info(&self) -> &Option<Vec<ColumnInfo>>
pub fn get_row_column_info(&self) -> &Option<Vec<ColumnInfo>>
Indicates if the column is a row.
Trait Implementations§
source§impl Clone for TypeBuilder
impl Clone for TypeBuilder
source§fn clone(&self) -> TypeBuilder
fn clone(&self) -> TypeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TypeBuilder
impl Debug for TypeBuilder
source§impl Default for TypeBuilder
impl Default for TypeBuilder
source§fn default() -> TypeBuilder
fn default() -> TypeBuilder
source§impl PartialEq<TypeBuilder> for TypeBuilder
impl PartialEq<TypeBuilder> for TypeBuilder
source§fn eq(&self, other: &TypeBuilder) -> bool
fn eq(&self, other: &TypeBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.