DataZone / Client / get_project

get_project#

DataZone.Client.get_project(**kwargs)#

Gets a project in Amazon DataZone.

See also: AWS API Documentation

Request Syntax

response = client.get_project(
    domainIdentifier='string',
    identifier='string'
)
Parameters:
  • domainIdentifier (string) –

    [REQUIRED]

    The ID of the Amazon DataZone domain in which the project exists.

  • identifier (string) –

    [REQUIRED]

    The ID of the project.

Return type:

dict

Returns:

Response Syntax

{
    'createdAt': datetime(2015, 1, 1),
    'createdBy': 'string',
    'description': 'string',
    'domainId': 'string',
    'failureReasons': [
        {
            'code': 'string',
            'message': 'string'
        },
    ],
    'glossaryTerms': [
        'string',
    ],
    'id': 'string',
    'lastUpdatedAt': datetime(2015, 1, 1),
    'name': 'string',
    'projectStatus': 'ACTIVE'|'DELETING'|'DELETE_FAILED'
}

Response Structure

  • (dict) –

    • createdAt (datetime) –

      The timestamp of when the project was created.

    • createdBy (string) –

      The Amazon DataZone user who created the project.

    • description (string) –

      The description of the project.

    • domainId (string) –

      The ID of the Amazon DataZone domain in which the project exists.

    • failureReasons (list) –

      Specifies the error message that is returned if the operation cannot be successfully completed.

      • (dict) –

        Specifies the error message that is returned if the operation cannot be successfully completed.

        • code (string) –

          The code of the project deletion error.

        • message (string) –

          The message of the project deletion error.

    • glossaryTerms (list) –

      The business glossary terms that can be used in the project.

      • (string) –

    • id (string) –

      >The ID of the project.

    • lastUpdatedAt (datetime) –

      The timestamp of when the project was last updated.

    • name (string) –

      The name of the project.

    • projectStatus (string) –

      The status of the project.

Exceptions