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. |
glossaryIdentifier |
The 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. |
longDescription |
The long description to be updated as part of the
|
name |
The name to be updated as part of the
|
shortDescription |
The short description to be updated as part of the
|
status |
The status to be updated as part of the
|
termRelations |
The term relations to be updated as part of the
|
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"
)
)
)
Request syntax¶
svc$update_glossary_term(
domainIdentifier = "string",
glossaryIdentifier = "string",
identifier = "string",
longDescription = "string",
name = "string",
shortDescription = "string",
status = "ENABLED"|"DISABLED",
termRelations = list(
classifies = list(
"string"
),
isA = list(
"string"
)
)
)