interface ExistingVersionedProfileSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.HealthLake.CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awshealthlake#CfnDataTransformationProfile_ExistingVersionedProfileSourceProperty |
Java | software.amazon.awscdk.services.healthlake.CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty |
Python | aws_cdk.aws_healthlake.CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty |
TypeScript | aws-cdk-lib » aws_healthlake » CfnDataTransformationProfile » ExistingVersionedProfileSourceProperty |
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 { aws_healthlake as healthlake } from 'aws-cdk-lib';
const existingVersionedProfileSourceProperty: healthlake.CfnDataTransformationProfile.ExistingVersionedProfileSourceProperty = {
profileId: 'profileId',
version: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| profile | string | The unique identifier of the source profile to clone. |
| version | number | The version number of the source profile to clone. |
profileId
Type:
string
The unique identifier of the source profile to clone.
version
Type:
number
The version number of the source profile to clone.

.NET
Go
Java
Python
TypeScript