Class AcknowledgeJobResult
- java.lang.Object
-
- com.amazonaws.services.codepipeline.model.AcknowledgeJobResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class AcknowledgeJobResult extends Object implements Serializable, Cloneable
Represents the output of an acknowledge job action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AcknowledgeJobResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AcknowledgeJobResult
clone()
boolean
equals(Object obj)
String
getStatus()
Whether the job worker has received the specified job.int
hashCode()
void
setStatus(JobStatus status)
Whether the job worker has received the specified job.void
setStatus(String status)
Whether the job worker has received the specified job.String
toString()
Returns a string representation of this object; useful for testing and debugging.AcknowledgeJobResult
withStatus(JobStatus status)
Whether the job worker has received the specified job.AcknowledgeJobResult
withStatus(String status)
Whether the job worker has received the specified job.
-
-
-
Method Detail
-
setStatus
public void setStatus(String status)
Whether the job worker has received the specified job.
- Parameters:
status
- Whether the job worker has received the specified job.- See Also:
JobStatus
-
getStatus
public String getStatus()
Whether the job worker has received the specified job.
- Returns:
- Whether the job worker has received the specified job.
- See Also:
JobStatus
-
withStatus
public AcknowledgeJobResult withStatus(String status)
Whether the job worker has received the specified job.
- Parameters:
status
- Whether the job worker has received the specified job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobStatus
-
setStatus
public void setStatus(JobStatus status)
Whether the job worker has received the specified job.
- Parameters:
status
- Whether the job worker has received the specified job.- See Also:
JobStatus
-
withStatus
public AcknowledgeJobResult withStatus(JobStatus status)
Whether the job worker has received the specified job.
- Parameters:
status
- Whether the job worker has received the specified job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobStatus
-
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 AcknowledgeJobResult clone()
-
-