Struct aws_sdk_quicksight::types::builders::LogicalTableBuilder
source · #[non_exhaustive]pub struct LogicalTableBuilder { /* private fields */ }Expand description
A builder for LogicalTable.
Implementations§
source§impl LogicalTableBuilder
impl LogicalTableBuilder
sourcepub fn data_transforms(self, input: TransformOperation) -> Self
pub fn data_transforms(self, input: TransformOperation) -> Self
Appends an item to data_transforms.
To override the contents of this collection use set_data_transforms.
Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null.
sourcepub fn set_data_transforms(self, input: Option<Vec<TransformOperation>>) -> Self
pub fn set_data_transforms(self, input: Option<Vec<TransformOperation>>) -> Self
Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null.
sourcepub fn get_data_transforms(&self) -> &Option<Vec<TransformOperation>>
pub fn get_data_transforms(&self) -> &Option<Vec<TransformOperation>>
Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null.
sourcepub fn source(self, input: LogicalTableSource) -> Self
pub fn source(self, input: LogicalTableSource) -> Self
Source of this logical table.
sourcepub fn set_source(self, input: Option<LogicalTableSource>) -> Self
pub fn set_source(self, input: Option<LogicalTableSource>) -> Self
Source of this logical table.
sourcepub fn get_source(&self) -> &Option<LogicalTableSource>
pub fn get_source(&self) -> &Option<LogicalTableSource>
Source of this logical table.
sourcepub fn build(self) -> LogicalTable
pub fn build(self) -> LogicalTable
Consumes the builder and constructs a LogicalTable.
Trait Implementations§
source§impl Clone for LogicalTableBuilder
impl Clone for LogicalTableBuilder
source§fn clone(&self) -> LogicalTableBuilder
fn clone(&self) -> LogicalTableBuilder
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 LogicalTableBuilder
impl Debug for LogicalTableBuilder
source§impl Default for LogicalTableBuilder
impl Default for LogicalTableBuilder
source§fn default() -> LogicalTableBuilder
fn default() -> LogicalTableBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<LogicalTableBuilder> for LogicalTableBuilder
impl PartialEq<LogicalTableBuilder> for LogicalTableBuilder
source§fn eq(&self, other: &LogicalTableBuilder) -> bool
fn eq(&self, other: &LogicalTableBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LogicalTableBuilder
Auto Trait Implementations§
impl RefUnwindSafe for LogicalTableBuilder
impl Send for LogicalTableBuilder
impl Sync for LogicalTableBuilder
impl Unpin for LogicalTableBuilder
impl UnwindSafe for LogicalTableBuilder
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