import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreatePipelineCommand}. */ export interface CreatePipelineCommandInput extends CreatePipelineRequest { } /** * @public * * The output of {@link CreatePipelineCommand}. */ export interface CreatePipelineCommandOutput extends CreatePipelineResponse, __MetadataBearer { } declare const CreatePipelineCommand_base: { new (input: CreatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CreatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Creates a pipeline using a JSON pipeline definition.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, CreatePipelineCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, CreatePipelineCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // CreatePipelineRequest * PipelineName: "STRING_VALUE", // required * PipelineDisplayName: "STRING_VALUE", * PipelineDefinition: "STRING_VALUE", * PipelineDefinitionS3Location: { // PipelineDefinitionS3Location * Bucket: "STRING_VALUE", // required * ObjectKey: "STRING_VALUE", // required * VersionId: "STRING_VALUE", * }, * PipelineDescription: "STRING_VALUE", * ClientRequestToken: "STRING_VALUE", // required * RoleArn: "STRING_VALUE", // required * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * ParallelismConfiguration: { // ParallelismConfiguration * MaxParallelExecutionSteps: Number("int"), // required * }, * }; * const command = new CreatePipelineCommand(input); * const response = await client.send(command); * // { // CreatePipelineResponse * // PipelineArn: "STRING_VALUE", * // }; * * ``` * * @param CreatePipelineCommandInput - {@link CreatePipelineCommandInput} * @returns {@link CreatePipelineCommandOutput} * @see {@link CreatePipelineCommandInput} for command's `input` shape. * @see {@link CreatePipelineCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

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

You have exceeded an SageMaker resource limit. For example, you might have too many training jobs created.

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

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class CreatePipelineCommand extends CreatePipelineCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreatePipelineRequest; output: CreatePipelineResponse; }; sdk: { input: CreatePipelineCommandInput; output: CreatePipelineCommandOutput; }; }; }