![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.appflow.kotlin.outputs.FlowIncrementalPullConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appflow.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Configuration for scheduled incremental data pull
* @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 FlowIncrementalPullConfig(
public val datetimeTypeFieldName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.FlowIncrementalPullConfig): FlowIncrementalPullConfig = FlowIncrementalPullConfig(
datetimeTypeFieldName = javaType.datetimeTypeFieldName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy