Update Glossary Term
| datazone_update_glossary_term | R Documentation |
Updates a business glossary term in Amazon DataZone¶
Description¶
Updates a business glossary term in Amazon DataZone.
Usage¶
datazone_update_glossary_term(domainIdentifier, glossaryIdentifier,
identifier, longDescription, name, shortDescription, status,
termRelations)
Arguments¶
domainIdentifier[required] The identifier of the Amazon DataZone domain in which a business glossary term is to be updated.
glossaryIdentifierThe identifier of the business glossary in which a term is to be updated.
identifier[required] The identifier of the business glossary term that is to be updated.
longDescriptionThe long description to be updated as part of the
update_glossary_termaction.nameThe name to be updated as part of the
update_glossary_termaction.shortDescriptionThe short description to be updated as part of the
update_glossary_termaction.statusThe status to be updated as part of the
update_glossary_termaction.termRelationsThe term relations to be updated as part of the
update_glossary_termaction.
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"
)
)
)