Module Values.ConnectorSummarySource

Summary of a connector.

Sourcetype nonrec t = {
  1. capacity : CapacityDescription.t option;
    (*

    The connector's compute capacity settings.

    *)
  2. connectorArn : string option;
    (*

    The Amazon Resource Name (ARN) of the connector.

    *)
  3. connectorDescription : string option;
    (*

    The description of the connector.

    *)
  4. connectorName : string option;
    (*

    The name of the connector.

    *)
  5. connectorState : ConnectorState.t option;
    (*

    The state of the connector.

    *)
  6. creationTime : string option;
    (*

    The time that the connector was created.

    *)
  7. currentVersion : string option;
    (*

    The current version of the connector.

    *)
  8. kafkaCluster : KafkaClusterDescription.t option;
    (*

    The details of the Apache Kafka cluster to which the connector is connected.

    *)
  9. kafkaClusterClientAuthentication : KafkaClusterClientAuthenticationDescription.t option;
    (*

    The type of client authentication used to connect to the Apache Kafka cluster. The value is NONE when no client authentication is used.

    *)
  10. kafkaClusterEncryptionInTransit : KafkaClusterEncryptionInTransitDescription.t option;
    (*

    Details of encryption in transit to the Apache Kafka cluster.

    *)
  11. kafkaConnectVersion : string option;
    (*

    The version of Kafka Connect. It has to be compatible with both the Apache Kafka cluster's version and the plugins.

    *)
  12. logDelivery : LogDeliveryDescription.t option;
    (*

    The settings for delivering connector logs to Amazon CloudWatch Logs.

    *)
  13. networkType : NetworkType.t option;
    (*

    The network type of the connector. It gives connectors connectivity to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults to IPV4.

    *)
  14. plugins : PluginDescription.t list option;
    (*

    Specifies which plugins were used for this connector.

    *)
  15. serviceExecutionRoleArn : string option;
    (*

    The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon Web Services resources.

    *)
  16. workerConfiguration : WorkerConfigurationDescription.t option;
    (*

    The worker configurations that are in use with the connector.

    *)
}
Sourceval make : ?capacity:??? -> ?connectorArn:??? -> ?connectorDescription:??? -> ?connectorName:??? -> ?connectorState:??? -> ?creationTime:??? -> ?currentVersion:??? -> ?kafkaCluster:??? -> ?kafkaClusterClientAuthentication:??? -> ?kafkaClusterEncryptionInTransit:??? -> ?kafkaConnectVersion:??? -> ?logDelivery:??? -> ?networkType:??? -> ?plugins:??? -> ?serviceExecutionRoleArn:??? -> ?workerConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string ]) list ]) list ] list | `String of string | `Structure of (string * [> `Enum of string | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Integer of int | `String of string | `Structure of (string * [> `Boolean of bool | `Integer of int | `List of [> `String of string ] list | `String of string ]) list ]) list ]) list | `Timestamp of string ]) 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