#[non_exhaustive]pub struct SnowflakeConnectorProfileProperties {
pub warehouse: Option<String>,
pub stage: Option<String>,
pub bucket_name: Option<String>,
pub bucket_prefix: Option<String>,
pub private_link_service_name: Option<String>,
pub account_name: Option<String>,
pub region: Option<String>,
}
Expand description
The connector-specific profile properties required when using Snowflake.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.warehouse: Option<String>
The name of the Snowflake warehouse.
stage: Option<String>
The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. This is written in the following format: < Database>< Schema>
bucket_name: Option<String>
The name of the Amazon S3 bucket associated with Snowflake.
bucket_prefix: Option<String>
The bucket path that refers to the Amazon S3 bucket associated with Snowflake.
private_link_service_name: Option<String>
The Snowflake Private Link service name to be used for private data transfers.
account_name: Option<String>
The name of the account.
region: Option<String>
The Amazon Web Services Region of the Snowflake account.
Implementations
sourceimpl SnowflakeConnectorProfileProperties
impl SnowflakeConnectorProfileProperties
sourcepub fn stage(&self) -> Option<&str>
pub fn stage(&self) -> Option<&str>
The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. This is written in the following format: < Database>< Schema>
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
The name of the Amazon S3 bucket associated with Snowflake.
sourcepub fn bucket_prefix(&self) -> Option<&str>
pub fn bucket_prefix(&self) -> Option<&str>
The bucket path that refers to the Amazon S3 bucket associated with Snowflake.
sourcepub fn private_link_service_name(&self) -> Option<&str>
pub fn private_link_service_name(&self) -> Option<&str>
The Snowflake Private Link service name to be used for private data transfers.
sourcepub fn account_name(&self) -> Option<&str>
pub fn account_name(&self) -> Option<&str>
The name of the account.
sourceimpl SnowflakeConnectorProfileProperties
impl SnowflakeConnectorProfileProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SnowflakeConnectorProfileProperties
Trait Implementations
sourceimpl Clone for SnowflakeConnectorProfileProperties
impl Clone for SnowflakeConnectorProfileProperties
sourcefn clone(&self) -> SnowflakeConnectorProfileProperties
fn clone(&self) -> SnowflakeConnectorProfileProperties
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<SnowflakeConnectorProfileProperties> for SnowflakeConnectorProfileProperties
impl PartialEq<SnowflakeConnectorProfileProperties> for SnowflakeConnectorProfileProperties
sourcefn eq(&self, other: &SnowflakeConnectorProfileProperties) -> bool
fn eq(&self, other: &SnowflakeConnectorProfileProperties) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SnowflakeConnectorProfileProperties) -> bool
fn ne(&self, other: &SnowflakeConnectorProfileProperties) -> bool
This method tests for !=
.
impl StructuralPartialEq for SnowflakeConnectorProfileProperties
Auto Trait Implementations
impl RefUnwindSafe for SnowflakeConnectorProfileProperties
impl Send for SnowflakeConnectorProfileProperties
impl Sync for SnowflakeConnectorProfileProperties
impl Unpin for SnowflakeConnectorProfileProperties
impl UnwindSafe for SnowflakeConnectorProfileProperties
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more