Skip to content

Get Glossary

datazone_get_glossary R Documentation

Gets a business glossary in Amazon DataZone

Description

Gets a business glossary in Amazon DataZone.

Prerequisites:

  • The specified glossary ID must exist and be associated with the given domain.

  • The caller must have the datazone:GetGlossary permission on the domain.

Usage

datazone_get_glossary(domainIdentifier, identifier)

Arguments

domainIdentifier

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

identifier

[required] The ID of the business glossary.

Value

A list with the following syntax:

list(
  domainId = "string",
  id = "string",
  owningProjectId = "string",
  name = "string",
  description = "string",
  status = "DISABLED"|"ENABLED",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string",
  usageRestrictions = list(
    "ASSET_GOVERNED_TERMS"
  )
)

Request syntax

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