HealthLake / Paginator / ListDataTransformationProfiles

ListDataTransformationProfiles

class HealthLake.Paginator.ListDataTransformationProfiles
paginator = client.get_paginator('list_data_transformation_profiles')
paginate(**kwargs)

Creates an iterator that will paginate through responses from HealthLake.Client.list_data_transformation_profiles().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    SourceFormat='CCDA'|'CSV',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • SourceFormat (string) –

    [REQUIRED]

    Filters the results by source data format.

  • 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 NextToken will 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 NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'Items': [
        {
            'ProfileId': 'string',
            'Version': 123,
            'SourceFormat': 'CCDA'|'CSV',
            'TargetFormat': 'FHIR_R4',
            'ProfileName': 'string',
            'ProfileDescription': 'string',
            'LastUpdatedAt': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) –

    The response from the ListDataTransformationProfiles operation.

    • Items (list) –

      The list of data transformation profile summaries.

      • (dict) –

        Contains summary information about a data transformation profile. To retrieve profile content, call GetDataTransformationProfile.

        • ProfileId (string) –

          The unique identifier of the profile.

        • Version (integer) –

          The latest version number of the profile.

        • 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.

        • ProfileDescription (string) –

          A description of the profile’s purpose.

        • LastUpdatedAt (datetime) –

          The timestamp when the profile was last updated.