Module Values.AwsEfsAccessPointPosixUserDetailsSource

Provides details for all file system operations using this Amazon EFS access point.

Sourcetype nonrec t = {
  1. gid : NonEmptyString.t option;
    (*

    The POSIX group ID used for all file system operations using this access point.

    *)
  2. secondaryGids : NonEmptyStringList.t option;
    (*

    Secondary POSIX group IDs used for all file system operations using this access point.

    *)
  3. uid : NonEmptyString.t option;
    (*

    The POSIX user ID used for all file system operations using this access point.

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