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

UpdatePipelineRequest

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

§Properties

§
ParallelismConfiguration?: ParallelismConfiguration | null
[src]

If specified, it applies to all executions of this pipeline by default.

§
PipelineDefinition?: string | null
[src]

The JSON pipeline definition.

§
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]

The description of the pipeline.

§
PipelineDisplayName?: string | null
[src]

The display name of the pipeline.

§
PipelineName: string
[src]

The name of the pipeline to update.

§
RoleArn?: string | null
[src]

The Amazon Resource Name (ARN) that the pipeline uses to execute.