Skip to main content

profile_with_agents

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

Overview

Nameprofile_with_agents
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
update_profile_with_agentupdateregion, ProfileId, SourceFormat, InputMessageUpdates 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

UPDATE examples

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;