com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs.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 lifetime How long a refresh token will be valid for after creation. Valid units are `m`, `h` and `d`. Must be longer than 1m.
*/
public data class ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs(
public val lifetime: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs.builder()
.lifetime(lifetime?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgsBuilder internal constructor() {
private var lifetime: Output? = null
/**
* @param value How long a refresh token will be valid for after creation. Valid units are `m`, `h` and `d`. Must be longer than 1m.
*/
@JvmName("kbxokxpexeuuwgpw")
public suspend fun lifetime(`value`: Output) {
this.lifetime = value
}
/**
* @param value How long a refresh token will be valid for after creation. Valid units are `m`, `h` and `d`. Must be longer than 1m.
*/
@JvmName("eywahycrlgdryjwa")
public suspend fun lifetime(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.lifetime = mapped
}
internal fun build(): ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs =
ZeroTrustAccessApplicationSaasAppRefreshTokenOptionArgs(
lifetime = lifetime,
)
}