Module Values.BucketPolicySource

Contains information on the current bucket policies for the S3 bucket.

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

    A value that indicates whether public read access for the bucket is enabled through a bucket policy.

    *)
  2. allowsPublicWriteAccess : Boolean.t option;
    (*

    A value that indicates whether public write access for the bucket is enabled through a bucket policy.

    *)
}
Sourceval make : ?allowsPublicReadAccess:??? -> ?allowsPublicWriteAccess:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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