Class PutEvaluationsResult
- java.lang.Object
-
- com.amazonaws.services.config.model.PutEvaluationsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class PutEvaluationsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PutEvaluationsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutEvaluationsResult
clone()
boolean
equals(Object obj)
List<Evaluation>
getFailedEvaluations()
Requests that failed because of a client or server error.int
hashCode()
void
setFailedEvaluations(Collection<Evaluation> failedEvaluations)
Requests that failed because of a client or server error.String
toString()
Returns a string representation of this object; useful for testing and debugging.PutEvaluationsResult
withFailedEvaluations(Evaluation... failedEvaluations)
Requests that failed because of a client or server error.PutEvaluationsResult
withFailedEvaluations(Collection<Evaluation> failedEvaluations)
Requests that failed because of a client or server error.
-
-
-
Method Detail
-
getFailedEvaluations
public List<Evaluation> getFailedEvaluations()
Requests that failed because of a client or server error.
- Returns:
- Requests that failed because of a client or server error.
-
setFailedEvaluations
public void setFailedEvaluations(Collection<Evaluation> failedEvaluations)
Requests that failed because of a client or server error.
- Parameters:
failedEvaluations
- Requests that failed because of a client or server error.
-
withFailedEvaluations
public PutEvaluationsResult withFailedEvaluations(Evaluation... failedEvaluations)
Requests that failed because of a client or server error.
NOTE: This method appends the values to the existing list (if any). Use
setFailedEvaluations(java.util.Collection)
orwithFailedEvaluations(java.util.Collection)
if you want to override the existing values.- Parameters:
failedEvaluations
- Requests that failed because of a client or server error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withFailedEvaluations
public PutEvaluationsResult withFailedEvaluations(Collection<Evaluation> failedEvaluations)
Requests that failed because of a client or server error.
- Parameters:
failedEvaluations
- Requests that failed because of a client or server error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public PutEvaluationsResult clone()
-
-