Interface ResponseInspectionStatusCode.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResponseInspectionStatusCode.Builder,ResponseInspectionStatusCode>,SdkBuilder<ResponseInspectionStatusCode.Builder,ResponseInspectionStatusCode>,SdkPojo
- Enclosing class:
- ResponseInspectionStatusCode
public static interface ResponseInspectionStatusCode.Builder extends SdkPojo, CopyableBuilder<ResponseInspectionStatusCode.Builder,ResponseInspectionStatusCode>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseInspectionStatusCode.BuilderfailureCodes(Integer... failureCodes)Status codes in the response that indicate a failed login or account creation attempt.ResponseInspectionStatusCode.BuilderfailureCodes(Collection<Integer> failureCodes)Status codes in the response that indicate a failed login or account creation attempt.ResponseInspectionStatusCode.BuildersuccessCodes(Integer... successCodes)Status codes in the response that indicate a successful login or account creation attempt.ResponseInspectionStatusCode.BuildersuccessCodes(Collection<Integer> successCodes)Status codes in the response that indicate a successful login or account creation attempt.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
successCodes
ResponseInspectionStatusCode.Builder successCodes(Collection<Integer> successCodes)
Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.
JSON example:
"SuccessCodes": [ 200, 201 ]- Parameters:
successCodes- Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.JSON example:
"SuccessCodes": [ 200, 201 ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successCodes
ResponseInspectionStatusCode.Builder successCodes(Integer... successCodes)
Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.
JSON example:
"SuccessCodes": [ 200, 201 ]- Parameters:
successCodes- Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.JSON example:
"SuccessCodes": [ 200, 201 ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureCodes
ResponseInspectionStatusCode.Builder failureCodes(Collection<Integer> failureCodes)
Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.
JSON example:
"FailureCodes": [ 400, 404 ]- Parameters:
failureCodes- Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.JSON example:
"FailureCodes": [ 400, 404 ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureCodes
ResponseInspectionStatusCode.Builder failureCodes(Integer... failureCodes)
Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.
JSON example:
"FailureCodes": [ 400, 404 ]- Parameters:
failureCodes- Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.JSON example:
"FailureCodes": [ 400, 404 ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-