Rate Limit Rule Args
    data class RateLimitRuleArgs(val action: Output<Either<String, ActionType>>, val enabledState: Output<Either<String, CustomRuleEnabledState>>? = null, val matchConditions: Output<List<MatchConditionArgs>>, val name: Output<String>, val priority: Output<Int>, val rateLimitDurationInMinutes: Output<Int>, val rateLimitThreshold: Output<Int>) : ConvertibleToJava<RateLimitRuleArgs> 
Defines a rate limiting rule that can be included in a waf policy
Constructors
Link copied to clipboard
                fun RateLimitRuleArgs(action: Output<Either<String, ActionType>>, enabledState: Output<Either<String, CustomRuleEnabledState>>? = null, matchConditions: Output<List<MatchConditionArgs>>, name: Output<String>, priority: Output<Int>, rateLimitDurationInMinutes: Output<Int>, rateLimitThreshold: Output<Int>)