security_profile_applications
Creates, updates, deletes, gets or lists a security_profile_applications resource.
Overview
| Name | security_profile_applications |
| Type | Resource |
| Id | aws.connect.security_profile_applications |
Fields
The following fields are returned by SELECT queries:
- list_security_profile_applications
| Name | Datatype | Description |
|---|---|---|
application_permissions | array | The permissions that the agent is granted on the application. For third-party applications, only the ACCESS permission is supported. For MCP Servers, the permissions are tool Identifiers accepted by MCP Server. |
namespace | string | Namespace of the application that you want to give access to. |
type | string | Type of Application. (MCP, THIRD_PARTY_APPLICATION) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_security_profile_applications | select | security_profile_id, instance_id, region | nextToken, maxResults | Returns a list of third-party applications or MCP Servers in a specific security profile. |
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 profle. |
maxResults | integer | The maximum number of results to return per page. |
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_applications
Returns a list of third-party applications or MCP Servers in a specific security profile.
SELECT
application_permissions,
namespace,
type
FROM aws.connect.security_profile_applications
WHERE security_profile_id = '{{ security_profile_id }}' -- required
AND instance_id = '{{ instance_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;