
com.pulumi.awsnative.appintegrations.kotlin.outputs.DataIntegrationScheduleConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appintegrations.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property firstExecutionFrom The start date for objects to import in the first flow run. Epoch or ISO timestamp format is supported.
* @property object The name of the object to pull from the data source.
* @property scheduleExpression How often the data should be pulled from data source.
*/
public data class DataIntegrationScheduleConfig(
public val firstExecutionFrom: String? = null,
public val `object`: String? = null,
public val scheduleExpression: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appintegrations.outputs.DataIntegrationScheduleConfig): DataIntegrationScheduleConfig = DataIntegrationScheduleConfig(
firstExecutionFrom = javaType.firstExecutionFrom().map({ args0 -> args0 }).orElse(null),
`object` = javaType.`object`().map({ args0 -> args0 }).orElse(null),
scheduleExpression = javaType.scheduleExpression(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy