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

com.pulumi.aws.cognito.kotlin.outputs.GetUserPoolClientTokenValidityUnit.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.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.cognito.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property accessToken (Optional) Time unit in for the value in `access_token_validity`, defaults to `hours`.
 * @property idToken (Optional) Time unit in for the value in `id_token_validity`, defaults to `hours`.
 * @property refreshToken (Optional) Time unit in for the value in `refresh_token_validity`, defaults to `days`.
 */
public data class GetUserPoolClientTokenValidityUnit(
    public val accessToken: String,
    public val idToken: String,
    public val refreshToken: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.cognito.outputs.GetUserPoolClientTokenValidityUnit): GetUserPoolClientTokenValidityUnit = GetUserPoolClientTokenValidityUnit(
            accessToken = javaType.accessToken(),
            idToken = javaType.idToken(),
            refreshToken = javaType.refreshToken(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy