Module Values.AclGranteeSource

You specify each grantee as a type-value pair using one of these types. You can specify only one type of grantee. For more information, see PutBucketAcl.

Sourcetype nonrec t = {
  1. id : AclCanonicalId.t option;
    (*

    The value specified is the canonical user ID of an Amazon Web Services account.

    *)
  2. uri : AclUri.t option;
    (*

    Used for granting permissions to a predefined group.

    *)
}
Sourceval make : ?id:??? -> ?uri:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AclCanonicalId.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