Struct aws_sdk_quicksight::types::RelationalTable  
source · #[non_exhaustive]pub struct RelationalTable {
    pub data_source_arn: Option<String>,
    pub catalog: Option<String>,
    pub schema: Option<String>,
    pub name: Option<String>,
    pub input_columns: Option<Vec<InputColumn>>,
}Expand description
A physical table type for relational data sources.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.data_source_arn: Option<String>The Amazon Resource Name (ARN) for the data source.
catalog: Option<String>The catalog associated with a table.
schema: Option<String>The schema name. This name applies to certain relational database engines.
name: Option<String>The name of the relational table.
input_columns: Option<Vec<InputColumn>>The column schema of the table.
Implementations§
source§impl RelationalTable
 
impl RelationalTable
sourcepub fn data_source_arn(&self) -> Option<&str>
 
pub fn data_source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the data source.
sourcepub fn schema(&self) -> Option<&str>
 
pub fn schema(&self) -> Option<&str>
The schema name. This name applies to certain relational database engines.
sourcepub fn input_columns(&self) -> Option<&[InputColumn]>
 
pub fn input_columns(&self) -> Option<&[InputColumn]>
The column schema of the table.
source§impl RelationalTable
 
impl RelationalTable
sourcepub fn builder() -> RelationalTableBuilder
 
pub fn builder() -> RelationalTableBuilder
Creates a new builder-style object to manufacture RelationalTable.
Trait Implementations§
source§impl Clone for RelationalTable
 
impl Clone for RelationalTable
source§fn clone(&self) -> RelationalTable
 
fn clone(&self) -> RelationalTable
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 RelationalTable
 
impl Debug for RelationalTable
source§impl PartialEq<RelationalTable> for RelationalTable
 
impl PartialEq<RelationalTable> for RelationalTable
source§fn eq(&self, other: &RelationalTable) -> bool
 
fn eq(&self, other: &RelationalTable) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RelationalTable
Auto Trait Implementations§
impl RefUnwindSafe for RelationalTable
impl Send for RelationalTable
impl Sync for RelationalTable
impl Unpin for RelationalTable
impl UnwindSafe for RelationalTable
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