pub struct CustomSql {
pub columns: Option<Vec<InputColumn>>,
pub data_source_arn: String,
pub name: String,
pub sql_query: String,
}Expand description
A physical table type built from the results of the custom SQL query.
Fields§
§columns: Option<Vec<InputColumn>>The column schema from the SQL query result set.
data_source_arn: StringThe Amazon Resource Name (ARN) of the data source.
name: StringA display name for the SQL query result.
sql_query: StringThe SQL query.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CustomSql
impl<'de> Deserialize<'de> for CustomSql
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CustomSql
Auto Trait Implementations§
impl Freeze for CustomSql
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