Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreatePipelineRequest

import type { CreatePipelineRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreatePipelineRequest {
ClientRequestToken: string;
ParallelismConfiguration?: ParallelismConfiguration | null;
PipelineDefinition?: string | null;
PipelineDefinitionS3Location?: PipelineDefinitionS3Location | null;
PipelineDescription?: string | null;
PipelineDisplayName?: string | null;
PipelineName: string;
RoleArn: string;
Tags?: Tag[] | null;
}

§Properties

§
ClientRequestToken: string
[src]

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

§
ParallelismConfiguration?: ParallelismConfiguration | null
[src]

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

§
PipelineDefinition?: string | null
[src]

The JSON pipeline definition of the pipeline.

§
PipelineDefinitionS3Location?: PipelineDefinitionS3Location | null
[src]

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

§
PipelineDescription?: string | null
[src]

A description of the pipeline.

§
PipelineDisplayName?: string | null
[src]

The display name of the pipeline.

§
PipelineName: string
[src]

The name of the pipeline.

§
RoleArn: string
[src]

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

§
Tags?: Tag[] | null
[src]

A list of tags to apply to the created pipeline.