Struct aws_sdk_quicksight::model::LogicalTable
source · #[non_exhaustive]pub struct LogicalTable { /* private fields */ }
Expand description
A logical table is a unit that joins and that data transformations operate on. A logical table has a source, which can be either a physical table or result of a join. When a logical table points to a physical table, the logical table acts as a mutable copy of that physical table through transform operations.
Implementations§
source§impl LogicalTable
impl LogicalTable
sourcepub fn data_transforms(&self) -> Option<&[TransformOperation]>
pub fn data_transforms(&self) -> Option<&[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) -> Option<&LogicalTableSource>
pub fn source(&self) -> Option<&LogicalTableSource>
Source of this logical table.
source§impl LogicalTable
impl LogicalTable
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LogicalTable
.
Trait Implementations§
source§impl Clone for LogicalTable
impl Clone for LogicalTable
source§fn clone(&self) -> LogicalTable
fn clone(&self) -> LogicalTable
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 LogicalTable
impl Debug for LogicalTable
source§impl PartialEq<LogicalTable> for LogicalTable
impl PartialEq<LogicalTable> for LogicalTable
source§fn eq(&self, other: &LogicalTable) -> bool
fn eq(&self, other: &LogicalTable) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.