Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.m2.kotlin.inputs
import com.pulumi.aws.m2.inputs.DeploymentTimeoutsArgs.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
/**
*
* @property create A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
* @property delete A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
* @property update A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
public data class DeploymentTimeoutsArgs(
public val create: Output? = null,
public val delete: Output? = null,
public val update: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.m2.inputs.DeploymentTimeoutsArgs =
com.pulumi.aws.m2.inputs.DeploymentTimeoutsArgs.builder()
.create(create?.applyValue({ args0 -> args0 }))
.delete(delete?.applyValue({ args0 -> args0 }))
.update(update?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DeploymentTimeoutsArgs].
*/
@PulumiTagMarker
public class DeploymentTimeoutsArgsBuilder internal constructor() {
private var create: Output? = null
private var delete: Output? = null
private var update: Output? = null
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
@JvmName("ntfufmingkrlmbwr")
public suspend fun create(`value`: Output) {
this.create = value
}
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
*/
@JvmName("igsooldwcwesrnpi")
public suspend fun delete(`value`: Output) {
this.delete = value
}
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
@JvmName("younosxwmbrddijc")
public suspend fun update(`value`: Output) {
this.update = value
}
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
@JvmName("mpyepehwaiueinad")
public suspend fun create(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.create = mapped
}
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
*/
@JvmName("cnuduwwgjnhjlibx")
public suspend fun delete(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.delete = mapped
}
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
@JvmName("yqnwphmqxeegrvpb")
public suspend fun update(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.update = mapped
}
internal fun build(): DeploymentTimeoutsArgs = DeploymentTimeoutsArgs(
create = create,
delete = delete,
update = update,
)
}