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

io.burkard.cdk.services.appmesh.cfnRoute.TcpRouteProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.appmesh.cfnRoute

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

  def apply(
    action: software.amazon.awscdk.services.appmesh.CfnRoute.TcpRouteActionProperty,
    timeout: Option[software.amazon.awscdk.services.appmesh.CfnRoute.TcpTimeoutProperty] = None
  ): software.amazon.awscdk.services.appmesh.CfnRoute.TcpRouteProperty =
    (new software.amazon.awscdk.services.appmesh.CfnRoute.TcpRouteProperty.Builder)
      .action(action)
      .timeout(timeout.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy