![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iot.kotlin.inputs.AbortConfigPropertiesArgs.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.iot.kotlin.inputs
import com.pulumi.awsnative.iot.inputs.AbortConfigPropertiesArgs.builder
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 com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The criteria that determine when and how a job abort takes place.
* @property criteriaList The list of criteria that determine when and how to abort the job.
*/
public data class AbortConfigPropertiesArgs(
public val criteriaList: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iot.inputs.AbortConfigPropertiesArgs =
com.pulumi.awsnative.iot.inputs.AbortConfigPropertiesArgs.builder()
.criteriaList(
criteriaList.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AbortConfigPropertiesArgs].
*/
@PulumiTagMarker
public class AbortConfigPropertiesArgsBuilder internal constructor() {
private var criteriaList: Output>? = null
/**
* @param value The list of criteria that determine when and how to abort the job.
*/
@JvmName("mabrjsghmavwndgb")
public suspend fun criteriaList(`value`: Output>) {
this.criteriaList = value
}
@JvmName("mquvgkgxswgxmvbi")
public suspend fun criteriaList(vararg values: Output) {
this.criteriaList = Output.all(values.asList())
}
/**
* @param values The list of criteria that determine when and how to abort the job.
*/
@JvmName("gcbughtmyphfklgv")
public suspend fun criteriaList(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy