
com.pulumi.awsnative.scheduler.kotlin.inputs.ScheduleSageMakerPipelineParameterArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.scheduler.kotlin.inputs
import com.pulumi.awsnative.scheduler.inputs.ScheduleSageMakerPipelineParameterArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.
* @property name Name of parameter to start execution of a SageMaker Model Building Pipeline.
* @property value Value of parameter to start execution of a SageMaker Model Building Pipeline.
*/
public data class ScheduleSageMakerPipelineParameterArgs(
public val name: Output,
public val `value`: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.scheduler.inputs.ScheduleSageMakerPipelineParameterArgs =
com.pulumi.awsnative.scheduler.inputs.ScheduleSageMakerPipelineParameterArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.`value`(`value`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ScheduleSageMakerPipelineParameterArgs].
*/
@PulumiTagMarker
public class ScheduleSageMakerPipelineParameterArgsBuilder internal constructor() {
private var name: Output? = null
private var `value`: Output? = null
/**
* @param value Name of parameter to start execution of a SageMaker Model Building Pipeline.
*/
@JvmName("qilrjksshnwlpxgj")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Value of parameter to start execution of a SageMaker Model Building Pipeline.
*/
@JvmName("iuipssqcdblnorib")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value Name of parameter to start execution of a SageMaker Model Building Pipeline.
*/
@JvmName("lqpdrrymeduqosan")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Value of parameter to start execution of a SageMaker Model Building Pipeline.
*/
@JvmName("uuwqaswtvynypmug")
public suspend fun `value`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): ScheduleSageMakerPipelineParameterArgs =
ScheduleSageMakerPipelineParameterArgs(
name = name ?: throw PulumiNullFieldException("name"),
`value` = `value` ?: throw PulumiNullFieldException("value"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy