Class CfnDataTransformationProfile
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.healthlake.CfnDataTransformationProfile
- All Implemented Interfaces:
IInspectable,IDataTransformationProfileRef,IEnvironmentAware,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:04.682Z")
@Stability(Stable)
public class CfnDataTransformationProfile
extends CfnResource
implements IInspectable, IDataTransformationProfileRef, ITaggableV2
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.healthlake.*;
CfnDataTransformationProfile cfnDataTransformationProfile = CfnDataTransformationProfile.Builder.create(this, "MyCfnDataTransformationProfile")
.profileName("profileName")
.sourceFormat("sourceFormat")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.profileDescription("profileDescription")
.source(SourceProperty.builder()
.existingVersionedProfileId(ExistingVersionedProfileSourceProperty.builder()
.profileId("profileId")
.version(123)
.build())
.profileMapping(ProfileMappingSourceProperty.builder()
.profileMapping(Map.of(
"profileMappingKey", "profileMapping"))
.build())
.starterProfile(StarterProfileSourceProperty.builder()
.starterProfileName("starterProfileName")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnDataTransformationProfile.static interfaceCreate the profile by cloning a specific version of an existing profile.static interfaceCreate the profile from raw Velocity template mapping content.static interfaceThe source from which to create the profile's initial template content.static interfaceCreate the profile from a predefined starter profile of transformation templates.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.healthlake.IDataTransformationProfileRef
IDataTransformationProfileRef.Jsii$Default, IDataTransformationProfileRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnDataTransformationProfile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDataTransformationProfile(software.amazon.jsii.JsiiObjectRef objRef) CfnDataTransformationProfile(software.constructs.Construct scope, String id, CfnDataTransformationProfileProps props) Create a newAWS::HealthLake::DataTransformationProfile. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringThe Amazon Resource Name (ARN) of the data transformation profile.The unique, server-generated identifier of the profile (32-character lowercase hexadecimal).The target format that this profile converts to.Tag Manager which manages the tags for this resource.A reference to a DataTransformationProfile resource.The identifier (key ID or ARN) of a customer-managed KMS key used to encrypt the profile's template content at rest.A human-readable description of the profile's purpose.The human-readable name of the profile.The source from which to create the profile's initial template content.The source format that this profile converts from.getTags()An array of key-value pairs to apply to this profile.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.static BooleanChecks whether the given object is a CfnDataTransformationProfile.renderProperties(Map<String, Object> props) voidsetKmsKeyId(String value) The identifier (key ID or ARN) of a customer-managed KMS key used to encrypt the profile's template content at rest.voidsetProfileDescription(String value) A human-readable description of the profile's purpose.voidsetProfileName(String value) The human-readable name of the profile.voidsetSource(IResolvable value) The source from which to create the profile's initial template content.voidThe source from which to create the profile's initial template content.voidsetSourceFormat(String value) The source format that this profile converts from.voidAn array of key-value pairs to apply to this profile.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, addResourceDependency, addResourceDependency, applyCrossStackReferenceStrength, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, cfnPropertyName, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, removeDependency, removeResourceDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId, withMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDataTransformationProfile
protected CfnDataTransformationProfile(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDataTransformationProfile
protected CfnDataTransformationProfile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDataTransformationProfile
@Stability(Stable) public CfnDataTransformationProfile(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnDataTransformationProfileProps props) Create a newAWS::HealthLake::DataTransformationProfile.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
arnForDataTransformationProfile
@Stability(Stable) @NotNull public static String arnForDataTransformationProfile(@NotNull IDataTransformationProfileRef resource) - Parameters:
resource- This parameter is required.
-
isCfnDataTransformationProfile
Checks whether the given object is a CfnDataTransformationProfile.- Parameters:
x- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the data transformation profile. -
getAttrProfileId
The unique, server-generated identifier of the profile (32-character lowercase hexadecimal). -
getAttrTargetFormat
The target format that this profile converts to.Always FHIR_R4.
-
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getCfnPropertyNames
- Overrides:
getCfnPropertyNamesin classCfnResource
-
getDataTransformationProfileRef
@Stability(Stable) @NotNull public DataTransformationProfileReference getDataTransformationProfileRef()A reference to a DataTransformationProfile resource.- Specified by:
getDataTransformationProfileRefin interfaceIDataTransformationProfileRef
-
getProfileName
The human-readable name of the profile. -
setProfileName
The human-readable name of the profile. -
getSourceFormat
The source format that this profile converts from. -
setSourceFormat
The source format that this profile converts from. -
getKmsKeyId
The identifier (key ID or ARN) of a customer-managed KMS key used to encrypt the profile's template content at rest. -
setKmsKeyId
The identifier (key ID or ARN) of a customer-managed KMS key used to encrypt the profile's template content at rest. -
getProfileDescription
A human-readable description of the profile's purpose. -
setProfileDescription
A human-readable description of the profile's purpose. -
getSource
The source from which to create the profile's initial template content.Returns union: either
IResolvableorCfnDataTransformationProfile.SourceProperty -
setSource
The source from which to create the profile's initial template content. -
setSource
@Stability(Stable) public void setSource(@Nullable CfnDataTransformationProfile.SourceProperty value) The source from which to create the profile's initial template content. -
getTags
An array of key-value pairs to apply to this profile. -
setTags
An array of key-value pairs to apply to this profile.
-