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

io.burkard.cdk.services.imagebuilder.cfnImagePipeline.ScheduleProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.imagebuilder.cfnImagePipeline

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ScheduleProperty {

  def apply(
    scheduleExpression: Option[String] = None,
    pipelineExecutionStartCondition: Option[String] = None
  ): software.amazon.awscdk.services.imagebuilder.CfnImagePipeline.ScheduleProperty =
    (new software.amazon.awscdk.services.imagebuilder.CfnImagePipeline.ScheduleProperty.Builder)
      .scheduleExpression(scheduleExpression.orNull)
      .pipelineExecutionStartCondition(pipelineExecutionStartCondition.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy