profile_with_agents
Creates, updates, deletes, gets or lists a profile_with_agents resource.
Overview
| Name | profile_with_agents |
| Type | Resource |
| Id | aws.healthlake.profile_with_agents |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update_profile_with_agent | update | region, ProfileId, SourceFormat, InputMessage | Updates a data transformation profile using chat-based interaction with an agent. Supports multi-turn conversations for iteratively customizing profiles. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
UPDATE examples
- update_profile_with_agent
Updates a data transformation profile using chat-based interaction with an agent. Supports multi-turn conversations for iteratively customizing profiles.
UPDATE aws.healthlake.profile_with_agents
SET
ProfileId = '{{ ProfileId }}',
SourceFormat = '{{ SourceFormat }}',
InputMessage = '{{ InputMessage }}',
ConversationId = '{{ ConversationId }}'
WHERE
region = '{{ region }}' --required
AND ProfileId = '{{ ProfileId }}' --required
AND SourceFormat = '{{ SourceFormat }}' --required
AND InputMessage = '{{ InputMessage }}' --required
RETURNING
agent_response,
conversation_id;