io.burkard.cdk.services.wafv2.cfnRuleGroup.CustomResponseBodyProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.wafv2.cfnRuleGroup
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CustomResponseBodyProperty {
def apply(
content: String,
contentType: String
): software.amazon.awscdk.services.wafv2.CfnRuleGroup.CustomResponseBodyProperty =
(new software.amazon.awscdk.services.wafv2.CfnRuleGroup.CustomResponseBodyProperty.Builder)
.content(content)
.contentType(contentType)
.build()
}