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

com.pulumi.aws.kendra.kotlin.outputs.GetIndexUserTokenConfiguration.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.kendra.kotlin.outputs

import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property jsonTokenTypeConfigurations A block that specifies the information about the JSON token type configuration.
 * @property jwtTokenTypeConfigurations A block that specifies the information about the JWT token type configuration.
 */
public data class GetIndexUserTokenConfiguration(
    public val jsonTokenTypeConfigurations: List,
    public val jwtTokenTypeConfigurations: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.kendra.outputs.GetIndexUserTokenConfiguration): GetIndexUserTokenConfiguration = GetIndexUserTokenConfiguration(
            jsonTokenTypeConfigurations = javaType.jsonTokenTypeConfigurations().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.aws.kendra.kotlin.outputs.GetIndexUserTokenConfigurationJsonTokenTypeConfiguration.Companion.toKotlin(args0)
                })
            }),
            jwtTokenTypeConfigurations = javaType.jwtTokenTypeConfigurations().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.aws.kendra.kotlin.outputs.GetIndexUserTokenConfigurationJwtTokenTypeConfiguration.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy