Package com.amazonaws.services.sqs.model
Class ChangeMessageVisibilityBatchResultEntry
- java.lang.Object
-
- com.amazonaws.services.sqs.model.ChangeMessageVisibilityBatchResultEntry
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ChangeMessageVisibilityBatchResultEntry extends Object implements Serializable, Cloneable
Encloses the id of an entry in ChangeMessageVisibilityBatch.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChangeMessageVisibilityBatchResultEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChangeMessageVisibilityBatchResultEntry
clone()
boolean
equals(Object obj)
String
getId()
Represents a message whose visibility timeout has been changed successfully.int
hashCode()
void
setId(String id)
Represents a message whose visibility timeout has been changed successfully.String
toString()
Returns a string representation of this object; useful for testing and debugging.ChangeMessageVisibilityBatchResultEntry
withId(String id)
Represents a message whose visibility timeout has been changed successfully.
-
-
-
Method Detail
-
setId
public void setId(String id)
Represents a message whose visibility timeout has been changed successfully.
- Parameters:
id
- Represents a message whose visibility timeout has been changed successfully.
-
getId
public String getId()
Represents a message whose visibility timeout has been changed successfully.
- Returns:
- Represents a message whose visibility timeout has been changed successfully.
-
withId
public ChangeMessageVisibilityBatchResultEntry withId(String id)
Represents a message whose visibility timeout has been changed successfully.
- Parameters:
id
- Represents a message whose visibility timeout has been changed successfully.- 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 ChangeMessageVisibilityBatchResultEntry clone()
-
-