pub struct RedshiftMetadata {
pub database_user_name: Option<String>,
pub redshift_database: Option<RedshiftDatabase>,
pub select_sql_query: Option<String>,
}
Expand description
Describes the DataSource
details specific to Amazon Redshift.
Fields§
§database_user_name: Option<String>
§redshift_database: Option<RedshiftDatabase>
§select_sql_query: Option<String>
The SQL query that is specified during CreateDataSourceFromRedshift. Returns only if Verbose
is true in GetDataSourceInput.
Trait Implementations§
Source§impl Clone for RedshiftMetadata
impl Clone for RedshiftMetadata
Source§fn clone(&self) -> RedshiftMetadata
fn clone(&self) -> RedshiftMetadata
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 RedshiftMetadata
impl Debug for RedshiftMetadata
Source§impl Default for RedshiftMetadata
impl Default for RedshiftMetadata
Source§fn default() -> RedshiftMetadata
fn default() -> RedshiftMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RedshiftMetadata
impl<'de> Deserialize<'de> for RedshiftMetadata
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
Source§impl PartialEq for RedshiftMetadata
impl PartialEq for RedshiftMetadata
impl StructuralPartialEq for RedshiftMetadata
Auto Trait Implementations§
impl Freeze for RedshiftMetadata
impl RefUnwindSafe for RedshiftMetadata
impl Send for RedshiftMetadata
impl Sync for RedshiftMetadata
impl Unpin for RedshiftMetadata
impl UnwindSafe for RedshiftMetadata
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