Module Values.DescribeConnectorResponseSource

Returns summary information about the connector.

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

    Information about the capacity of the connector, whether it is auto scaled or provisioned.

    *)
  2. connectorArn : string option;
    (*

    The Amazon Resource Name (ARN) of the connector.

    *)
  3. connectorConfiguration : ConnectorConfiguration.t option;
    (*

    A map of keys to values that represent the configuration for the connector.

    *)
  4. connectorDescription : string option;
    (*

    A summary description of the connector.

    *)
  5. connectorName : string option;
    (*

    The name of the connector.

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

    The state of the connector.

    *)
  7. creationTime : string option;
    (*

    The time the connector was created.

    *)
  8. currentVersion : string option;
    (*

    The current version of the connector.

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

    The Apache Kafka cluster that the connector is connected to.

    *)
  10. 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.

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

    Details of encryption in transit to the Apache Kafka cluster.

    *)
  12. kafkaConnectVersion : string option;
    (*

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

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

    Details about delivering logs to Amazon CloudWatch Logs.

    *)
  14. 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.

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

    Specifies which plugins were used for this connector.

    *)
  16. serviceExecutionRoleArn : string option;
    (*

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

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

    Specifies which worker configuration was used for the connector.

    *)
  18. stateDescription : StateDescription.t option;
    (*

    Details about the state of a connector.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ForbiddenException of ForbiddenException.t
  3. | `InternalServerErrorException of InternalServerErrorException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `ServiceUnavailableException of ServiceUnavailableException.t
  6. | `TooManyRequestsException of TooManyRequestsException.t
  7. | `UnauthorizedException of UnauthorizedException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?capacity:??? -> ?connectorArn:??? -> ?connectorConfiguration:??? -> ?connectorDescription:??? -> ?connectorName:??? -> ?connectorState:??? -> ?creationTime:??? -> ?currentVersion:??? -> ?kafkaCluster:??? -> ?kafkaClusterClientAuthentication:??? -> ?kafkaClusterEncryptionInTransit:??? -> ?kafkaConnectVersion:??? -> ?logDelivery:??? -> ?networkType:??? -> ?plugins:??? -> ?serviceExecutionRoleArn:??? -> ?workerConfiguration:??? -> ?stateDescription:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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 | `Map of ([> `String of string ] * [> `String of string ]) 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