Module Values.PosixProfileSource

The full POSIX identity, including user ID (Uid), group ID (Gid), and any secondary groups IDs (SecondaryGids), that controls your users' access to your Amazon EFS file systems. The POSIX permissions that are set on files and directories in your file system determine the level of access your users get when transferring files into and out of your Amazon EFS file systems.

Sourcetype nonrec t = {
  1. uid : PosixId.t;
    (*

    The POSIX user ID used for all EFS operations by this user.

    *)
  2. gid : PosixId.t;
    (*

    The POSIX group ID used for all EFS operations by this user.

    *)
  3. secondaryGids : SecondaryGids.t option;
    (*

    The secondary POSIX group IDs used for all EFS operations by this user.

    *)
}
Sourceval context_ : string
Sourceval make : ?secondaryGids:??? -> uid:PosixId.t -> gid:PosixId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Long of PosixId.t ] list | `Long of PosixId.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