io.burkard.cdk.services.appintegrations.cfnDataIntegration.ScheduleConfigProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.appintegrations.cfnDataIntegration
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ScheduleConfigProperty {
def apply(
`object`: String,
scheduleExpression: String,
firstExecutionFrom: String
): software.amazon.awscdk.services.appintegrations.CfnDataIntegration.ScheduleConfigProperty =
(new software.amazon.awscdk.services.appintegrations.CfnDataIntegration.ScheduleConfigProperty.Builder)
.`object`(`object`)
.scheduleExpression(scheduleExpression)
.firstExecutionFrom(firstExecutionFrom)
.build()
}