com.pulumi.awsnative.codepipeline.kotlin.outputs.PipelineFailureConditions.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.codepipeline.kotlin.outputs
import com.pulumi.awsnative.codepipeline.kotlin.enums.PipelineFailureConditionsResult
import kotlin.Suppress
/**
* The configuration that specifies the result, such as rollback, to occur upon stage failure
* @property result The specified result for when the failure conditions are met, such as rolling back the stage
*/
public data class PipelineFailureConditions(
public val result: PipelineFailureConditionsResult? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.codepipeline.outputs.PipelineFailureConditions): PipelineFailureConditions = PipelineFailureConditions(
result = javaType.result().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.codepipeline.kotlin.enums.PipelineFailureConditionsResult.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}