Module Values.ActionSummarySource

Summary information for an Amazon Q Business plugin action.

Sourcetype nonrec t = {
  1. actionIdentifier : String_.t option;
    (*

    The identifier of an Amazon Q Business plugin action.

    *)
  2. displayName : String_.t option;
    (*

    The display name assigned by Amazon Q Business to a plugin action. You can't modify this value.

    *)
  3. instructionExample : String_.t option;
    (*

    An Amazon Q Business suggested prompt and end user can use to invoke a plugin action. This value can be modified and sent as input to initiate an action. For example: Create a Jira task Create a chat assistant task to find the root cause of a specific incident

    *)
  4. description : String_.t option;
    (*

    The description of an Amazon Q Business plugin action.

    *)
}
Sourceval make : ?actionIdentifier:??? -> ?displayName:??? -> ?instructionExample:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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