
com.pulumi.awsnative.datazone.kotlin.outputs.DataSourceScheduleConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datazone.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The schedule of the data source runs.
* @property schedule The schedule of the data source runs.
* @property timezone The timezone of the data source run.
*/
public data class DataSourceScheduleConfiguration(
public val schedule: String? = null,
public val timezone: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datazone.outputs.DataSourceScheduleConfiguration): DataSourceScheduleConfiguration = DataSourceScheduleConfiguration(
schedule = javaType.schedule().map({ args0 -> args0 }).orElse(null),
timezone = javaType.timezone().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy