#[non_exhaustive]
pub struct DestinationConnectorProperties {
Show 13 fields pub redshift: Option<RedshiftDestinationProperties>, pub s3: Option<S3DestinationProperties>, pub salesforce: Option<SalesforceDestinationProperties>, pub snowflake: Option<SnowflakeDestinationProperties>, pub event_bridge: Option<EventBridgeDestinationProperties>, pub lookout_metrics: Option<LookoutMetricsDestinationProperties>, pub upsolver: Option<UpsolverDestinationProperties>, pub honeycode: Option<HoneycodeDestinationProperties>, pub customer_profiles: Option<CustomerProfilesDestinationProperties>, pub zendesk: Option<ZendeskDestinationProperties>, pub marketo: Option<MarketoDestinationProperties>, pub custom_connector: Option<CustomConnectorDestinationProperties>, pub sapo_data: Option<SapoDataDestinationProperties>,
}
Expand description

This stores the information that is required to query a particular connector.

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.
§redshift: Option<RedshiftDestinationProperties>

The properties required to query Amazon Redshift.

§s3: Option<S3DestinationProperties>

The properties required to query Amazon S3.

§salesforce: Option<SalesforceDestinationProperties>

The properties required to query Salesforce.

§snowflake: Option<SnowflakeDestinationProperties>

The properties required to query Snowflake.

§event_bridge: Option<EventBridgeDestinationProperties>

The properties required to query Amazon EventBridge.

§lookout_metrics: Option<LookoutMetricsDestinationProperties>

The properties required to query Amazon Lookout for Metrics.

§upsolver: Option<UpsolverDestinationProperties>

The properties required to query Upsolver.

§honeycode: Option<HoneycodeDestinationProperties>

The properties required to query Amazon Honeycode.

§customer_profiles: Option<CustomerProfilesDestinationProperties>

The properties required to query Amazon Connect Customer Profiles.

§zendesk: Option<ZendeskDestinationProperties>

The properties required to query Zendesk.

§marketo: Option<MarketoDestinationProperties>

The properties required to query Marketo.

§custom_connector: Option<CustomConnectorDestinationProperties>

The properties that are required to query the custom Connector.

§sapo_data: Option<SapoDataDestinationProperties>

The properties required to query SAPOData.

Implementations§

source§

impl DestinationConnectorProperties

source

pub fn redshift(&self) -> Option<&RedshiftDestinationProperties>

The properties required to query Amazon Redshift.

source

pub fn s3(&self) -> Option<&S3DestinationProperties>

The properties required to query Amazon S3.

source

pub fn salesforce(&self) -> Option<&SalesforceDestinationProperties>

The properties required to query Salesforce.

source

pub fn snowflake(&self) -> Option<&SnowflakeDestinationProperties>

The properties required to query Snowflake.

source

pub fn event_bridge(&self) -> Option<&EventBridgeDestinationProperties>

The properties required to query Amazon EventBridge.

source

pub fn lookout_metrics(&self) -> Option<&LookoutMetricsDestinationProperties>

The properties required to query Amazon Lookout for Metrics.

source

pub fn upsolver(&self) -> Option<&UpsolverDestinationProperties>

The properties required to query Upsolver.

source

pub fn honeycode(&self) -> Option<&HoneycodeDestinationProperties>

The properties required to query Amazon Honeycode.

source

pub fn customer_profiles( &self ) -> Option<&CustomerProfilesDestinationProperties>

The properties required to query Amazon Connect Customer Profiles.

source

pub fn zendesk(&self) -> Option<&ZendeskDestinationProperties>

The properties required to query Zendesk.

source

pub fn marketo(&self) -> Option<&MarketoDestinationProperties>

The properties required to query Marketo.

source

pub fn custom_connector(&self) -> Option<&CustomConnectorDestinationProperties>

The properties that are required to query the custom Connector.

source

pub fn sapo_data(&self) -> Option<&SapoDataDestinationProperties>

The properties required to query SAPOData.

source§

impl DestinationConnectorProperties

source

pub fn builder() -> DestinationConnectorPropertiesBuilder

Creates a new builder-style object to manufacture DestinationConnectorProperties.

Trait Implementations§

source§

impl Clone for DestinationConnectorProperties

source§

fn clone(&self) -> DestinationConnectorProperties

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DestinationConnectorProperties

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for DestinationConnectorProperties

source§

fn eq(&self, other: &DestinationConnectorProperties) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for DestinationConnectorProperties

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more