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

io.burkard.cdk.services.medialive.cfnChannel.CaptionRectangleProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.medialive.cfnChannel

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

  def apply(
    width: Option[Number] = None,
    leftOffset: Option[Number] = None,
    topOffset: Option[Number] = None,
    height: Option[Number] = None
  ): software.amazon.awscdk.services.medialive.CfnChannel.CaptionRectangleProperty =
    (new software.amazon.awscdk.services.medialive.CfnChannel.CaptionRectangleProperty.Builder)
      .width(width.orNull)
      .leftOffset(leftOffset.orNull)
      .topOffset(topOffset.orNull)
      .height(height.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy