
com.pulumi.aws.networkfirewall.kotlin.inputs.TlsInspectionConfigurationTimeoutsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.networkfirewall.kotlin.inputs
import com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTimeoutsArgs.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 TlsInspectionConfigurationTimeoutsArgs(
public val create: Output? = null,
public val delete: Output? = null,
public val update: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTimeoutsArgs =
com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTimeoutsArgs.builder()
.create(create?.applyValue({ args0 -> args0 }))
.delete(delete?.applyValue({ args0 -> args0 }))
.update(update?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TlsInspectionConfigurationTimeoutsArgs].
*/
@PulumiTagMarker
public class TlsInspectionConfigurationTimeoutsArgsBuilder 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("eyidtsraurhblpku")
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("nlsafcdbguswpvsm")
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("qjnxaohldcwtjrno")
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("lpwfxnmcyswsqhll")
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("ynyfyklcvgfcbbhc")
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("aqjrbjirpdnjwlbx")
public suspend fun update(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.update = mapped
}
internal fun build(): TlsInspectionConfigurationTimeoutsArgs =
TlsInspectionConfigurationTimeoutsArgs(
create = create,
delete = delete,
update = update,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy