
com.pulumi.awsnative.robomaker.kotlin.inputs.SimulationApplicationRobotSoftwareSuiteArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.robomaker.kotlin.inputs
import com.pulumi.awsnative.robomaker.inputs.SimulationApplicationRobotSoftwareSuiteArgs.builder
import com.pulumi.awsnative.robomaker.kotlin.enums.SimulationApplicationRobotSoftwareSuiteName
import com.pulumi.awsnative.robomaker.kotlin.enums.SimulationApplicationRobotSoftwareSuiteVersion
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.Suppress
import kotlin.jvm.JvmName
/**
* Information about a robot software suite.
* @property name The name of the robot software suite.
* @property version The version of the robot software suite.
*/
public data class SimulationApplicationRobotSoftwareSuiteArgs(
public val name: Output,
public val version: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.robomaker.inputs.SimulationApplicationRobotSoftwareSuiteArgs =
com.pulumi.awsnative.robomaker.inputs.SimulationApplicationRobotSoftwareSuiteArgs.builder()
.name(name.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.version(version?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [SimulationApplicationRobotSoftwareSuiteArgs].
*/
@PulumiTagMarker
public class SimulationApplicationRobotSoftwareSuiteArgsBuilder internal constructor() {
private var name: Output? = null
private var version: Output? = null
/**
* @param value The name of the robot software suite.
*/
@JvmName("ytbqxqeeghtiwkbb")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The version of the robot software suite.
*/
@JvmName("jqqkfcmixcmuktmq")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value The name of the robot software suite.
*/
@JvmName("ctyqpvstotsplhpw")
public suspend fun name(`value`: SimulationApplicationRobotSoftwareSuiteName) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The version of the robot software suite.
*/
@JvmName("kxshforaeuqkdare")
public suspend fun version(`value`: SimulationApplicationRobotSoftwareSuiteVersion?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): SimulationApplicationRobotSoftwareSuiteArgs =
SimulationApplicationRobotSoftwareSuiteArgs(
name = name ?: throw PulumiNullFieldException("name"),
version = version,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy