io.burkard.cdk.services.cloudformation.CfnWaitConditionProps.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.cloudformation
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CfnWaitConditionProps {
def apply(
count: Option[Number] = None,
handle: Option[String] = None,
timeout: Option[String] = None
): software.amazon.awscdk.services.cloudformation.CfnWaitConditionProps =
(new software.amazon.awscdk.services.cloudformation.CfnWaitConditionProps.Builder)
.count(count.orNull)
.handle(handle.orNull)
.timeout(timeout.orNull)
.build()
}