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 get_table_column_id(&self) -> &Option<String>
pub fn get_table_column_id(&self) -> &Option<String>
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 get_table_column_name(&self) -> &Option<String>
pub fn get_table_column_name(&self) -> &Option<String>
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 get_format(&self) -> &Option<Format>
pub fn get_format(&self) -> &Option<Format>
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 for TableColumnBuilder
impl PartialEq 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 ==
.impl StructuralPartialEq for TableColumnBuilder
Auto Trait Implementations§
impl RefUnwindSafe for TableColumnBuilder
impl Send for TableColumnBuilder
impl Sync for TableColumnBuilder
impl Unpin for TableColumnBuilder
impl UnwindSafe for TableColumnBuilder
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.