![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.PipelineArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.sagemaker.PipelineArgs.builder
import com.pulumi.awsnative.sagemaker.kotlin.inputs.ParallelismConfigurationPropertiesArgs
import com.pulumi.awsnative.sagemaker.kotlin.inputs.ParallelismConfigurationPropertiesArgsBuilder
import com.pulumi.awsnative.sagemaker.kotlin.inputs.PipelineDefinition0PropertiesArgs
import com.pulumi.awsnative.sagemaker.kotlin.inputs.PipelineDefinition1PropertiesArgs
import com.pulumi.core.Either
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::SageMaker::Pipeline
* ## Example Usage
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* @property parallelismConfiguration The parallelism configuration applied to the pipeline.
* @property pipelineDefinition The definition of the pipeline. This can be either a JSON string or an Amazon S3 location.
* @property pipelineDescription The description of the Pipeline.
* @property pipelineDisplayName The display name of the Pipeline.
* @property pipelineName The name of the Pipeline.
* @property roleArn Role Arn
* @property tags The tags of the pipeline.
*/
public data class PipelineArgs(
public val parallelismConfiguration: Output? = null,
public val pipelineDefinition: 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>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.sagemaker.PipelineArgs =
com.pulumi.awsnative.sagemaker.PipelineArgs.builder()
.parallelismConfiguration(
parallelismConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.pipelineDefinition(
pipelineDefinition?.applyValue({ args0 ->
args0.transform({ args0 ->
args0.let({ args0 -> args0.toJava() })
}, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.pipelineDescription(pipelineDescription?.applyValue({ args0 -> args0 }))
.pipelineDisplayName(pipelineDisplayName?.applyValue({ args0 -> args0 }))
.pipelineName(pipelineName?.applyValue({ args0 -> args0 }))
.roleArn(roleArn?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [PipelineArgs].
*/
@PulumiTagMarker
public class PipelineArgsBuilder internal constructor() {
private var parallelismConfiguration: Output? = null
private var pipelineDefinition:
Output>? = null
private var pipelineDescription: Output? = null
private var pipelineDisplayName: Output? = null
private var pipelineName: Output? = null
private var roleArn: Output? = null
private var tags: Output>? = null
/**
* @param value The parallelism configuration applied to the pipeline.
*/
@JvmName("edddafemwvycrcca")
public suspend fun parallelismConfiguration(`value`: Output) {
this.parallelismConfiguration = value
}
/**
* @param value The definition of the pipeline. This can be either a JSON string or an Amazon S3 location.
*/
@JvmName("ldqgadcdvlxmjfut")
public suspend fun pipelineDefinition(`value`: Output>) {
this.pipelineDefinition = value
}
/**
* @param value The description of the Pipeline.
*/
@JvmName("hqausfqviqkklkji")
public suspend fun pipelineDescription(`value`: Output) {
this.pipelineDescription = value
}
/**
* @param value The display name of the Pipeline.
*/
@JvmName("twwtugmxirwgxota")
public suspend fun pipelineDisplayName(`value`: Output) {
this.pipelineDisplayName = value
}
/**
* @param value The name of the Pipeline.
*/
@JvmName("hsvxtcipaqgkhket")
public suspend fun pipelineName(`value`: Output) {
this.pipelineName = value
}
/**
* @param value Role Arn
*/
@JvmName("dudkkdsxgkiivxwx")
public suspend fun roleArn(`value`: Output) {
this.roleArn = value
}
/**
* @param value The tags of the pipeline.
*/
@JvmName("nmhabdlpnxcwalav")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("jcqnsiscpnooxhhr")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values The tags of the pipeline.
*/
@JvmName("jiunggvdkwxdotxw")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy