![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.robomaker.kotlin.RobotApplicationVersionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.robomaker.kotlin
import com.pulumi.awsnative.robomaker.RobotApplicationVersionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* AWS::RoboMaker::RobotApplicationVersion resource creates an AWS RoboMaker RobotApplicationVersion. This helps you control which code your robot uses.
* @property application The application information for the robot application.
* @property currentRevisionId The revision ID of robot application.
*/
public data class RobotApplicationVersionArgs(
public val application: Output? = null,
public val currentRevisionId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.robomaker.RobotApplicationVersionArgs =
com.pulumi.awsnative.robomaker.RobotApplicationVersionArgs.builder()
.application(application?.applyValue({ args0 -> args0 }))
.currentRevisionId(currentRevisionId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RobotApplicationVersionArgs].
*/
@PulumiTagMarker
public class RobotApplicationVersionArgsBuilder internal constructor() {
private var application: Output? = null
private var currentRevisionId: Output? = null
/**
* @param value The application information for the robot application.
*/
@JvmName("fkciintfchbevqwc")
public suspend fun application(`value`: Output) {
this.application = value
}
/**
* @param value The revision ID of robot application.
*/
@JvmName("yiwaqellfbbnftsp")
public suspend fun currentRevisionId(`value`: Output) {
this.currentRevisionId = value
}
/**
* @param value The application information for the robot application.
*/
@JvmName("dpchylkhpnswconi")
public suspend fun application(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.application = mapped
}
/**
* @param value The revision ID of robot application.
*/
@JvmName("vvpeqnhuedhwgpbf")
public suspend fun currentRevisionId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.currentRevisionId = mapped
}
internal fun build(): RobotApplicationVersionArgs = RobotApplicationVersionArgs(
application = application,
currentRevisionId = currentRevisionId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy