![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.databrew.kotlin.outputs.GetScheduleResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.databrew.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property cronExpression Schedule cron
* @property jobNames A list of jobs to be run, according to the schedule.
*/
public data class GetScheduleResult(
public val cronExpression: String? = null,
public val jobNames: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.databrew.outputs.GetScheduleResult): GetScheduleResult = GetScheduleResult(
cronExpression = javaType.cronExpression().map({ args0 -> args0 }).orElse(null),
jobNames = javaType.jobNames().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy