Module Values.AwsEfsAccessPointRootDirectoryCreationInfoDetailsSource

Provides information about the settings that Amazon EFS uses to create the root directory when a client connects to an access point.

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

    Specifies the POSIX group ID to apply to the root directory.

    *)
  2. ownerUid : NonEmptyString.t option;
    (*

    Specifies the POSIX user ID to apply to the root directory.

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

    Specifies the POSIX permissions to apply to the root directory, in the format of an octal number representing the file's mode bits.

    *)
}
Sourceval make : ?ownerGid:??? -> ?ownerUid:??? -> ?permissions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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