Module Values.CloudWatchLogsConfigSource

Information about CloudWatch Logs for a build project.

Sourcetype nonrec t = {
  1. status : LogsConfigStatusType.t;
    (*

    The current status of the logs in CloudWatch Logs for a build project. Valid values are: ENABLED: CloudWatch Logs are enabled for this build project. DISABLED: CloudWatch Logs are not enabled for this build project.

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

    The group name of the logs in CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

    *)
  3. streamName : String_.t option;
    (*

    The prefix of the stream name of the CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupName:??? -> ?streamName:??? -> status:LogsConfigStatusType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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