Module Values.RealtimeLogConfigSource

A real-time log configuration.

Sourcetype nonrec t = {
  1. aRN : String_.t option;
    (*

    The Amazon Resource Name (ARN) of this real-time log configuration.

    *)
  2. name : String_.t option;
    (*

    The unique name of this real-time log configuration.

    *)
  3. samplingRate : Long.t option;
    (*

    The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.

    *)
  4. endPoints : EndPointList.t option;
    (*

    Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.

    *)
  5. fields : FieldList.t option;
    (*

    A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream. For more information about fields, see Real-time log configuration fields in the Amazon CloudFront Developer Guide.

    *)
}
Sourceval make : ?aRN:??? -> ?name:??? -> ?samplingRate:??? -> ?endPoints:??? -> ?fields:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `Long of Long.t | `String of String_.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