Module Values.PluginSource

Information about an Amazon Q Business plugin and its configuration.

Sourcetype nonrec t = {
  1. pluginId : PluginId.t option;
    (*

    The identifier of the plugin.

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

    The name of the plugin.

    *)
  3. type_ : PluginType.t option;
    (*

    The type of the plugin.

    *)
  4. serverUrl : Url.t option;
    (*

    The plugin server URL used for configuration.

    *)
  5. state : PluginState.t option;
    (*

    The current status of the plugin.

    *)
  6. buildStatus : PluginBuildStatus.t option;
    (*

    The status of the plugin.

    *)
  7. createdAt : Timestamp.t option;
    (*

    The timestamp for when the plugin was created.

    *)
  8. updatedAt : Timestamp.t option;
    (*

    The timestamp for when the plugin was last updated.

    *)
}
Sourceval make : ?pluginId:??? -> ?displayName:??? -> ?type_:??? -> ?serverUrl:??? -> ?state:??? -> ?buildStatus:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PluginId.t | `Timestamp of Timestamp.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