Struct aws_sdk_quicksight::model::table_options::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for TableOptions
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn orientation(self, input: TableOrientation) -> Self
pub fn orientation(self, input: TableOrientation) -> Self
The orientation (vertical, horizontal) for a table.
sourcepub fn set_orientation(self, input: Option<TableOrientation>) -> Self
pub fn set_orientation(self, input: Option<TableOrientation>) -> Self
The orientation (vertical, horizontal) for a table.
sourcepub fn header_style(self, input: TableCellStyle) -> Self
pub fn header_style(self, input: TableCellStyle) -> Self
The table cell style of a table header.
sourcepub fn set_header_style(self, input: Option<TableCellStyle>) -> Self
pub fn set_header_style(self, input: Option<TableCellStyle>) -> Self
The table cell style of a table header.
sourcepub fn cell_style(self, input: TableCellStyle) -> Self
pub fn cell_style(self, input: TableCellStyle) -> Self
The table cell style of table cells.
sourcepub fn set_cell_style(self, input: Option<TableCellStyle>) -> Self
pub fn set_cell_style(self, input: Option<TableCellStyle>) -> Self
The table cell style of table cells.
sourcepub fn row_alternate_color_options(self, input: RowAlternateColorOptions) -> Self
pub fn row_alternate_color_options(self, input: RowAlternateColorOptions) -> Self
The row alternate color options (widget status, row alternate colors) for a table.
sourcepub fn set_row_alternate_color_options(
self,
input: Option<RowAlternateColorOptions>
) -> Self
pub fn set_row_alternate_color_options(
self,
input: Option<RowAlternateColorOptions>
) -> Self
The row alternate color options (widget status, row alternate colors) for a table.
sourcepub fn build(self) -> TableOptions
pub fn build(self) -> TableOptions
Consumes the builder and constructs a TableOptions
.