Module Values.ConnectorDetailSource

Information about the registered connector.

Sourcetype nonrec t = {
  1. connectorDescription : ConnectorDescription.t option;
    (*

    A description about the registered connector.

    *)
  2. connectorName : ConnectorName.t option;
    (*

    The name of the connector.

    *)
  3. connectorOwner : ConnectorOwner.t option;
    (*

    The owner of the connector.

    *)
  4. connectorVersion : ConnectorVersion.t option;
    (*

    The connector version.

    *)
  5. applicationType : ApplicationType.t option;
    (*

    The application type of the connector.

    *)
  6. connectorType : ConnectorType.t option;
    (*

    The connector type.

    *)
  7. connectorLabel : ConnectorLabel.t option;
    (*

    A label used for the connector.

    *)
  8. registeredAt : Date.t option;
    (*

    The time at which the connector was registered.

    *)
  9. registeredBy : RegisteredBy.t option;
    (*

    The user who registered the connector.

    *)
  10. connectorProvisioningType : ConnectorProvisioningType.t option;
    (*

    The provisioning type that the connector uses.

    *)
  11. connectorModes : ConnectorModeList.t option;
    (*

    The connection mode that the connector supports.

    *)
  12. supportedDataTransferTypes : SupportedDataTransferTypeList.t option;
    (*

    The data transfer types that the connector supports. RECORD Structured records. FILE Files or binary data.

    *)
}
Sourceval make : ?connectorDescription:??? -> ?connectorName:??? -> ?connectorOwner:??? -> ?connectorVersion:??? -> ?applicationType:??? -> ?connectorType:??? -> ?connectorLabel:??? -> ?registeredAt:??? -> ?registeredBy:??? -> ?connectorProvisioningType:??? -> ?connectorModes:??? -> ?supportedDataTransferTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of ConnectorMode.t ] list | `String of ConnectorDescription.t | `Timestamp of Date.t ]) 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