#[non_exhaustive]
pub struct ConnectorConfiguration {
Show 26 fields 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>, pub connector_type: Option<ConnectorType>, pub connector_label: Option<String>, pub connector_description: Option<String>, pub connector_owner: Option<String>, pub connector_name: Option<String>, pub connector_version: Option<String>, pub connector_arn: Option<String>, pub connector_modes: Option<Vec<String>>, pub authentication_config: Option<AuthenticationConfig>, pub connector_runtime_settings: Option<Vec<ConnectorRuntimeSetting>>, pub supported_api_versions: Option<Vec<String>>, pub supported_operators: Option<Vec<Operators>>, pub supported_write_operations: Option<Vec<WriteOperationType>>, pub connector_provisioning_type: Option<ConnectorProvisioningType>, pub connector_provisioning_config: Option<ConnectorProvisioningConfig>, pub logo_url: Option<String>, pub registered_at: Option<DateTime>, pub registered_by: Option<String>,
}
Expand description

The configuration settings related to a given 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.
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.

connector_type: Option<ConnectorType>

The connector type.

connector_label: Option<String>

The label used for registering the connector.

connector_description: Option<String>

A description about the connector.

connector_owner: Option<String>

The owner who developed the connector.

connector_name: Option<String>

The connector name.

connector_version: Option<String>

The connector version.

connector_arn: Option<String>

The Amazon Resource Name (ARN) for the registered connector.

connector_modes: Option<Vec<String>>

The connection modes that the connector supports.

authentication_config: Option<AuthenticationConfig>

The authentication config required for the connector.

connector_runtime_settings: Option<Vec<ConnectorRuntimeSetting>>

The required connector runtime settings.

supported_api_versions: Option<Vec<String>>

A list of API versions that are supported by the connector.

supported_operators: Option<Vec<Operators>>

A list of operators supported by the connector.

supported_write_operations: Option<Vec<WriteOperationType>>

A list of write operations supported by the connector.

connector_provisioning_type: Option<ConnectorProvisioningType>

The provisioning type used to register the connector.

connector_provisioning_config: Option<ConnectorProvisioningConfig>

The configuration required for registering the connector.

logo_url: Option<String>

Logo URL of the connector.

registered_at: Option<DateTime>

The date on which the connector was registered.

registered_by: Option<String>

Information about who registered the connector.

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.

The connector type.

The label used for registering the connector.

A description about the connector.

The owner who developed the connector.

The connector name.

The connector version.

The Amazon Resource Name (ARN) for the registered connector.

The connection modes that the connector supports.

The authentication config required for the connector.

The required connector runtime settings.

A list of API versions that are supported by the connector.

A list of operators supported by the connector.

A list of write operations supported by the connector.

The provisioning type used to register the connector.

The configuration required for registering the connector.

Logo URL of the connector.

The date on which the connector was registered.

Information about who registered the connector.

Creates a new builder-style object to manufacture ConnectorConfiguration

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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