Struct aws_sdk_appflow::model::ConnectorConfiguration [−][src]
#[non_exhaustive]pub struct ConnectorConfiguration {
pub can_use_as_source: bool,
pub can_use_as_destination: bool,
pub supported_destination_connectors: Option<Vec<ConnectorType>>,
pub supported_scheduling_frequencies: Option<Vec<ScheduleFrequencyType>>,
pub is_private_link_enabled: bool,
pub is_private_link_endpoint_url_required: bool,
pub supported_trigger_types: Option<Vec<TriggerType>>,
pub connector_metadata: Option<ConnectorMetadata>,
}
Expand description
The configuration settings related to a given connector.
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.can_use_as_source: bool
Specifies whether the connector can be used as a source.
can_use_as_destination: bool
Specifies whether the connector can be used as a destination.
supported_destination_connectors: Option<Vec<ConnectorType>>
Lists the connectors that are available for use as destinations.
supported_scheduling_frequencies: Option<Vec<ScheduleFrequencyType>>
Specifies the supported flow frequency for that connector.
is_private_link_enabled: bool
Specifies if PrivateLink is enabled for that connector.
is_private_link_endpoint_url_required: bool
Specifies if a PrivateLink endpoint URL is required.
supported_trigger_types: Option<Vec<TriggerType>>
Specifies the supported trigger types for the flow.
connector_metadata: Option<ConnectorMetadata>
Specifies connector-specific metadata such as oAuthScopes
,
supportedRegions
, privateLinkServiceUrl
, and so on.
Implementations
Specifies whether the connector can be used as a source.
Specifies whether the connector can be used as a destination.
Lists the connectors that are available for use as destinations.
Specifies the supported flow frequency for that connector.
Specifies if PrivateLink is enabled for that connector.
Specifies if a PrivateLink endpoint URL is required.
Specifies the supported trigger types for the flow.
Specifies connector-specific metadata such as oAuthScopes
,
supportedRegions
, privateLinkServiceUrl
, and so on.
Creates a new builder-style object to manufacture ConnectorConfiguration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConnectorConfiguration
impl Send for ConnectorConfiguration
impl Sync for ConnectorConfiguration
impl Unpin for ConnectorConfiguration
impl UnwindSafe for ConnectorConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more