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