PipelineArgs

data class PipelineArgs(val parallelismConfiguration: Output<PipelineParallelismConfigurationArgs>? = null, val pipelineDefinition: Output<String>? = null, val pipelineDefinitionS3Location: Output<PipelinePipelineDefinitionS3LocationArgs>? = null, val pipelineDescription: Output<String>? = null, val pipelineDisplayName: Output<String>? = null, val pipelineName: Output<String>? = null, val roleArn: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<PipelineArgs>

Provides a SageMaker Pipeline resource.

Example Usage

Basic usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.Pipeline;
import com.pulumi.aws.sagemaker.PipelineArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Pipeline("example", PipelineArgs.builder()
.pipelineName("example")
.pipelineDisplayName("example")
.roleArn(aws_iam_role.example().arn())
.pipelineDefinition(serializeJson(
jsonObject(
jsonProperty("Version", "2020-12-01"),
jsonProperty("Steps", jsonArray(jsonObject(
jsonProperty("Name", "Test"),
jsonProperty("Type", "Fail"),
jsonProperty("Arguments", jsonObject(
jsonProperty("ErrorMessage", "test")
))
)))
)))
.build());
}
}

Import

Using pulumi import, import pipelines using the pipeline_name. For example:

$ pulumi import aws:sagemaker/pipeline:Pipeline test_pipeline pipeline

Constructors

Link copied to clipboard
fun PipelineArgs(parallelismConfiguration: Output<PipelineParallelismConfigurationArgs>? = null, pipelineDefinition: Output<String>? = null, pipelineDefinitionS3Location: Output<PipelinePipelineDefinitionS3LocationArgs>? = null, pipelineDescription: Output<String>? = null, pipelineDisplayName: Output<String>? = null, pipelineName: Output<String>? = null, roleArn: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): PipelineArgs

Properties

Link copied to clipboard

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

Link copied to clipboard
val pipelineDefinition: Output<String>? = null

The JSON pipeline definition of the pipeline.

Link copied to clipboard

The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location. see Pipeline Definition S3 Location details below.

Link copied to clipboard
val pipelineDescription: Output<String>? = null

A description of the pipeline.

Link copied to clipboard
val pipelineDisplayName: Output<String>? = null

The display name of the pipeline.

Link copied to clipboard
val pipelineName: Output<String>? = null

The name of the pipeline.

Link copied to clipboard
val roleArn: Output<String>? = null

The name of the Pipeline (must be unique).

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.