Module Values.GetPluginResponseSource

Gets information about an existing Amazon Q Business plugin.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The identifier of the application which contains the plugin.

    *)
  2. pluginId : PluginId.t option;
    (*

    The identifier of the plugin.

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

    The name of the plugin.

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

    The type of the plugin.

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

    The source URL used for plugin configuration.

    *)
  6. authConfiguration : PluginAuthConfiguration.t option;
  7. customPluginConfiguration : CustomPluginConfiguration.t option;
    (*

    Configuration information required to create a custom plugin.

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

    The current status of a plugin. A plugin is modified asynchronously.

    *)
  9. pluginArn : PluginArn.t option;
    (*

    The Amazon Resource Name (ARN) of the role with permission to access resources needed to create the plugin.

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

    The current state of the plugin.

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

    The timestamp for when the plugin was created.

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

    The timestamp for when the plugin was last updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?applicationId:??? -> ?pluginId:??? -> ?displayName:??? -> ?type_:??? -> ?serverUrl:??? -> ?authConfiguration:??? -> ?customPluginConfiguration:??? -> ?buildStatus:??? -> ?pluginArn:??? -> ?state:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationId.t | `Structure of (string * [> `Enum of string | `String of PluginDescription.t | `Structure of (string * [> `String of SecretArn.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ]) list | `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