Skip to content

Start Metadata Generation Run

datazone_start_metadata_generation_run R Documentation

Starts the metadata generation run

Description

Starts the metadata generation run.

Usage

datazone_start_metadata_generation_run(clientToken, domainIdentifier,
  owningProjectIdentifier, target, type)

Arguments

clientToken

A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.

domainIdentifier

[required] The ID of the Amazon DataZone domain where you want to start a metadata generation run.

owningProjectIdentifier

[required] The ID of the project that owns the asset for which you want to start a metadata generation run.

target

[required] The asset for which you want to start a metadata generation run.

type

[required] The type of the metadata generation run.

Value

A list with the following syntax:

list(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  domainId = "string",
  id = "string",
  owningProjectId = "string",
  status = "SUBMITTED"|"IN_PROGRESS"|"CANCELED"|"SUCCEEDED"|"FAILED",
  type = "BUSINESS_DESCRIPTIONS"
)

Request syntax

svc$start_metadata_generation_run(
  clientToken = "string",
  domainIdentifier = "string",
  owningProjectIdentifier = "string",
  target = list(
    identifier = "string",
    revision = "string",
    type = "ASSET"
  ),
  type = "BUSINESS_DESCRIPTIONS"
)