create_glossary
Create a business glossary in Amazon DataZone by providing a domain, name, and owning project. Optionally add a description and set status.
Instructions
Creates a new business glossary in Amazon DataZone.
Args: domain_identifier (str): The ID of the domain where the glossary will be created name (str): The name of the glossary (1-256 characters) owning_project_identifier (str): The ID of the project that will own the glossary description (str, optional): The description of the glossary (0-4096 characters) status (str, optional): The status of the glossary (ENABLED or DISABLED, default: ENABLED) client_token (str, optional): A unique token to ensure idempotency (1-128 characters)
Returns: Any: The API response containing the created glossary details
Example:
python response = await create_glossary( domain_identifier="dzd_123456789", name="Sales Glossary", owning_project_identifier="prj_987654321", description="Glossary for sales-related terms", status="ENABLED", )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| status | No | ENABLED | |
| description | No | ||
| client_token | No | ||
| domain_identifier | Yes | ||
| owning_project_identifier | Yes |