Struct aws_sdk_quicksight::model::CustomSql [−][src]
#[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
The Amazon Resource Name (ARN) of the data source.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CustomSql
impl UnwindSafe for CustomSql
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more