Module Values.MSKSourceConfigurationSource

The configuration for the Amazon MSK cluster to be used as the source for a delivery stream.

Sourcetype nonrec t = {
  1. mSKClusterARN : MSKClusterARN.t;
    (*

    The ARN of the Amazon MSK cluster.

    *)
  2. topicName : TopicName.t;
    (*

    The topic name within the Amazon MSK cluster.

    *)
  3. authenticationConfiguration : AuthenticationConfiguration.t;
    (*

    The authentication configuration of the Amazon MSK cluster.

    *)
  4. readFromTimestamp : ReadFromTimestamp.t option;
    (*

    The start date and time in UTC for the offset position within your MSK topic from where Firehose begins to read. By default, this is set to timestamp when Firehose becomes Active. If you want to create a Firehose stream with Earliest start position from SDK or CLI, you need to set the ReadFromTimestamp parameter to Epoch (1970-01-01T00:00:00Z).

    *)
}
Sourceval context_ : string
Sourceval make : ?readFromTimestamp:??? -> mSKClusterARN:MSKClusterARN.t -> topicName:TopicName.t -> authenticationConfiguration:AuthenticationConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MSKClusterARN.t | `Structure of (string * [> `Enum of string | `String of RoleARN.t ]) list | `Timestamp of ReadFromTimestamp.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