Values.S3LogsConfigSourceInformation about S3 logs for a build project.
type nonrec t = {status : LogsConfigStatusType.t;The current status of the S3 build logs. Valid values are: ENABLED: S3 build logs are enabled for this build project. DISABLED: S3 build logs are not enabled for this build project.
*)location : String_.t option;The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket, and your path prefix is build-log, then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log.
*)encryptionDisabled : WrapperBoolean.t option;Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.
*)bucketOwnerAccess : BucketOwnerAccess.t option;}val make :
?location:??? ->
?encryptionDisabled:??? ->
?bucketOwnerAccess:??? ->
status:LogsConfigStatusType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of WrapperBoolean.t
| `Enum of string
| `String of String_.t ])
list ]