Module Values.GroupOwnerSettingSource

Group owner related settings for local resources.

Sourcetype nonrec t = {
  1. autoAddGroupOwner : bool option;
    (*

    If true, AWS IoT Greengrass automatically adds the specified Linux OS group owner of the resource to the Lambda process privileges. Thus the Lambda process will have the file access permissions of the added Linux group.

    *)
  2. groupOwner : string option;
    (*

    The name of the Linux OS group whose privileges will be added to the Lambda process. This field is optional.

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