Struct aws_sdk_quicksight::types::CustomSql  
source · #[non_exhaustive]pub struct CustomSql {
    pub data_source_arn: Option<String>,
    pub name: Option<String>,
    pub sql_query: Option<String>,
    pub columns: Option<Vec<InputColumn>>,
}Expand description
A physical table type built from the results of the custom SQL query.
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) of the data source.
name: Option<String>A display name for the SQL query result.
sql_query: Option<String>The SQL query.
columns: Option<Vec<InputColumn>>The column schema from the SQL query result set.
Implementations§
Trait Implementations§
source§impl PartialEq<CustomSql> for CustomSql
 
impl PartialEq<CustomSql> for CustomSql
impl StructuralPartialEq for CustomSql
Auto Trait Implementations§
impl RefUnwindSafe for CustomSql
impl Send for CustomSql
impl Sync for CustomSql
impl Unpin for CustomSql
impl UnwindSafe for CustomSql
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