Module Values_0.FileSystemConfigSource

The Amazon Elastic File System storage configuration for a SageMaker AI image.

Sourcetype nonrec t = {
  1. mountPath : MountPath.t option;
    (*

    The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to /home/sagemaker-user.

    *)
  2. defaultUid : DefaultUid.t option;
    (*

    The default POSIX user ID (UID). If not specified, defaults to 1000.

    *)
  3. defaultGid : DefaultGid.t option;
    (*

    The default POSIX group ID (GID). If not specified, defaults to 100.

    *)
}
Sourceval make : ?mountPath:??? -> ?defaultUid:??? -> ?defaultGid:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DefaultUid.t | `String of MountPath.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