Module Values.LocalVolumeResourceDataSource

Attributes that define a local volume resource.

Sourcetype nonrec t = {
  1. destinationPath : string option;
    (*

    The absolute local path of the resource inside the Lambda environment.

    *)
  2. groupOwnerSetting : GroupOwnerSetting.t option;
    (*

    Allows you to configure additional group privileges for the Lambda process. This field is optional.

    *)
  3. sourcePath : string option;
    (*

    The local absolute path of the volume resource on the host. The source path for a volume resource type cannot start with ''/sys''.

    *)
}
Sourceval make : ?destinationPath:??? -> ?groupOwnerSetting:??? -> ?sourcePath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Boolean of bool | `String of string ]) list ]) 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