![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.kendra.kotlin.outputs.DataSourceConfluenceSpaceToIndexFieldMapping.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.kendra.kotlin.outputs
import com.pulumi.awsnative.kendra.kotlin.enums.DataSourceConfluenceSpaceFieldName
import kotlin.String
import kotlin.Suppress
/**
*
* @property dataSourceFieldName
* @property dateFieldFormat
* @property indexFieldName
*/
public data class DataSourceConfluenceSpaceToIndexFieldMapping(
public val dataSourceFieldName: DataSourceConfluenceSpaceFieldName,
public val dateFieldFormat: String? = null,
public val indexFieldName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kendra.outputs.DataSourceConfluenceSpaceToIndexFieldMapping): DataSourceConfluenceSpaceToIndexFieldMapping = DataSourceConfluenceSpaceToIndexFieldMapping(
dataSourceFieldName = javaType.dataSourceFieldName().let({ args0 ->
com.pulumi.awsnative.kendra.kotlin.enums.DataSourceConfluenceSpaceFieldName.Companion.toKotlin(args0)
}),
dateFieldFormat = javaType.dateFieldFormat().map({ args0 -> args0 }).orElse(null),
indexFieldName = javaType.indexFieldName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy