com.pulumi.aws.kendra.kotlin.inputs.DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs.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.DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property dateValue A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. As of this writing only UTC is supported. For example, `2012-03-25T12:30:10+00:00`.
* @property longValue A long integer value.
* @property stringListValues A list of strings.
* @property stringValue
*/
public data class
DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs(
public val dateValue: Output? = null,
public val longValue: Output? = null,
public val stringListValues: Output>? = null,
public val stringValue: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.kendra.inputs.DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs =
com.pulumi.aws.kendra.inputs.DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs.builder()
.dateValue(dateValue?.applyValue({ args0 -> args0 }))
.longValue(longValue?.applyValue({ args0 -> args0 }))
.stringListValues(stringListValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.stringValue(stringValue?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs].
*/
@PulumiTagMarker
public class
DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgsBuilder
internal constructor() {
private var dateValue: Output? = null
private var longValue: Output? = null
private var stringListValues: Output>? = null
private var stringValue: Output? = null
/**
* @param value A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. As of this writing only UTC is supported. For example, `2012-03-25T12:30:10+00:00`.
*/
@JvmName("qsiolvevvlkpjvwd")
public suspend fun dateValue(`value`: Output) {
this.dateValue = value
}
/**
* @param value A long integer value.
*/
@JvmName("lttqpeooiswjuslc")
public suspend fun longValue(`value`: Output) {
this.longValue = value
}
/**
* @param value A list of strings.
*/
@JvmName("fnwfuiewwamfdafg")
public suspend fun stringListValues(`value`: Output>) {
this.stringListValues = value
}
@JvmName("ectprypiysybwxes")
public suspend fun stringListValues(vararg values: Output) {
this.stringListValues = Output.all(values.asList())
}
/**
* @param values A list of strings.
*/
@JvmName("glhpovfrtenjdxcm")
public suspend fun stringListValues(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy