Module Values.LoggingConfigSource

Configuration fields for invocation logging.

Sourcetype nonrec t = {
  1. cloudWatchConfig : CloudWatchConfig.t option;
    (*

    CloudWatch logging configuration.

    *)
  2. s3Config : S3Config.t option;
    (*

    S3 configuration for storing log data.

    *)
  3. textDataDeliveryEnabled : Boolean.t option;
    (*

    Set to include text data in the log delivery.

    *)
  4. imageDataDeliveryEnabled : Boolean.t option;
    (*

    Set to include image data in the log delivery.

    *)
  5. embeddingDataDeliveryEnabled : Boolean.t option;
    (*

    Set to include embeddings data in the log delivery.

    *)
  6. videoDataDeliveryEnabled : Boolean.t option;
    (*

    Set to include video data in the log delivery.

    *)
  7. audioDataDeliveryEnabled : Boolean.t option;
    (*

    Set to include audio data in the log delivery.

    *)
}
Sourceval make : ?cloudWatchConfig:??? -> ?s3Config:??? -> ?textDataDeliveryEnabled:??? -> ?imageDataDeliveryEnabled:??? -> ?embeddingDataDeliveryEnabled:??? -> ?videoDataDeliveryEnabled:??? -> ?audioDataDeliveryEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `String of LogGroupName.t | `Structure of (string * [> `String of BucketName.t ]) list ]) 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