Skip to main content

plugin_type_actions

Creates, updates, deletes, gets or lists a plugin_type_actions resource.

Overview

Nameplugin_type_actions
TypeResource
Idaws.qbusiness.plugin_type_actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
action_identifierstringThe identifier of an Amazon Q Business plugin action.
descriptionstringThe description of an Amazon Q Business plugin action.
display_namestringThe display name assigned by Amazon Q Business to a plugin action. You can't modify this value.
instruction_examplestringAn 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_plugin_type_actionsselectplugin_type, regionnextToken, maxResultsLists 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.

NameDatatypeDescription
plugin_typestringThe type of the plugin.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of plugins to return.
nextTokenstringIf 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

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 }}'
;