security_profile_flow_modules
Creates, updates, deletes, gets or lists a security_profile_flow_modules resource.
Overview
| Name | security_profile_flow_modules |
| Type | Resource |
| Id | aws.connect.security_profile_flow_modules |
Fields
The following fields are returned by SELECT queries:
- list_security_profile_flow_modules
| Name | Datatype | Description |
|---|---|---|
flow_module_id | string | If of Flow Modules invocable as tool |
type | string | Only Type we support is MCP. (MCP) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_security_profile_flow_modules | select | security_profile_id, instance_id, region | nextToken, maxResults | A list of Flow Modules an AI Agent can invoke as a tool |
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 |
|---|---|---|
instance_id | string | The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
region | string | AWS region (default: us-east-1) |
security_profile_id | string | The identifier for the security profile. |
maxResults | integer | The maximum number of results to return per page. The default MaxResult size is 100. |
nextToken | string | The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
SELECT examples
- list_security_profile_flow_modules
A list of Flow Modules an AI Agent can invoke as a tool
SELECT
flow_module_id,
type
FROM aws.connect.security_profile_flow_modules
WHERE security_profile_id = '{{ security_profile_id }}' -- required
AND instance_id = '{{ instance_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;