Module Values.EfsFileLocationSource

Specifies the details for the file location for the file that's being used in the workflow. Only applicable if you are using Amazon Elastic File Systems (Amazon EFS) for storage.

Sourcetype nonrec t = {
  1. fileSystemId : EfsFileSystemId.t option;
    (*

    The identifier of the file system, assigned by Amazon EFS.

    *)
  2. path : EfsPath.t option;
    (*

    The pathname for the folder being used by a workflow.

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