Interface ResponseInspectionJson.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<ResponseInspectionJson.Builder,,ResponseInspectionJson> SdkBuilder<ResponseInspectionJson.Builder,,ResponseInspectionJson> SdkPojo
- Enclosing class:
 ResponseInspectionJson
- 
Method Summary
Modifier and TypeMethodDescriptionfailureValues(String... failureValues) Values for the specified identifier in the response JSON that indicate a failed login or account creation attempt.failureValues(Collection<String> failureValues) Values for the specified identifier in the response JSON that indicate a failed login or account creation attempt.identifier(String identifier) The identifier for the value to match against in the JSON.successValues(String... successValues) Values for the specified identifier in the response JSON that indicate a successful login or account creation attempt.successValues(Collection<String> successValues) Values for the specified identifier in the response JSON that indicate a successful login or account creation attempt.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields 
- 
Method Details
- 
identifier
The identifier for the value to match against in the JSON. The identifier must be an exact match, including case.
JSON examples:
"Identifier": [ "/login/success" ]and"Identifier": [ "/sign-up/success" ]- Parameters:
 identifier- The identifier for the value to match against in the JSON. The identifier must be an exact match, including case.JSON examples:
"Identifier": [ "/login/success" ]and"Identifier": [ "/sign-up/success" ]- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
successValues
Values for the specified identifier in the response JSON 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 example:
"SuccessValues": [ "True", "Succeeded" ]- Parameters:
 successValues- Values for the specified identifier in the response JSON 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 example:
"SuccessValues": [ "True", "Succeeded" ]- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
successValues
Values for the specified identifier in the response JSON 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 example:
"SuccessValues": [ "True", "Succeeded" ]- Parameters:
 successValues- Values for the specified identifier in the response JSON 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 example:
"SuccessValues": [ "True", "Succeeded" ]- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
failureValues
Values for the specified identifier in the response JSON 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 example:
"FailureValues": [ "False", "Failed" ]- Parameters:
 failureValues- Values for the specified identifier in the response JSON 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 example:
"FailureValues": [ "False", "Failed" ]- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
failureValues
Values for the specified identifier in the response JSON 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 example:
"FailureValues": [ "False", "Failed" ]- Parameters:
 failureValues- Values for the specified identifier in the response JSON 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 example:
"FailureValues": [ "False", "Failed" ]- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 
 -