Interface CfnDataTransformationProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataTransformationProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:04.685Z") @Stability(Stable) public interface CfnDataTransformationProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDataTransformationProfile.

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.*;
 CfnDataTransformationProfileProps cfnDataTransformationProfileProps = CfnDataTransformationProfileProps.builder()
         .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: