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