Skip to content

Get Glossary Term

datazone_get_glossary_term R Documentation

Gets a business glossary term in Amazon DataZone

Description

Gets a business glossary term in Amazon DataZone.

Usage

datazone_get_glossary_term(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the Amazon DataZone domain in which this business glossary term exists.

identifier

[required] The ID of the business glossary term.

Value

A list with the following syntax:

list(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  domainId = "string",
  glossaryId = "string",
  id = "string",
  longDescription = "string",
  name = "string",
  shortDescription = "string",
  status = "ENABLED"|"DISABLED",
  termRelations = list(
    classifies = list(
      "string"
    ),
    isA = list(
      "string"
    )
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string"
)

Request syntax

svc$get_glossary_term(
  domainIdentifier = "string",
  identifier = "string"
)