Module Values.S3LogsConfigSource

Information about S3 logs for a build project.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
  3. 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.

    *)
  4. bucketOwnerAccess : BucketOwnerAccess.t option;
}
Sourceval context_ : string
Sourceval make : ?location:??? -> ?encryptionDisabled:??? -> ?bucketOwnerAccess:??? -> status:LogsConfigStatusType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of WrapperBoolean.t | `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