HealthLake / Paginator / ListDataTransformationProfileVersions
ListDataTransformationProfileVersions¶
- class HealthLake.Paginator.ListDataTransformationProfileVersions¶
paginator = client.get_paginator('list_data_transformation_profile_versions')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
HealthLake.Client.list_data_transformation_profile_versions().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( ProfileId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
ProfileId (string) –
[REQUIRED]
The unique identifier of the profile whose versions to list.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'Items': [ { 'ProfileId': 'string', 'Version': 123, 'SourceFormat': 'CCDA'|'CSV', 'TargetFormat': 'FHIR_R4', 'ProfileName': 'string', 'ChangeDescription': 'string', 'LastUpdatedAt': datetime(2015, 1, 1) }, ], }
Response Structure
(dict) –
The response from the
ListDataTransformationProfileVersionsoperation.Items (list) –
The list of data transformation profile version summaries.
(dict) –
Contains summary information about a specific version of a data transformation profile. To retrieve profile content, call
GetDataTransformationProfile.ProfileId (string) –
The unique identifier of the profile.
Version (integer) –
The version number.
SourceFormat (string) –
The source data format that this profile converts from.
TargetFormat (string) –
The target output format of the profile.
ProfileName (string) –
The name of the profile.
ChangeDescription (string) –
A description of what changed in this version.
LastUpdatedAt (datetime) –
The timestamp when this version was last updated.