All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy