Create Glossary Term
| datazone_create_glossary_term | R Documentation |
Creates a business glossary term¶
Description¶
Creates a business glossary term.
Usage¶
datazone_create_glossary_term(clientToken, domainIdentifier,
glossaryIdentifier, longDescription, name, shortDescription, status,
termRelations)
Arguments¶
clientTokenA unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
domainIdentifier[required] The ID of the Amazon DataZone domain in which this business glossary term is created.
glossaryIdentifier[required] The ID of the business glossary in which this term is created.
longDescriptionThe long description of this business glossary term.
name[required] The name of this business glossary term.
shortDescriptionThe short description of this business glossary term.
statusThe status of this business glossary term.
termRelationsThe term relations of this business glossary term.
Value¶
A list with the following syntax:
list(
domainId = "string",
glossaryId = "string",
id = "string",
longDescription = "string",
name = "string",
shortDescription = "string",
status = "ENABLED"|"DISABLED",
termRelations = list(
classifies = list(
"string"
),
isA = list(
"string"
)
)
)