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¶
clientToken |
A 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. |
longDescription |
The long description of this business glossary term. |
name |
[required] The name of this business glossary term. |
shortDescription |
The short description of this business glossary term. |
status |
The status of this business glossary term. |
termRelations |
The 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"
)
)
)
Request syntax¶
svc$create_glossary_term(
clientToken = "string",
domainIdentifier = "string",
glossaryIdentifier = "string",
longDescription = "string",
name = "string",
shortDescription = "string",
status = "ENABLED"|"DISABLED",
termRelations = list(
classifies = list(
"string"
),
isA = list(
"string"
)
)
)