Interface ResponseInspectionBodyContains.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResponseInspectionBodyContains.Builder,ResponseInspectionBodyContains>,SdkBuilder<ResponseInspectionBodyContains.Builder,ResponseInspectionBodyContains>,SdkPojo
- Enclosing class:
- ResponseInspectionBodyContains
public static interface ResponseInspectionBodyContains.Builder extends SdkPojo, CopyableBuilder<ResponseInspectionBodyContains.Builder,ResponseInspectionBodyContains>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseInspectionBodyContains.BuilderfailureStrings(String... failureStrings)Strings in the body of the response that indicate a failed login or account creation attempt.ResponseInspectionBodyContains.BuilderfailureStrings(Collection<String> failureStrings)Strings in the body of the response that indicate a failed login or account creation attempt.ResponseInspectionBodyContains.BuildersuccessStrings(String... successStrings)Strings in the body of the response that indicate a successful login or account creation attempt.ResponseInspectionBodyContains.BuildersuccessStrings(Collection<String> successStrings)Strings in the body of 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
successStrings
ResponseInspectionBodyContains.Builder successStrings(Collection<String> successStrings)
Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.
JSON examples:
"SuccessStrings": [ "Login successful" ]and"SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]- Parameters:
successStrings- Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.JSON examples:
"SuccessStrings": [ "Login successful" ]and"SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successStrings
ResponseInspectionBodyContains.Builder successStrings(String... successStrings)
Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.
JSON examples:
"SuccessStrings": [ "Login successful" ]and"SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]- Parameters:
successStrings- Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.JSON examples:
"SuccessStrings": [ "Login successful" ]and"SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureStrings
ResponseInspectionBodyContains.Builder failureStrings(Collection<String> failureStrings)
Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.
JSON example:
"FailureStrings": [ "Request failed" ]- Parameters:
failureStrings- Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.JSON example:
"FailureStrings": [ "Request failed" ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureStrings
ResponseInspectionBodyContains.Builder failureStrings(String... failureStrings)
Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.
JSON example:
"FailureStrings": [ "Request failed" ]- Parameters:
failureStrings- Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.JSON example:
"FailureStrings": [ "Request failed" ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-