All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.robomaker.kotlin.SimulationApplicationVersionArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.robomaker.kotlin

import com.pulumi.awsnative.robomaker.SimulationApplicationVersionArgs.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::SimulationApplicationVersion resource creates an AWS RoboMaker SimulationApplicationVersion. This helps you control which code your simulation uses.
 * @property application The application information for the simulation application.
 * @property currentRevisionId The revision ID of robot application.
 */
public data class SimulationApplicationVersionArgs(
    public val application: Output? = null,
    public val currentRevisionId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.robomaker.SimulationApplicationVersionArgs =
        com.pulumi.awsnative.robomaker.SimulationApplicationVersionArgs.builder()
            .application(application?.applyValue({ args0 -> args0 }))
            .currentRevisionId(currentRevisionId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SimulationApplicationVersionArgs].
 */
@PulumiTagMarker
public class SimulationApplicationVersionArgsBuilder internal constructor() {
    private var application: Output? = null

    private var currentRevisionId: Output? = null

    /**
     * @param value The application information for the simulation application.
     */
    @JvmName("whcybfxkqpbdwmer")
    public suspend fun application(`value`: Output) {
        this.application = value
    }

    /**
     * @param value The revision ID of robot application.
     */
    @JvmName("yhhdgrxselsavxwv")
    public suspend fun currentRevisionId(`value`: Output) {
        this.currentRevisionId = value
    }

    /**
     * @param value The application information for the simulation application.
     */
    @JvmName("vauaqkiuwxwodfks")
    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("xlqujwwpudarpqyw")
    public suspend fun currentRevisionId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.currentRevisionId = mapped
    }

    internal fun build(): SimulationApplicationVersionArgs = SimulationApplicationVersionArgs(
        application = application,
        currentRevisionId = currentRevisionId,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy