interface ExistingVersionedProfileSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.HealthLake.CfnDataTransformationProfilePropsMixin.ExistingVersionedProfileSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awshealthlake#CfnDataTransformationProfilePropsMixin_ExistingVersionedProfileSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.healthlake.CfnDataTransformationProfilePropsMixin.ExistingVersionedProfileSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_healthlake.CfnDataTransformationProfilePropsMixin.ExistingVersionedProfileSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_healthlake » CfnDataTransformationProfilePropsMixin » 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/cfn-property-mixins';
const existingVersionedProfileSourceProperty: healthlake.CfnDataTransformationProfilePropsMixin.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
(optional)
The unique identifier of the source profile to clone.
version?
Type:
number
(optional)
The version number of the source profile to clone.

.NET
Go
Java
Python
TypeScript