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

io.burkard.cdk.services.ecs.RuntimePlatform.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.ecs

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

  def apply(
    cpuArchitecture: Option[software.amazon.awscdk.services.ecs.CpuArchitecture] = None,
    operatingSystemFamily: Option[software.amazon.awscdk.services.ecs.OperatingSystemFamily] = None
  ): software.amazon.awscdk.services.ecs.RuntimePlatform =
    (new software.amazon.awscdk.services.ecs.RuntimePlatform.Builder)
      .cpuArchitecture(cpuArchitecture.orNull)
      .operatingSystemFamily(operatingSystemFamily.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy