List Metadata Generation Runs
| datazone_list_metadata_generation_runs | R Documentation | 
Lists all metadata generation runs¶
Description¶
Lists all metadata generation runs.
Usage¶
datazone_list_metadata_generation_runs(domainIdentifier, maxResults,
  nextToken, status, type)
Arguments¶
| domainIdentifier | [required] The ID of the Amazon DataZone domain where you want to list metadata generation runs. | 
| maxResults | The maximum number of metadata generation runs to return in a single call to ListMetadataGenerationRuns. When the number of metadata generation runs to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListMetadataGenerationRuns to list the next set of revisions. | 
| nextToken | When the number of metadata generation runs is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of metadata generation runs, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListMetadataGenerationRuns to list the next set of revisions. | 
| status | The status of the metadata generation runs. | 
| type | The type of the metadata generation runs. | 
Value¶
A list with the following syntax:
list(
  items = list(
    list(
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      createdBy = "string",
      domainId = "string",
      id = "string",
      owningProjectId = "string",
      status = "SUBMITTED"|"IN_PROGRESS"|"CANCELED"|"SUCCEEDED"|"FAILED",
      target = list(
        identifier = "string",
        revision = "string",
        type = "ASSET"
      ),
      type = "BUSINESS_DESCRIPTIONS"
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_metadata_generation_runs(
  domainIdentifier = "string",
  maxResults = 123,
  nextToken = "string",
  status = "SUBMITTED"|"IN_PROGRESS"|"CANCELED"|"SUCCEEDED"|"FAILED",
  type = "BUSINESS_DESCRIPTIONS"
)