amazonka-sagemaker-2.0: Amazon SageMaker Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.SageMaker.CreatePipeline

Description

Creates a pipeline using a JSON pipeline definition.

Synopsis

Creating a Request

data CreatePipeline Source #

See: newCreatePipeline smart constructor.

Constructors

CreatePipeline' 

Fields

Instances

Instances details
ToJSON CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

ToHeaders CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

ToPath CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

ToQuery CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

AWSRequest CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Associated Types

type AWSResponse CreatePipeline #

Generic CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Associated Types

type Rep CreatePipeline :: Type -> Type #

Read CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Show CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

NFData CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Methods

rnf :: CreatePipeline -> () #

Eq CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Hashable CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

type AWSResponse CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

type Rep CreatePipeline Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

type Rep CreatePipeline = D1 ('MetaData "CreatePipeline" "Amazonka.SageMaker.CreatePipeline" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "CreatePipeline'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "parallelismConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParallelismConfiguration)) :*: S1 ('MetaSel ('Just "pipelineDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "pipelineDefinitionS3Location") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PipelineDefinitionS3Location)) :*: S1 ('MetaSel ('Just "pipelineDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "pipelineDisplayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "pipelineName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newCreatePipeline Source #

Create a value of CreatePipeline with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

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

$sel:pipelineDefinition:CreatePipeline', createPipeline_pipelineDefinition - The JSON pipeline definition of the pipeline.

$sel:pipelineDefinitionS3Location:CreatePipeline', createPipeline_pipelineDefinitionS3Location - The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location.

CreatePipeline, createPipeline_pipelineDescription - A description of the pipeline.

CreatePipeline, createPipeline_pipelineDisplayName - The display name of the pipeline.

CreatePipeline, createPipeline_tags - A list of tags to apply to the created pipeline.

CreatePipeline, createPipeline_pipelineName - The name of the pipeline.

$sel:clientRequestToken:CreatePipeline', createPipeline_clientRequestToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

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

Request Lenses

createPipeline_parallelismConfiguration :: Lens' CreatePipeline (Maybe ParallelismConfiguration) Source #

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

createPipeline_pipelineDefinition :: Lens' CreatePipeline (Maybe Text) Source #

The JSON pipeline definition of the pipeline.

createPipeline_pipelineDefinitionS3Location :: Lens' CreatePipeline (Maybe PipelineDefinitionS3Location) Source #

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

createPipeline_tags :: Lens' CreatePipeline (Maybe [Tag]) Source #

A list of tags to apply to the created pipeline.

createPipeline_clientRequestToken :: Lens' CreatePipeline Text Source #

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

createPipeline_roleArn :: Lens' CreatePipeline Text Source #

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

Destructuring the Response

data CreatePipelineResponse Source #

See: newCreatePipelineResponse smart constructor.

Constructors

CreatePipelineResponse' 

Fields

Instances

Instances details
Generic CreatePipelineResponse Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Associated Types

type Rep CreatePipelineResponse :: Type -> Type #

Read CreatePipelineResponse Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Show CreatePipelineResponse Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

NFData CreatePipelineResponse Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

Methods

rnf :: CreatePipelineResponse -> () #

Eq CreatePipelineResponse Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

type Rep CreatePipelineResponse Source # 
Instance details

Defined in Amazonka.SageMaker.CreatePipeline

type Rep CreatePipelineResponse = D1 ('MetaData "CreatePipelineResponse" "Amazonka.SageMaker.CreatePipeline" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "CreatePipelineResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "pipelineArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreatePipelineResponse Source #

Create a value of CreatePipelineResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

CreatePipelineResponse, createPipelineResponse_pipelineArn - The Amazon Resource Name (ARN) of the created pipeline.

$sel:httpStatus:CreatePipelineResponse', createPipelineResponse_httpStatus - The response's http status code.

Response Lenses

createPipelineResponse_pipelineArn :: Lens' CreatePipelineResponse (Maybe Text) Source #

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