com.pulumi.aws.kendra.kotlin.inputs.DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.kendra.kotlin.inputs
import com.pulumi.aws.kendra.inputs.DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property basicAuthentications 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. Detailed below.
*/
public data class DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgs(
public val basicAuthentications: Output>? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.kendra.inputs.DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgs =
com.pulumi.aws.kendra.inputs.DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgs.builder()
.basicAuthentications(
basicAuthentications?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgs].
*/
@PulumiTagMarker
public class DataSourceConfigurationWebCrawlerConfigurationAuthenticationConfigurationArgsBuilder
internal constructor() {
private var basicAuthentications:
Output>? =
null
/**
* @param value 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. Detailed below.
*/
@JvmName("thgxetllmpusxapq")
public suspend fun basicAuthentications(`value`: Output>) {
this.basicAuthentications = value
}
@JvmName("bbxhvjsagxkfdhwm")
public suspend fun basicAuthentications(vararg values: Output) {
this.basicAuthentications = Output.all(values.asList())
}
/**
* @param values 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. Detailed below.
*/
@JvmName("kqpvbmciljkvxkld")
public suspend fun basicAuthentications(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy