Module Values.BucketLevelPermissionsSource

Provides information about the bucket-level permissions settings for an S3 bucket.

Sourcetype nonrec t = {
  1. accessControlList : AccessControlList.t option;
    (*

    The permissions settings of the access control list (ACL) for the bucket. This value is null if an ACL hasn't been defined for the bucket.

    *)
  2. blockPublicAccess : BlockPublicAccess.t option;
    (*

    The block public access settings for the bucket.

    *)
  3. bucketPolicy : BucketPolicy.t option;
    (*

    The permissions settings of the bucket policy for the bucket. This value is null if a bucket policy hasn't been defined for the bucket.

    *)
}
Sourceval make : ?accessControlList:??? -> ?blockPublicAccess:??? -> ?bucketPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool ]) list ]) 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