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

com.pulumi.awsnative.kendra.kotlin.outputs.DataSourceWebCrawlerAuthenticationConfiguration.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.kendra.kotlin.outputs

import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property basicAuthentication The list of configuration information that's required to connect to and crawl a website host using basic authentication credentials.
 * The list includes the name and port number of the website host.
 */
public data class DataSourceWebCrawlerAuthenticationConfiguration(
    public val basicAuthentication: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.kendra.outputs.DataSourceWebCrawlerAuthenticationConfiguration): DataSourceWebCrawlerAuthenticationConfiguration =
            DataSourceWebCrawlerAuthenticationConfiguration(
                basicAuthentication = javaType.basicAuthentication().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.awsnative.kendra.kotlin.outputs.DataSourceWebCrawlerBasicAuthentication.Companion.toKotlin(args0)
                    })
                }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy