Module Values.BucketPermissionConfigurationSource

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

Sourcetype nonrec t = {
  1. accountLevelPermissions : AccountLevelPermissions.t option;
    (*

    The account-level permissions settings that apply to the bucket.

    *)
  2. bucketLevelPermissions : BucketLevelPermissions.t option;
    (*

    The bucket-level permissions settings for the bucket.

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