Struct aws_sdk_quicksight::types::SnowflakeParameters
source · #[non_exhaustive]pub struct SnowflakeParameters {
pub host: Option<String>,
pub database: Option<String>,
pub warehouse: Option<String>,
}Expand description
The parameters for Snowflake.
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.host: Option<String>Host.
database: Option<String>Database.
warehouse: Option<String>Warehouse.
Implementations§
source§impl SnowflakeParameters
impl SnowflakeParameters
sourcepub fn builder() -> SnowflakeParametersBuilder
pub fn builder() -> SnowflakeParametersBuilder
Creates a new builder-style object to manufacture SnowflakeParameters.
Trait Implementations§
source§impl Clone for SnowflakeParameters
impl Clone for SnowflakeParameters
source§fn clone(&self) -> SnowflakeParameters
fn clone(&self) -> SnowflakeParameters
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 SnowflakeParameters
impl Debug for SnowflakeParameters
source§impl PartialEq<SnowflakeParameters> for SnowflakeParameters
impl PartialEq<SnowflakeParameters> for SnowflakeParameters
source§fn eq(&self, other: &SnowflakeParameters) -> bool
fn eq(&self, other: &SnowflakeParameters) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SnowflakeParameters
Auto Trait Implementations§
impl RefUnwindSafe for SnowflakeParameters
impl Send for SnowflakeParameters
impl Sync for SnowflakeParameters
impl Unpin for SnowflakeParameters
impl UnwindSafe for SnowflakeParameters
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