AWS Fundamentals Logo
AWS Fundamentals
AWS::HealthLake::DataTransformationProfile

HealthLake DataTransformationProfile

Creates a Data Transformation Profile in AWS HealthLake that converts healthcare data from a source format (such as C-CDA or CSV) into FHIR R4. A profile is immutable once created; to change its template content, replace the resource. Only its tags can be updated in place.

Properties

6 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
ProfileName
string
RequiredCreate-only
SourceFormat
string
RequiredCreate-only
KmsKeyId
string
Create-onlyWrite-only
ProfileDescription
string
Create-only
Source
Source
Create-onlyWrite-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the data transformation profile.
ProfileIdstringThe unique, server-generated identifier of the profile (32-character lowercase hexadecimal).
TargetFormatstringThe target format that this profile converts to. Always FHIR_R4.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::HealthLake::DataTransformationProfile

Resources:
  MyResource:
    Type: AWS::HealthLake::DataTransformationProfile
    Properties:
      ProfileName: "my-profilename"
      SourceFormat: "CCDA"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

healthlake:CreateDataTransformationProfilehealthlake:GetDataTransformationProfilehealthlake:TagResourcehealthlake:ListTagsForResourcekms:DescribeKeykms:CreateGrantkms:GenerateDataKeykms:Decrypt

read

healthlake:GetDataTransformationProfilehealthlake:ListTagsForResource

update

healthlake:GetDataTransformationProfilehealthlake:TagResourcehealthlake:UntagResourcehealthlake:ListTagsForResource

delete

healthlake:DeleteDataTransformationProfilehealthlake:GetDataTransformationProfile

list

healthlake:ListDataTransformationProfiles

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceHealthLake
Properties9
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ProfileNameSourceFormatSourceKmsKeyIdProfileDescription

Related Resources

External Links