Module Values.PipeSourceManagedStreamingKafkaParametersSource

The parameters for using an MSK stream as a source.

Sourcetype nonrec t = {
  1. topicName : KafkaTopicName.t;
    (*

    The name of the topic that the pipe will read from.

    *)
  2. startingPosition : MSKStartPosition.t option;
    (*

    The position in a stream from which to start reading.

    *)
  3. batchSize : LimitMax10000.t option;
    (*

    The maximum number of records to include in each batch.

    *)
  4. maximumBatchingWindowInSeconds : MaximumBatchingWindowInSeconds.t option;
    (*

    The maximum length of a time to wait for events.

    *)
  5. consumerGroupID : URI.t option;
    (*

    The name of the destination queue to consume.

    *)
  6. credentials : MSKAccessCredentials.t option;
    (*

    The credentials needed to access the resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?startingPosition:??? -> ?batchSize:??? -> ?maximumBatchingWindowInSeconds:??? -> ?consumerGroupID:??? -> ?credentials:??? -> topicName:KafkaTopicName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of LimitMax10000.t | `String of KafkaTopicName.t | `Structure of (string * [> `String of SecretManagerArn.t ]) 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