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 AcknowledgeJobResultclone()booleanequals(Object obj)StringgetStatus()Whether the job worker has received the specified job.inthashCode()voidsetStatus(JobStatus status)Whether the job worker has received the specified job.voidsetStatus(String status)Whether the job worker has received the specified job.StringtoString()Returns a string representation of this object; useful for testing and debugging.AcknowledgeJobResultwithStatus(JobStatus status)Whether the job worker has received the specified job.AcknowledgeJobResultwithStatus(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public AcknowledgeJobResult clone()
-
-