Interface CfnDataTransformationProfile.SourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataTransformationProfile.SourceProperty.Jsii$Proxy
Enclosing class:
CfnDataTransformationProfile

@Stability(Stable) public static interface CfnDataTransformationProfile.SourceProperty extends software.amazon.jsii.JsiiSerializable
The source from which to create the profile's initial template content.

Exactly one of the members must be specified. Use StarterProfile (C-CDA only), ProfileMapping (C-CDA or CSV), or ExistingVersionedProfileId to clone an existing profile. Each produces a published profile.

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.*;
 SourceProperty sourceProperty = 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();
 

See Also: