
com.pulumi.awsnative.robomaker.kotlin.outputs.GetSimulationApplicationResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.robomaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property arn The Amazon Resource Name (ARN) of the simulation application.
* @property currentRevisionId The current revision id.
* @property environment The URI of the Docker image for the robot application.
* @property robotSoftwareSuite The robot software suite used by the simulation application.
* @property simulationSoftwareSuite The simulation software suite used by the simulation application.
* @property tags A map that contains tag keys and tag values that are attached to the simulation application.
*/
public data class GetSimulationApplicationResult(
public val arn: String? = null,
public val currentRevisionId: String? = null,
public val environment: String? = null,
public val robotSoftwareSuite: SimulationApplicationRobotSoftwareSuite? = null,
public val simulationSoftwareSuite: SimulationApplicationSimulationSoftwareSuite? = null,
public val tags: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.robomaker.outputs.GetSimulationApplicationResult): GetSimulationApplicationResult = GetSimulationApplicationResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
currentRevisionId = javaType.currentRevisionId().map({ args0 -> args0 }).orElse(null),
environment = javaType.environment().map({ args0 -> args0 }).orElse(null),
robotSoftwareSuite = javaType.robotSoftwareSuite().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.robomaker.kotlin.outputs.SimulationApplicationRobotSoftwareSuite.Companion.toKotlin(args0)
})
}).orElse(null),
simulationSoftwareSuite = javaType.simulationSoftwareSuite().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.robomaker.kotlin.outputs.SimulationApplicationSimulationSoftwareSuite.Companion.toKotlin(args0)
})
}).orElse(null),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy