Module Values.PipelineLoggingConfigurationSource

The logging configuration that's defined for pipeline execution.

Sourcetype nonrec t = {
  1. imageLogGroupName : LogGroupName.t option;
    (*

    The log group name that Image Builder uses for image creation. If not specified, the log group name defaults to /aws/imagebuilder/image-name.

    *)
  2. pipelineLogGroupName : LogGroupName.t option;
    (*

    The log group name that Image Builder uses for the log output during creation of a new pipeline. If not specified, the pipeline log group name defaults to /aws/imagebuilder/pipeline/pipeline-name.

    *)
}
Sourceval make : ?imageLogGroupName:??? -> ?pipelineLogGroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LogGroupName.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