entity_security_profiles
Creates, updates, deletes, gets or lists an entity_security_profiles resource.
Overview
| Name | entity_security_profiles |
| Type | Resource |
| Id | aws.connect.entity_security_profiles |
Fields
The following fields are returned by SELECT queries:
- list_entity_security_profiles
| Name | Datatype | Description |
|---|---|---|
id | string | Id of a security profile item. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_entity_security_profiles | select | instance_id, region | Lists all security profiles attached to a Q in Connect AIAgent Entity in an Amazon Connect instance. |
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 Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_entity_security_profiles
Lists all security profiles attached to a Q in Connect AIAgent Entity in an Amazon Connect instance.
SELECT
id
FROM aws.connect.entity_security_profiles
WHERE instance_id = '{{ instance_id }}' -- required
AND region = '{{ region }}' -- required
;