:doc:`DataZone <../../datazone>` / Client / get_glossary

************
get_glossary
************



.. py:method:: DataZone.Client.get_glossary(**kwargs)

  

  Gets a business glossary in Amazon DataZone.

   

  Prerequisites:

   

  
  * The specified glossary ID must exist and be associated with the given domain.
   
  * The caller must have the ``datazone:GetGlossary`` permission on the domain.
  

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGlossary>`_  


  **Request Syntax**
  ::

    response = client.get_glossary(
        domainIdentifier='string',
        identifier='string'
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The ID of the Amazon DataZone domain in which this business glossary exists.

    

  
  :type identifier: string
  :param identifier: **[REQUIRED]** 

    The ID of the business glossary.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'domainId': 'string',
          'id': 'string',
          'owningProjectId': 'string',
          'name': 'string',
          'description': 'string',
          'status': 'DISABLED'|'ENABLED',
          'createdAt': datetime(2015, 1, 1),
          'createdBy': 'string',
          'updatedAt': datetime(2015, 1, 1),
          'updatedBy': 'string',
          'usageRestrictions': [
              'ASSET_GOVERNED_TERMS',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **domainId** *(string) --* 

        The ID of the Amazon DataZone domain in which this business glossary exists.

        
      

      - **id** *(string) --* 

        The ID of the business glossary.

        
      

      - **owningProjectId** *(string) --* 

        The ID of the project that owns this business glossary.

        
      

      - **name** *(string) --* 

        The name of the business glossary.

        
      

      - **description** *(string) --* 

        The description of the business glossary.

        
      

      - **status** *(string) --* 

        The status of the business glossary.

        
      

      - **createdAt** *(datetime) --* 

        The timestamp of when this business glossary was created.

        
      

      - **createdBy** *(string) --* 

        The Amazon DataZone user who created this business glossary.

        
      

      - **updatedAt** *(datetime) --* 

        The timestamp of when the business glossary was updated.

        
      

      - **updatedBy** *(string) --* 

        The Amazon DataZone user who updated the business glossary.

        
      

      - **usageRestrictions** *(list) --* 

        The usage restriction of the restricted glossary.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`DataZone.Client.exceptions.InternalServerException`

  
  *   :py:class:`DataZone.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`DataZone.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`DataZone.Client.exceptions.ThrottlingException`

  
  *   :py:class:`DataZone.Client.exceptions.ValidationException`

  
  *   :py:class:`DataZone.Client.exceptions.UnauthorizedException`

  