Skip to content

Create Glossary

datazone_create_glossary R Documentation

Creates an Amazon DataZone business glossary

Description

Creates an Amazon DataZone business glossary.

Usage

datazone_create_glossary(clientToken, description, domainIdentifier,
  name, owningProjectIdentifier, status)

Arguments

clientToken

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

description

The description of this business glossary.

domainIdentifier

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

name

[required] The name of this business glossary.

owningProjectIdentifier

[required] The ID of the project that currently owns business glossary.

status

The status of this business glossary.

Value

A list with the following syntax:

list(
  description = "string",
  domainId = "string",
  id = "string",
  name = "string",
  owningProjectId = "string",
  status = "DISABLED"|"ENABLED"
)

Request syntax

svc$create_glossary(
  clientToken = "string",
  description = "string",
  domainIdentifier = "string",
  name = "string",
  owningProjectIdentifier = "string",
  status = "DISABLED"|"ENABLED"
)