Module Values.PipeSourceSelfManagedKafkaParametersSource

The parameters for using a self-managed Apache Kafka stream as a source. A self managed cluster refers to any Apache Kafka cluster not hosted by Amazon Web Services. This includes both clusters you manage yourself, as well as those hosted by a third-party provider, such as Confluent Cloud, CloudKarafka, or Redpanda. For more information, see Apache Kafka streams as a source in the Amazon EventBridge User Guide.

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

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

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

    The position in a stream from which to start reading.

    *)
  3. additionalBootstrapServers : KafkaBootstrapServers.t option;
    (*

    An array of server URLs.

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

    The maximum number of records to include in each batch.

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

    The maximum length of a time to wait for events.

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

    The name of the destination queue to consume.

    *)
  7. credentials : SelfManagedKafkaAccessConfigurationCredentials.t option;
    (*

    The credentials needed to access the resource.

    *)
  8. serverRootCaCertificate : SecretManagerArn.t option;
    (*

    The ARN of the Secrets Manager secret used for certification.

    *)
  9. vpc : SelfManagedKafkaAccessConfigurationVpc.t option;
    (*

    This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.

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