com.pulumi.aws.sagemaker.kotlin.PipelineArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.sagemaker.kotlin
import com.pulumi.aws.sagemaker.PipelineArgs.builder
import com.pulumi.aws.sagemaker.kotlin.inputs.PipelineParallelismConfigurationArgs
import com.pulumi.aws.sagemaker.kotlin.inputs.PipelineParallelismConfigurationArgsBuilder
import com.pulumi.aws.sagemaker.kotlin.inputs.PipelinePipelineDefinitionS3LocationArgs
import com.pulumi.aws.sagemaker.kotlin.inputs.PipelinePipelineDefinitionS3LocationArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Provides a SageMaker Pipeline resource.
* ## Example Usage
* ### Basic usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const example = new aws.sagemaker.Pipeline("example", {
* pipelineName: "example",
* pipelineDisplayName: "example",
* roleArn: exampleAwsIamRole.arn,
* pipelineDefinition: JSON.stringify({
* Version: "2020-12-01",
* Steps: [{
* Name: "Test",
* Type: "Fail",
* Arguments: {
* ErrorMessage: "test",
* },
* }],
* }),
* });
* ```
* ```python
* import pulumi
* import json
* import pulumi_aws as aws
* example = aws.sagemaker.Pipeline("example",
* pipeline_name="example",
* pipeline_display_name="example",
* role_arn=example_aws_iam_role["arn"],
* pipeline_definition=json.dumps({
* "Version": "2020-12-01",
* "Steps": [{
* "Name": "Test",
* "Type": "Fail",
* "Arguments": {
* "ErrorMessage": "test",
* },
* }],
* }))
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using System.Text.Json;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.Sagemaker.Pipeline("example", new()
* {
* PipelineName = "example",
* PipelineDisplayName = "example",
* RoleArn = exampleAwsIamRole.Arn,
* PipelineDefinition = JsonSerializer.Serialize(new Dictionary
* {
* ["Version"] = "2020-12-01",
* ["Steps"] = new[]
* {
* new Dictionary
* {
* ["Name"] = "Test",
* ["Type"] = "Fail",
* ["Arguments"] = new Dictionary
* {
* ["ErrorMessage"] = "test",
* },
* },
* },
* }),
* });
* });
* ```
* ```go
* package main
* import (
* "encoding/json"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sagemaker"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* tmpJSON0, err := json.Marshal(map[string]interface{}{
* "Version": "2020-12-01",
* "Steps": []map[string]interface{}{
* map[string]interface{}{
* "Name": "Test",
* "Type": "Fail",
* "Arguments": map[string]interface{}{
* "ErrorMessage": "test",
* },
* },
* },
* })
* if err != nil {
* return err
* }
* json0 := string(tmpJSON0)
* _, err = sagemaker.NewPipeline(ctx, "example", &sagemaker.PipelineArgs{
* PipelineName: pulumi.String("example"),
* PipelineDisplayName: pulumi.String("example"),
* RoleArn: pulumi.Any(exampleAwsIamRole.Arn),
* PipelineDefinition: pulumi.String(json0),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* 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(exampleAwsIamRole.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());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:sagemaker:Pipeline
* properties:
* pipelineName: example
* pipelineDisplayName: example
* roleArn: ${exampleAwsIamRole.arn}
* pipelineDefinition:
* fn::toJSON:
* Version: 2020-12-01
* Steps:
* - Name: Test
* Type: Fail
* Arguments:
* ErrorMessage: test
* ```
*
* ## Import
* Using `pulumi import`, import pipelines using the `pipeline_name`. For example:
* ```sh
* $ pulumi import aws:sagemaker/pipeline:Pipeline test_pipeline pipeline
* ```
* @property parallelismConfiguration 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.
* @property pipelineDefinition The [JSON pipeline definition](https://aws-sagemaker-mlops.github.io/sagemaker-model-building-pipeline-definition-JSON-schema/) of the pipeline.
* @property pipelineDefinitionS3Location 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.
* @property pipelineDescription A description of the pipeline.
* @property pipelineDisplayName The display name of the pipeline.
* @property pipelineName The name of the pipeline.
* @property roleArn The ARN of the IAM role the pipeline will execute as.
* @property tags 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.
*/
public data class PipelineArgs(
public val parallelismConfiguration: Output? = null,
public val pipelineDefinition: Output? = null,
public val pipelineDefinitionS3Location: Output? = null,
public val pipelineDescription: Output? = null,
public val pipelineDisplayName: Output? = null,
public val pipelineName: Output? = null,
public val roleArn: Output? = null,
public val tags: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy