plugin_type_actions
Creates, updates, deletes, gets or lists a plugin_type_actions resource.
Overview
| Name | plugin_type_actions |
| Type | Resource |
| Id | aws.qbusiness.plugin_type_actions |
Fields
The following fields are returned by SELECT queries:
- list_plugin_type_actions
| Name | Datatype | Description |
|---|---|---|
action_identifier | string | The identifier of an Amazon Q Business plugin action. |
description | string | The description of an Amazon Q Business plugin action. |
display_name | string | The display name assigned by Amazon Q Business to a plugin action. You can't modify this value. |
instruction_example | string | 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 |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_plugin_type_actions | select | plugin_type, region | nextToken, maxResults | Lists configured Amazon Q Business actions for any plugin type—both built-in and custom. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
plugin_type | string | The type of the plugin. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of plugins to return. |
nextToken | string | If the number of plugins returned exceeds maxResults, Amazon Q Business returns a next token as a pagination token to retrieve the next set of plugins. |
SELECT examples
- list_plugin_type_actions
Lists configured Amazon Q Business actions for any plugin type—both built-in and custom.
SELECT
action_identifier,
description,
display_name,
instruction_example
FROM aws.qbusiness.plugin_type_actions
WHERE plugin_type = '{{ plugin_type }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;