data_transformation_profile_versions
Creates, updates, deletes, gets or lists a data_transformation_profile_versions resource.
Overview
| Name | data_transformation_profile_versions |
| Type | Resource |
| Id | aws.healthlake.data_transformation_profile_versions |
Fields
The following fields are returned by SELECT queries:
- list_data_transformation_profile_versions
| Name | Datatype | Description |
|---|---|---|
change_description | string | A description of what changed in this version. |
last_updated_at | string (date-time) | The timestamp when this version was last updated. |
profile_id | string | The unique identifier of the profile. (pattern: <code>[a-f0-9]{32}</code>) |
profile_name | string | The name of the profile. |
source_format | string | The source data format that this profile converts from. (CCDA, CSV) |
target_format | string | The target output format of the profile. (FHIR_R4) |
version | integer | The version number. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_data_transformation_profile_versions | select | region | Lists all versions of a specific data transformation profile (DRAFT and published), in reverse chronological order (newest first). Use GetDataTransformationProfile to retrieve profile content. Results are paginated. Use the NextToken parameter to retrieve additional results. |
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) |
SELECT examples
- list_data_transformation_profile_versions
Lists all versions of a specific data transformation profile (DRAFT and published), in reverse chronological order (newest first). Use GetDataTransformationProfile to retrieve profile content. Results are paginated. Use the NextToken parameter to retrieve additional results.
SELECT
change_description,
last_updated_at,
profile_id,
profile_name,
source_format,
target_format,
version
FROM aws.healthlake.data_transformation_profile_versions
WHERE region = '{{ region }}' -- required
;