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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataTransformationProfile.SourcePropertystatic final classAn implementation forCfnDataTransformationProfile.SourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectCreate the profile by cloning a specific version of an existing profile.default ObjectCreate the profile from raw Velocity template mapping content.default ObjectCreate the profile from a predefined starter profile of transformation templates.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExistingVersionedProfileId
Create the profile by cloning a specific version of an existing profile.Returns union: either
IResolvableorCfnDataTransformationProfile.ExistingVersionedProfileSourceProperty- See Also:
-
getProfileMapping
Create the profile from raw Velocity template mapping content.Returns union: either
IResolvableorCfnDataTransformationProfile.ProfileMappingSourceProperty- See Also:
-
getStarterProfile
Create the profile from a predefined starter profile of transformation templates.Returns union: either
IResolvableorCfnDataTransformationProfile.StarterProfileSourceProperty- See Also:
-
builder
-