:doc:`SageMaker <../../sagemaker>` / Client / create_pipeline

***************
create_pipeline
***************



.. py:method:: SageMaker.Client.create_pipeline(**kwargs)

  

  Creates a pipeline using a JSON pipeline definition.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePipeline>`_  


  **Request Syntax**
  ::

    response = client.create_pipeline(
        PipelineName='string',
        PipelineDisplayName='string',
        PipelineDefinition='string',
        PipelineDefinitionS3Location={
            'Bucket': 'string',
            'ObjectKey': 'string',
            'VersionId': 'string'
        },
        PipelineDescription='string',
        ClientRequestToken='string',
        RoleArn='string',
        Tags=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        ParallelismConfiguration={
            'MaxParallelExecutionSteps': 123
        }
    )
    
  :type PipelineName: string
  :param PipelineName: **[REQUIRED]** 

    The name of the pipeline.

    

  
  :type PipelineDisplayName: string
  :param PipelineDisplayName: 

    The display name of the pipeline.

    

  
  :type PipelineDefinition: string
  :param PipelineDefinition: 

    The `JSON pipeline definition <https://aws-sagemaker-mlops.github.io/sagemaker-model-building-pipeline-definition-JSON-schema/>`__ of the pipeline.

    

  
  :type PipelineDefinitionS3Location: dict
  :param PipelineDefinitionS3Location: 

    The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location.

    

  
    - **Bucket** *(string) --* **[REQUIRED]** 

      Name of the S3 bucket.

      

    
    - **ObjectKey** *(string) --* **[REQUIRED]** 

      The object key (or key name) uniquely identifies the object in an S3 bucket.

      

    
    - **VersionId** *(string) --* 

      Version Id of the pipeline definition file. If not specified, Amazon SageMaker will retrieve the latest version.

      

    
  
  :type PipelineDescription: string
  :param PipelineDescription: 

    A description of the pipeline.

    

  
  :type ClientRequestToken: string
  :param ClientRequestToken: **[REQUIRED]** 

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

    This field is autopopulated if not provided.

  
  :type RoleArn: string
  :param RoleArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the role used by the pipeline to access and create resources.

    

  
  :type Tags: list
  :param Tags: 

    A list of tags to apply to the created pipeline.

    

  
    - *(dict) --* 

      A tag object that consists of a key and an optional value, used to manage metadata for SageMaker Amazon Web Services resources.

       

      You can add tags to notebook instances, training jobs, hyperparameter tuning jobs, batch transform jobs, models, labeling jobs, work teams, endpoint configurations, and endpoints. For more information on adding tags to SageMaker resources, see `AddTags <https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AddTags.html>`__.

       

      For more information on adding metadata to your Amazon Web Services resources with tagging, see `Tagging Amazon Web Services resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`__. For advice on best practices for managing Amazon Web Services resources with tagging, see `Tagging Best Practices\: Implement an Effective Amazon Web Services Resource Tagging Strategy <https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf>`__.

      

    
      - **Key** *(string) --* **[REQUIRED]** 

        The tag key. Tag keys must be unique per resource.

        

      
      - **Value** *(string) --* **[REQUIRED]** 

        The tag value.

        

      
    

  :type ParallelismConfiguration: dict
  :param ParallelismConfiguration: 

    This is the configuration that controls the parallelism of the pipeline. If specified, it applies to all runs of this pipeline by default.

    

  
    - **MaxParallelExecutionSteps** *(integer) --* **[REQUIRED]** 

      The max number of steps that can be executed in parallel.

      

    
  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'PipelineArn': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **PipelineArn** *(string) --* 

        The Amazon Resource Name (ARN) of the created pipeline.

        
  
  **Exceptions**
  
  *   :py:class:`SageMaker.Client.exceptions.ConflictException`

  
  *   :py:class:`SageMaker.Client.exceptions.ResourceNotFound`

  
  *   :py:class:`SageMaker.Client.exceptions.ResourceLimitExceeded`

  