List Metadata Generation Runs
| datazone_list_metadata_generation_runs | R Documentation |
Lists all metadata generation runs¶
Description¶
Lists all metadata generation runs.
Usage¶
Arguments¶
domainIdentifier[required] The ID of the Amazon DataZone domain where you want to list metadata generation runs.
maxResultsThe 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.
nextTokenWhen 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.
statusThe status of the metadata generation runs.
typeThe 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"
)