get_glossary
Retrieve detailed metadata of a business glossary in Amazon DataZone, including name, description, status, and owning project.
Instructions
Retrieves detailed information about a specific business glossary in Amazon DataZone.
Args: domain_identifier (str): The ID of the domain where the glossary exists Pattern: ^dzd[-][a-zA-Z0-9-]{1,36}$ identifier (str): The ID of the glossary to retrieve Pattern: ^[a-zA-Z0-9_-]{1,36}$
Returns: Any: The API response containing glossary details including: - createdAt (number): Timestamp of when the glossary was created - createdBy (str): The user who created the glossary - description (str): The description of the glossary (0-4096 characters) - domainId (str): The ID of the domain - id (str): The ID of the glossary - name (str): The name of the glossary (1-256 characters) - owningProjectId (str): The ID of the project that owns the glossary - status (str): The status of the glossary (DISABLED or ENABLED) - updatedAt (number): Timestamp of when the glossary was updated - updatedBy (str): The user who updated the glossary
Example:
python response = await get_glossary( domain_identifier="dzd_123456789", identifier="gloss_987654321" )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | ||
| domain_identifier | Yes |