![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.globalaccelerator.endpoints.ApplicationLoadBalancerEndpointOptions.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.globalaccelerator.endpoints
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ApplicationLoadBalancerEndpointOptions {
def apply(
preserveClientIp: Option[Boolean] = None,
weight: Option[Number] = None
): software.amazon.awscdk.services.globalaccelerator.endpoints.ApplicationLoadBalancerEndpointOptions =
(new software.amazon.awscdk.services.globalaccelerator.endpoints.ApplicationLoadBalancerEndpointOptions.Builder)
.preserveClientIp(preserveClientIp.map(Boolean.box).orNull)
.weight(weight.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy