create_glossary_term
Create a business glossary term in Amazon DataZone by providing domain and glossary identifiers, a name, and optional descriptions, status, and term relations.
Instructions
Creates a new business glossary term in Amazon DataZone.
Args: domain_identifier (str): The ID of the domain where the glossary term will be created Pattern: ^dzd[-][a-zA-Z0-9-]{1,36}$ glossary_identifier (str): The ID of the glossary where the term will be created Pattern: ^[a-zA-Z0-9_-]{1,36}$ name (str): The name of the glossary term (1-256 characters) short_description (str, optional): A short description of the term (0-1024 characters) long_description (str, optional): A detailed description of the term (0-4096 characters) status (str, optional): The status of the term (ENABLED or DISABLED, default: ENABLED) term_relations (Dict[str, List[str]], optional): The term relations Example: { "classifies": ["term-id-1", "term-id-2"], "isA": ["term-id-3"] } client_token (str, optional): A unique token to ensure idempotency (1-128 characters) Pattern: ^[\x21-\x7E]+$
Returns: Any: The API response containing the created glossary term details
Example:
python response = await create_glossary_term( domain_identifier="dzd_123456789", glossary_identifier="gloss_987654321", name="Customer", short_description="A person or organization that purchases goods or services", long_description="In business, a customer is an individual or organization that purchases goods or services from a company. Customers are vital to the success of any business as they provide revenue and feedback.", status="ENABLED", term_relations={"classifies": ["term_123", "term_456"], "isA": ["term_789"]}, )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| status | No | ENABLED | |
| client_token | No | ||
| term_relations | No | ||
| long_description | No | ||
| domain_identifier | Yes | ||
| short_description | No | ||
| glossary_identifier | Yes |