import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListJobRunsCommand}. */ export interface ListJobRunsCommandInput extends ListJobRunsRequest { } /** * @public * * The output of {@link ListJobRunsCommand}. */ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __MetadataBearer { } declare const ListJobRunsCommand_base: { new (input: ListJobRunsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListJobRunsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all of the previous runs of a particular DataBrew job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, ListJobRunsCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, ListJobRunsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import * // import type { DataBrewClientConfig } from "@aws-sdk/client-databrew"; * const config = {}; // type is DataBrewClientConfig * const client = new DataBrewClient(config); * const input = { // ListJobRunsRequest * Name: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListJobRunsCommand(input); * const response = await client.send(command); * // { // ListJobRunsResponse * // JobRuns: [ // JobRunList // required * // { // JobRun * // Attempt: Number("int"), * // CompletedOn: new Date("TIMESTAMP"), * // DatasetName: "STRING_VALUE", * // ErrorMessage: "STRING_VALUE", * // ExecutionTime: Number("int"), * // JobName: "STRING_VALUE", * // RunId: "STRING_VALUE", * // State: "STARTING" || "RUNNING" || "STOPPING" || "STOPPED" || "SUCCEEDED" || "FAILED" || "TIMEOUT", * // LogSubscription: "ENABLE" || "DISABLE", * // LogGroupName: "STRING_VALUE", * // Outputs: [ // OutputList * // { // Output * // CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB", * // Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER", * // PartitionColumns: [ // ColumnNameList * // "STRING_VALUE", * // ], * // Location: { // S3Location * // Bucket: "STRING_VALUE", // required * // Key: "STRING_VALUE", * // BucketOwner: "STRING_VALUE", * // }, * // Overwrite: true || false, * // FormatOptions: { // OutputFormatOptions * // Csv: { // CsvOutputOptions * // Delimiter: "STRING_VALUE", * // }, * // }, * // MaxOutputFiles: Number("int"), * // }, * // ], * // DataCatalogOutputs: [ // DataCatalogOutputList * // { // DataCatalogOutput * // CatalogId: "STRING_VALUE", * // DatabaseName: "STRING_VALUE", // required * // TableName: "STRING_VALUE", // required * // S3Options: { // S3TableOutputOptions * // Location: { * // Bucket: "STRING_VALUE", // required * // Key: "STRING_VALUE", * // BucketOwner: "STRING_VALUE", * // }, * // }, * // DatabaseOptions: { // DatabaseTableOutputOptions * // TempDirectory: { * // Bucket: "STRING_VALUE", // required * // Key: "STRING_VALUE", * // BucketOwner: "STRING_VALUE", * // }, * // TableName: "STRING_VALUE", // required * // }, * // Overwrite: true || false, * // }, * // ], * // DatabaseOutputs: [ // DatabaseOutputList * // { // DatabaseOutput * // GlueConnectionName: "STRING_VALUE", // required * // DatabaseOptions: { * // TempDirectory: { * // Bucket: "STRING_VALUE", // required * // Key: "STRING_VALUE", * // BucketOwner: "STRING_VALUE", * // }, * // TableName: "STRING_VALUE", // required * // }, * // DatabaseOutputMode: "NEW_TABLE", * // }, * // ], * // RecipeReference: { // RecipeReference * // Name: "STRING_VALUE", // required * // RecipeVersion: "STRING_VALUE", * // }, * // StartedBy: "STRING_VALUE", * // StartedOn: new Date("TIMESTAMP"), * // JobSample: { // JobSample * // Mode: "FULL_DATASET" || "CUSTOM_ROWS", * // Size: Number("long"), * // }, * // ValidationConfigurations: [ // ValidationConfigurationList * // { // ValidationConfiguration * // RulesetArn: "STRING_VALUE", // required * // ValidationMode: "CHECK_ALL", * // }, * // ], * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListJobRunsCommandInput - {@link ListJobRunsCommandInput} * @returns {@link ListJobRunsCommandOutput} * @see {@link ListJobRunsCommandInput} for command's `input` shape. * @see {@link ListJobRunsCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

One or more resources can't be found.

* * @throws {@link ValidationException} (client fault) *

The input parameters for this request failed validation.

* * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* * * @public */ export declare class ListJobRunsCommand extends ListJobRunsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListJobRunsRequest; output: ListJobRunsResponse; }; sdk: { input: ListJobRunsCommandInput; output: ListJobRunsCommandOutput; }; }; }