Skip to main content

data_transformation_profile_versions

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

Overview

Namedata_transformation_profile_versions
TypeResource
Idaws.healthlake.data_transformation_profile_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
change_descriptionstringA description of what changed in this version.
last_updated_atstring (date-time)The timestamp when this version was last updated.
profile_idstringThe unique identifier of the profile. (pattern: <code>[a-f0-9]{32}</code>)
profile_namestringThe name of the profile.
source_formatstringThe source data format that this profile converts from. (CCDA, CSV)
target_formatstringThe target output format of the profile. (FHIR_R4)
versionintegerThe version number.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_data_transformation_profile_versionsselectregionLists 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.

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

SELECT examples

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
;