Module Values.LogsConfigSource

Information about logs for a build project. These can be logs in CloudWatch Logs, built in a specified S3 bucket, or both.

Sourcetype nonrec t = {
  1. cloudWatchLogs : CloudWatchLogsConfig.t option;
    (*

    Information about CloudWatch Logs for a build project. CloudWatch Logs are enabled by default.

    *)
  2. s3Logs : S3LogsConfig.t option;
    (*

    Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

    *)
}
Sourceval make : ?cloudWatchLogs:??? -> ?s3Logs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of String_.t ]) 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