Module Values.FirehoseLogDeliveryDescriptionSource

A description of the settings for delivering logs to Amazon Kinesis Data Firehose.

Sourcetype nonrec t = {
  1. deliveryStream : string option;
    (*

    The name of the Kinesis Data Firehose delivery stream that is the destination for log delivery.

    *)
  2. enabled : bool option;
    (*

    Specifies whether connector logs get delivered to Amazon Kinesis Data Firehose.

    *)
}
Sourceval make : ?deliveryStream:??? -> ?enabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `String 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