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

io.burkard.cdk.services.gamelift.cfnFleet.LocationConfigurationProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.gamelift.cfnFleet

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

  def apply(
    location: String,
    locationCapacity: Option[software.amazon.awscdk.services.gamelift.CfnFleet.LocationCapacityProperty] = None
  ): software.amazon.awscdk.services.gamelift.CfnFleet.LocationConfigurationProperty =
    (new software.amazon.awscdk.services.gamelift.CfnFleet.LocationConfigurationProperty.Builder)
      .location(location)
      .locationCapacity(locationCapacity.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy