
com.pulumi.awsnative.customerprofiles.kotlin.inputs.IntegrationIncrementalPullConfigArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.customerprofiles.kotlin.inputs
import com.pulumi.awsnative.customerprofiles.inputs.IntegrationIncrementalPullConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property datetimeTypeFieldName A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
*/
public data class IntegrationIncrementalPullConfigArgs(
public val datetimeTypeFieldName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.customerprofiles.inputs.IntegrationIncrementalPullConfigArgs =
com.pulumi.awsnative.customerprofiles.inputs.IntegrationIncrementalPullConfigArgs.builder()
.datetimeTypeFieldName(datetimeTypeFieldName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationIncrementalPullConfigArgs].
*/
@PulumiTagMarker
public class IntegrationIncrementalPullConfigArgsBuilder internal constructor() {
private var datetimeTypeFieldName: Output? = null
/**
* @param value A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
*/
@JvmName("cwdktecqpvfyhtap")
public suspend fun datetimeTypeFieldName(`value`: Output) {
this.datetimeTypeFieldName = value
}
/**
* @param value A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
*/
@JvmName("dxbiunjclgxmfixs")
public suspend fun datetimeTypeFieldName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.datetimeTypeFieldName = mapped
}
internal fun build(): IntegrationIncrementalPullConfigArgs = IntegrationIncrementalPullConfigArgs(
datetimeTypeFieldName = datetimeTypeFieldName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy