Module Values.DestinationConnectorPropertiesSource

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

Sourcetype nonrec t = {
  1. redshift : RedshiftDestinationProperties.t option;
    (*

    The properties required to query Amazon Redshift.

    *)
  2. s3 : S3DestinationProperties.t option;
    (*

    The properties required to query Amazon S3.

    *)
  3. salesforce : SalesforceDestinationProperties.t option;
    (*

    The properties required to query Salesforce.

    *)
  4. snowflake : SnowflakeDestinationProperties.t option;
    (*

    The properties required to query Snowflake.

    *)
  5. eventBridge : EventBridgeDestinationProperties.t option;
    (*

    The properties required to query Amazon EventBridge.

    *)
  6. lookoutMetrics : LookoutMetricsDestinationProperties.t option;
    (*

    The properties required to query Amazon Lookout for Metrics.

    *)
  7. upsolver : UpsolverDestinationProperties.t option;
    (*

    The properties required to query Upsolver.

    *)
  8. honeycode : HoneycodeDestinationProperties.t option;
    (*

    The properties required to query Amazon Honeycode.

    *)
  9. customerProfiles : CustomerProfilesDestinationProperties.t option;
    (*

    The properties required to query Amazon Connect Customer Profiles.

    *)
  10. zendesk : ZendeskDestinationProperties.t option;
    (*

    The properties required to query Zendesk.

    *)
  11. marketo : MarketoDestinationProperties.t option;
    (*

    The properties required to query Marketo.

    *)
  12. customConnector : CustomConnectorDestinationProperties.t option;
    (*

    The properties that are required to query the custom Connector.

    *)
  13. sAPOData : SAPODataDestinationProperties.t option;
    (*

    The properties required to query SAPOData.

    *)
}
Sourceval make : ?redshift:??? -> ?s3:??? -> ?salesforce:??? -> ?snowflake:??? -> ?eventBridge:??? -> ?lookoutMetrics:??? -> ?upsolver:??? -> ?honeycode:??? -> ?customerProfiles:??? -> ?zendesk:??? -> ?marketo:??? -> ?customConnector:??? -> ?sAPOData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of Name.t ] list | `Map of ([> `String of CustomPropertyKey.t ] * [> `String of CustomPropertyValue.t ]) list | `String of Object.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of BucketPrefix.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Long of Long.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t