Module Values.AwsCodeBuildProjectLogsConfigS3LogsDetailsSource

Information about logs built to an S3 bucket for a build project.

Sourcetype nonrec t = {
  1. encryptionDisabled : Boolean.t option;
    (*

    Whether to disable encryption of the S3 build log output.

    *)
  2. location : NonEmptyString.t option;
    (*

    The ARN of the S3 bucket and the path prefix for S3 logs.

    *)
  3. status : NonEmptyString.t option;
    (*

    The current status of the S3 build logs.

    *)
}
Sourceval make : ?encryptionDisabled:??? -> ?location:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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