Struct aws_sdk_honeycode::types::builders::TableColumnBuilder
source · #[non_exhaustive]pub struct TableColumnBuilder { /* private fields */ }
Expand description
A builder for TableColumn
.
Implementations§
source§impl TableColumnBuilder
impl TableColumnBuilder
sourcepub fn table_column_id(self, input: impl Into<String>) -> Self
pub fn table_column_id(self, input: impl Into<String>) -> Self
The id of the column in the table.
sourcepub fn set_table_column_id(self, input: Option<String>) -> Self
pub fn set_table_column_id(self, input: Option<String>) -> Self
The id of the column in the table.
sourcepub fn table_column_name(self, input: impl Into<String>) -> Self
pub fn table_column_name(self, input: impl Into<String>) -> Self
The name of the column in the table.
sourcepub fn set_table_column_name(self, input: Option<String>) -> Self
pub fn set_table_column_name(self, input: Option<String>) -> Self
The name of the column in the table.
sourcepub fn format(self, input: Format) -> Self
pub fn format(self, input: Format) -> Self
The column level format that is applied in the table. An empty value in this field means that the column format is the default value 'AUTO'.
sourcepub fn set_format(self, input: Option<Format>) -> Self
pub fn set_format(self, input: Option<Format>) -> Self
The column level format that is applied in the table. An empty value in this field means that the column format is the default value 'AUTO'.
sourcepub fn build(self) -> TableColumn
pub fn build(self) -> TableColumn
Consumes the builder and constructs a TableColumn
.
Trait Implementations§
source§impl Clone for TableColumnBuilder
impl Clone for TableColumnBuilder
source§fn clone(&self) -> TableColumnBuilder
fn clone(&self) -> TableColumnBuilder
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 TableColumnBuilder
impl Debug for TableColumnBuilder
source§impl Default for TableColumnBuilder
impl Default for TableColumnBuilder
source§fn default() -> TableColumnBuilder
fn default() -> TableColumnBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TableColumnBuilder> for TableColumnBuilder
impl PartialEq<TableColumnBuilder> for TableColumnBuilder
source§fn eq(&self, other: &TableColumnBuilder) -> bool
fn eq(&self, other: &TableColumnBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.