DataZone / Client / get_time_series_data_point

get_time_series_data_point#

DataZone.Client.get_time_series_data_point(**kwargs)#

Gets the existing data point for the asset.

See also: AWS API Documentation

Request Syntax

response = client.get_time_series_data_point(
    domainIdentifier='string',
    entityIdentifier='string',
    entityType='ASSET'|'LISTING',
    formName='string',
    identifier='string'
)
Parameters:
  • domainIdentifier (string) –

    [REQUIRED]

    The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.

  • entityIdentifier (string) –

    [REQUIRED]

    The ID of the asset for which you want to get the data point.

  • entityType (string) –

    [REQUIRED]

    The type of the asset for which you want to get the data point.

  • formName (string) –

    [REQUIRED]

    The name of the time series form that houses the data point that you want to get.

  • identifier (string) –

    [REQUIRED]

    The ID of the data point that you want to get.

Return type:

dict

Returns:

Response Syntax

{
    'domainId': 'string',
    'entityId': 'string',
    'entityType': 'ASSET'|'LISTING',
    'form': {
        'content': 'string',
        'formName': 'string',
        'id': 'string',
        'timestamp': datetime(2015, 1, 1),
        'typeIdentifier': 'string',
        'typeRevision': 'string'
    },
    'formName': 'string'
}

Response Structure

  • (dict) –

    • domainId (string) –

      The ID of the Amazon DataZone domain that houses the asset data point that you want to get.

    • entityId (string) –

      The ID of the asset for which you want to get the data point.

    • entityType (string) –

      The type of the asset for which you want to get the data point.

    • form (dict) –

      The time series form that houses the data point that you want to get.

      • content (string) –

        The content of the time series data points form.

      • formName (string) –

        The name of the time series data points form.

      • id (string) –

        The ID of the time series data points form.

      • timestamp (datetime) –

        The timestamp of the time series data points form.

      • typeIdentifier (string) –

        The ID of the type of the time series data points form.

      • typeRevision (string) –

        The revision type of the time series data points form.

    • formName (string) –

      The name of the time series form that houses the data point that you want to get.

Exceptions