List Job Runs
gluedatabrew_list_job_runs | R Documentation |
Lists all of the previous runs of a particular DataBrew job¶
Description¶
Lists all of the previous runs of a particular DataBrew job.
Usage¶
Arguments¶
Name
[required] The name of the job.
MaxResults
The maximum number of results to return in this request.
NextToken
The token returned by a previous call to retrieve the next set of results.
Value¶
A list with the following syntax:
list(
JobRuns = list(
list(
Attempt = 123,
CompletedOn = as.POSIXct(
"2015-01-01"
),
DatasetName = "string",
ErrorMessage = "string",
ExecutionTime = 123,
JobName = "string",
RunId = "string",
State = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT",
LogSubscription = "ENABLE"|"DISABLE",
LogGroupName = "string",
Outputs = list(
list(
CompressionFormat = "GZIP"|"LZ4"|"SNAPPY"|"BZIP2"|"DEFLATE"|"LZO"|"BROTLI"|"ZSTD"|"ZLIB",
Format = "CSV"|"JSON"|"PARQUET"|"GLUEPARQUET"|"AVRO"|"ORC"|"XML"|"TABLEAUHYPER",
PartitionColumns = list(
"string"
),
Location = list(
Bucket = "string",
Key = "string",
BucketOwner = "string"
),
Overwrite = TRUE|FALSE,
FormatOptions = list(
Csv = list(
Delimiter = "string"
)
),
MaxOutputFiles = 123
)
),
DataCatalogOutputs = list(
list(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
S3Options = list(
Location = list(
Bucket = "string",
Key = "string",
BucketOwner = "string"
)
),
DatabaseOptions = list(
TempDirectory = list(
Bucket = "string",
Key = "string",
BucketOwner = "string"
),
TableName = "string"
),
Overwrite = TRUE|FALSE
)
),
DatabaseOutputs = list(
list(
GlueConnectionName = "string",
DatabaseOptions = list(
TempDirectory = list(
Bucket = "string",
Key = "string",
BucketOwner = "string"
),
TableName = "string"
),
DatabaseOutputMode = "NEW_TABLE"
)
),
RecipeReference = list(
Name = "string",
RecipeVersion = "string"
),
StartedBy = "string",
StartedOn = as.POSIXct(
"2015-01-01"
),
JobSample = list(
Mode = "FULL_DATASET"|"CUSTOM_ROWS",
Size = 123
),
ValidationConfigurations = list(
list(
RulesetArn = "string",
ValidationMode = "CHECK_ALL"
)
)
)
),
NextToken = "string"
)