Module Values.MSKSourceDescriptionSource

Details about the Amazon MSK cluster used as the source for a Firehose stream.

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

    The ARN of the Amazon MSK cluster.

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

    The topic name within the Amazon MSK cluster.

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

    The authentication configuration of the Amazon MSK cluster.

    *)
  4. deliveryStartTimestamp : DeliveryStartTimestamp.t option;
    (*

    Firehose starts retrieving records from the topic within the Amazon MSK cluster starting with this timestamp.

    *)
  5. 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 ReadFromTimestampUTC parameter to Epoch (1970-01-01T00:00:00Z).

    *)
}
Sourceval make : ?mSKClusterARN:??? -> ?topicName:??? -> ?authenticationConfiguration:??? -> ?deliveryStartTimestamp:??? -> ?readFromTimestamp:??? -> 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 DeliveryStartTimestamp.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