io.burkard.cdk.services.cloudfront.cfnFunction.FunctionConfigProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.cloudfront.cfnFunction
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object FunctionConfigProperty {
def apply(
runtime: String,
comment: String
): software.amazon.awscdk.services.cloudfront.CfnFunction.FunctionConfigProperty =
(new software.amazon.awscdk.services.cloudfront.CfnFunction.FunctionConfigProperty.Builder)
.runtime(runtime)
.comment(comment)
.build()
}