Glue / Client / list_registries

list_registries#

Glue.Client.list_registries(**kwargs)#

Returns a list of registries that you have created, with minimal registry information. Registries in the Deleting status will not be included in the results. Empty results will be returned if there are no registries available.

See also: AWS API Documentation

Request Syntax

response = client.list_registries(
    MaxResults=123,
    NextToken='string'
)
Parameters:
  • MaxResults (integer) – Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

  • NextToken (string) – A continuation token, if this is a continuation call.

Return type:

dict

Returns:

Response Syntax

{
    'Registries': [
        {
            'RegistryName': 'string',
            'RegistryArn': 'string',
            'Description': 'string',
            'Status': 'AVAILABLE'|'DELETING',
            'CreatedTime': 'string',
            'UpdatedTime': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • Registries (list) –

      An array of RegistryDetailedListItem objects containing minimal details of each registry.

      • (dict) –

        A structure containing the details for a registry.

        • RegistryName (string) –

          The name of the registry.

        • RegistryArn (string) –

          The Amazon Resource Name (ARN) of the registry.

        • Description (string) –

          A description of the registry.

        • Status (string) –

          The status of the registry.

        • CreatedTime (string) –

          The data the registry was created.

        • UpdatedTime (string) –

          The date the registry was updated.

    • NextToken (string) –

      A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

Exceptions

  • Glue.Client.exceptions.InvalidInputException

  • Glue.Client.exceptions.AccessDeniedException

  • Glue.Client.exceptions.InternalServiceException