All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.cloudflare.kotlin.inputs.AccessApplicationSaasAppRefreshTokenOptionArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.AccessApplicationSaasAppRefreshTokenOptionArgs.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 AccessApplicationSaasAppRefreshTokenOptionArgs(
    public val lifetime: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.AccessApplicationSaasAppRefreshTokenOptionArgs = com.pulumi.cloudflare.inputs.AccessApplicationSaasAppRefreshTokenOptionArgs.builder()
        .lifetime(lifetime?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AccessApplicationSaasAppRefreshTokenOptionArgs].
 */
@PulumiTagMarker
public class AccessApplicationSaasAppRefreshTokenOptionArgsBuilder 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("bxqfuadsyiacyoth")
    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("xwnocnkgpjtjssid")
    public suspend fun lifetime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.lifetime = mapped
    }

    internal fun build(): AccessApplicationSaasAppRefreshTokenOptionArgs =
        AccessApplicationSaasAppRefreshTokenOptionArgs(
            lifetime = lifetime,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy