Interface CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty.Jsii$Proxy
- Enclosing class:
CfnDataTransformationProfile
@Stability(Stable)
public static interface CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty
extends software.amazon.jsii.JsiiSerializable
Create the profile by cloning a specific version of an existing 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.*;
ExistingVersionedProfileSourceProperty existingVersionedProfileSourceProperty = ExistingVersionedProfileSourceProperty.builder()
.profileId("profileId")
.version(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataTransformationProfile.ExistingVersionedProfileSourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The unique identifier of the source profile to clone.The version number of the source profile to clone.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProfileId
The unique identifier of the source profile to clone.- See Also:
-
getVersion
The version number of the source profile to clone.- See Also:
-
builder
@Stability(Stable) static CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty.Builder builder()
-