Class AddAttributesToFindingsResult
- java.lang.Object
-
- com.amazonaws.services.inspector.model.AddAttributesToFindingsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class AddAttributesToFindingsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddAttributesToFindingsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AddAttributesToFindingsResult
addFailedItemsEntry(String key, FailedItemDetails value)
AddAttributesToFindingsResult
clearFailedItemsEntries()
Removes all the entries added into FailedItems.AddAttributesToFindingsResult
clone()
boolean
equals(Object obj)
Map<String,FailedItemDetails>
getFailedItems()
Attribute details that cannot be described.int
hashCode()
void
setFailedItems(Map<String,FailedItemDetails> failedItems)
Attribute details that cannot be described.String
toString()
Returns a string representation of this object; useful for testing and debugging.AddAttributesToFindingsResult
withFailedItems(Map<String,FailedItemDetails> failedItems)
Attribute details that cannot be described.
-
-
-
Method Detail
-
getFailedItems
public Map<String,FailedItemDetails> getFailedItems()
Attribute details that cannot be described. An error code is provided for each failed item.
- Returns:
- Attribute details that cannot be described. An error code is provided for each failed item.
-
setFailedItems
public void setFailedItems(Map<String,FailedItemDetails> failedItems)
Attribute details that cannot be described. An error code is provided for each failed item.
- Parameters:
failedItems
- Attribute details that cannot be described. An error code is provided for each failed item.
-
withFailedItems
public AddAttributesToFindingsResult withFailedItems(Map<String,FailedItemDetails> failedItems)
Attribute details that cannot be described. An error code is provided for each failed item.
- Parameters:
failedItems
- Attribute details that cannot be described. An error code is provided for each failed item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addFailedItemsEntry
public AddAttributesToFindingsResult addFailedItemsEntry(String key, FailedItemDetails value)
-
clearFailedItemsEntries
public AddAttributesToFindingsResult clearFailedItemsEntries()
Removes all the entries added into FailedItems. <p> 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 AddAttributesToFindingsResult clone()
-
-