import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateRecipeJobRequest, CreateRecipeJobResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateRecipeJobCommand}. */ export interface CreateRecipeJobCommandInput extends CreateRecipeJobRequest { } /** * @public * * The output of {@link CreateRecipeJobCommand}. */ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, __MetadataBearer { } declare const CreateRecipeJobCommand_base: { new (input: CreateRecipeJobCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateRecipeJobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, CreateRecipeJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, CreateRecipeJobCommand } = 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 = { // CreateRecipeJobRequest * DatasetName: "STRING_VALUE", * EncryptionKeyArn: "STRING_VALUE", * EncryptionMode: "SSE-KMS" || "SSE-S3", * Name: "STRING_VALUE", // required * LogSubscription: "ENABLE" || "DISABLE", * MaxCapacity: Number("int"), * MaxRetries: Number("int"), * 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", * }, * ], * ProjectName: "STRING_VALUE", * RecipeReference: { // RecipeReference * Name: "STRING_VALUE", // required * RecipeVersion: "STRING_VALUE", * }, * RoleArn: "STRING_VALUE", // required * Tags: { // TagMap * "": "STRING_VALUE", * }, * Timeout: Number("int"), * }; * const command = new CreateRecipeJobCommand(input); * const response = await client.send(command); * // { // CreateRecipeJobResponse * // Name: "STRING_VALUE", // required * // }; * * ``` * * @param CreateRecipeJobCommandInput - {@link CreateRecipeJobCommandInput} * @returns {@link CreateRecipeJobCommandOutput} * @see {@link CreateRecipeJobCommandInput} for command's `input` shape. * @see {@link CreateRecipeJobCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to the specified resource was denied.

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

Updating or deleting a resource can cause an inconsistent state.

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

One or more resources can't be found.

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

A service quota is exceeded.

* * @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 CreateRecipeJobCommand extends CreateRecipeJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateRecipeJobRequest; output: CreateRecipeJobResponse; }; sdk: { input: CreateRecipeJobCommandInput; output: CreateRecipeJobCommandOutput; }; }; }