Class CreateAssociationBatchResult
- java.lang.Object
-
- com.amazonaws.services.simplesystemsmanagement.model.CreateAssociationBatchResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateAssociationBatchResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateAssociationBatchResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateAssociationBatchResult
clone()
boolean
equals(Object obj)
List<FailedCreateAssociation>
getFailed()
Information about the associations that failed.List<AssociationDescription>
getSuccessful()
Information about the associations that succeeded.int
hashCode()
void
setFailed(Collection<FailedCreateAssociation> failed)
Information about the associations that failed.void
setSuccessful(Collection<AssociationDescription> successful)
Information about the associations that succeeded.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateAssociationBatchResult
withFailed(FailedCreateAssociation... failed)
Information about the associations that failed.CreateAssociationBatchResult
withFailed(Collection<FailedCreateAssociation> failed)
Information about the associations that failed.CreateAssociationBatchResult
withSuccessful(AssociationDescription... successful)
Information about the associations that succeeded.CreateAssociationBatchResult
withSuccessful(Collection<AssociationDescription> successful)
Information about the associations that succeeded.
-
-
-
Method Detail
-
getSuccessful
public List<AssociationDescription> getSuccessful()
Information about the associations that succeeded.
- Returns:
- Information about the associations that succeeded.
-
setSuccessful
public void setSuccessful(Collection<AssociationDescription> successful)
Information about the associations that succeeded.
- Parameters:
successful
- Information about the associations that succeeded.
-
withSuccessful
public CreateAssociationBatchResult withSuccessful(AssociationDescription... successful)
Information about the associations that succeeded.
NOTE: This method appends the values to the existing list (if any). Use
setSuccessful(java.util.Collection)
orwithSuccessful(java.util.Collection)
if you want to override the existing values.- Parameters:
successful
- Information about the associations that succeeded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSuccessful
public CreateAssociationBatchResult withSuccessful(Collection<AssociationDescription> successful)
Information about the associations that succeeded.
- Parameters:
successful
- Information about the associations that succeeded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getFailed
public List<FailedCreateAssociation> getFailed()
Information about the associations that failed.
- Returns:
- Information about the associations that failed.
-
setFailed
public void setFailed(Collection<FailedCreateAssociation> failed)
Information about the associations that failed.
- Parameters:
failed
- Information about the associations that failed.
-
withFailed
public CreateAssociationBatchResult withFailed(FailedCreateAssociation... failed)
Information about the associations that failed.
NOTE: This method appends the values to the existing list (if any). Use
setFailed(java.util.Collection)
orwithFailed(java.util.Collection)
if you want to override the existing values.- Parameters:
failed
- Information about the associations that failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withFailed
public CreateAssociationBatchResult withFailed(Collection<FailedCreateAssociation> failed)
Information about the associations that failed.
- Parameters:
failed
- Information about the associations that failed.- 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 CreateAssociationBatchResult clone()
-
-