WebAclResponseInspectionHeaderArgs

data class WebAclResponseInspectionHeaderArgs(val failureValues: Output<List<String>>, val name: Output<String>, val successValues: Output<List<String>>) : ConvertibleToJava<WebAclResponseInspectionHeaderArgs>

Response headers that indicate success or failure of a login request

Constructors

Link copied to clipboard
constructor(failureValues: Output<List<String>>, name: Output<String>, successValues: Output<List<String>>)

Properties

Link copied to clipboard
val failureValues: Output<List<String>>

Values in the response header with the specified name that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values. JSON examples: "FailureValues": [ "LoginFailed", "Failed login" ] and "FailureValues": [ "AccountCreationFailed" ]

Link copied to clipboard
val name: Output<String>

The name of the header to match against. The name must be an exact match, including case. JSON example: "Name": [ "RequestResult" ]

Link copied to clipboard
val successValues: Output<List<String>>

Values in the response header with the specified name that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values. JSON examples: "SuccessValues": [ "LoginPassed", "Successful login" ] and "SuccessValues": [ "AccountCreated", "Successful account creation" ]

Functions

Link copied to clipboard
open override fun toJava(): WebAclResponseInspectionHeaderArgs