io.burkard.cdk.services.lightsail.cfnDistribution.CacheBehaviorPerPathProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.lightsail.cfnDistribution
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CacheBehaviorPerPathProperty {
def apply(
path: Option[String] = None,
behavior: Option[String] = None
): software.amazon.awscdk.services.lightsail.CfnDistribution.CacheBehaviorPerPathProperty =
(new software.amazon.awscdk.services.lightsail.CfnDistribution.CacheBehaviorPerPathProperty.Builder)
.path(path.orNull)
.behavior(behavior.orNull)
.build()
}