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

io.burkard.cdk.services.wafv2.cfnRuleGroup.RuleActionProperty.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 RuleActionProperty {

  def apply(
    count: Option[AnyRef] = None,
    allow: Option[AnyRef] = None,
    block: Option[AnyRef] = None,
    captcha: Option[AnyRef] = None
  ): software.amazon.awscdk.services.wafv2.CfnRuleGroup.RuleActionProperty =
    (new software.amazon.awscdk.services.wafv2.CfnRuleGroup.RuleActionProperty.Builder)
      .count(count.orNull)
      .allow(allow.orNull)
      .block(block.orNull)
      .captcha(captcha.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy