Module Values.AgentAccessSettingSource

A permission setting for an agent action. Each setting specifies an agent action and whether it is enabled or disabled.

Sourcetype nonrec t = {
  1. agentAction : AgentAction.t;
    (*

    The agent action to configure. Valid values are COMPUTER_VISION and COMPUTER_INPUT. If you enable COMPUTER_INPUT, you must also enable COMPUTER_VISION.

    *)
  2. permission : Permission.t;
    (*

    Whether the agent action is enabled or disabled.

    *)
}
Sourceval context_ : string
Sourceval make : agentAction:AgentAction.t -> permission:Permission.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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