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.

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(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  description = "string",
  domainId = "string",
  id = "string",
  name = "string",
  owningProjectId = "string",
  status = "DISABLED"|"ENABLED",
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string"
)

Request syntax

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