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

com.pulumi.awsnative.kendra.kotlin.outputs.DataSourceConfluenceSpaceToIndexFieldMapping.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: 1.24.0.0
Show newest version
@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