Skip to content

Get Metadata Generation Run

datazone_get_metadata_generation_run R Documentation

Gets a metadata generation run in Amazon DataZone

Description

Gets a metadata generation run in Amazon DataZone.

Prerequisites:

  • Valid domain and run identifier.

  • The metadata generation run must exist.

  • User must have read access to the metadata run.

Usage

datazone_get_metadata_generation_run(domainIdentifier, identifier, type)

Arguments

domainIdentifier

[required] The ID of the Amazon DataZone domain the metadata generation run of which you want to get.

identifier

[required] The identifier of the metadata generation run.

type

The type of the metadata generation run.

Value

A list with the following syntax:

list(
  domainId = "string",
  id = "string",
  target = list(
    type = "ASSET",
    identifier = "string",
    revision = "string"
  ),
  status = "SUBMITTED"|"IN_PROGRESS"|"CANCELED"|"SUCCEEDED"|"FAILED"|"PARTIALLY_SUCCEEDED",
  type = "BUSINESS_DESCRIPTIONS"|"BUSINESS_NAMES"|"BUSINESS_GLOSSARY_ASSOCIATIONS",
  types = list(
    "BUSINESS_DESCRIPTIONS"|"BUSINESS_NAMES"|"BUSINESS_GLOSSARY_ASSOCIATIONS"
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  owningProjectId = "string",
  typeStats = list(
    list(
      type = "BUSINESS_DESCRIPTIONS"|"BUSINESS_NAMES"|"BUSINESS_GLOSSARY_ASSOCIATIONS",
      status = "SUBMITTED"|"IN_PROGRESS"|"CANCELED"|"SUCCEEDED"|"FAILED"|"PARTIALLY_SUCCEEDED",
      errorMessage = "string"
    )
  )
)

Request syntax

svc$get_metadata_generation_run(
  domainIdentifier = "string",
  identifier = "string",
  type = "BUSINESS_DESCRIPTIONS"|"BUSINESS_NAMES"|"BUSINESS_GLOSSARY_ASSOCIATIONS"
)