Class PutActionRevisionResult
- java.lang.Object
-
- com.amazonaws.services.codepipeline.model.PutActionRevisionResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class PutActionRevisionResult extends Object implements Serializable, Cloneable
Represents the output of a put action revision action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PutActionRevisionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutActionRevisionResult
clone()
boolean
equals(Object obj)
Boolean
getNewRevision()
The new revision number or ID for the revision after the action completes.String
getPipelineExecutionId()
The ID of the current workflow state of the pipeline.int
hashCode()
Boolean
isNewRevision()
The new revision number or ID for the revision after the action completes.void
setNewRevision(Boolean newRevision)
The new revision number or ID for the revision after the action completes.void
setPipelineExecutionId(String pipelineExecutionId)
The ID of the current workflow state of the pipeline.String
toString()
Returns a string representation of this object; useful for testing and debugging.PutActionRevisionResult
withNewRevision(Boolean newRevision)
The new revision number or ID for the revision after the action completes.PutActionRevisionResult
withPipelineExecutionId(String pipelineExecutionId)
The ID of the current workflow state of the pipeline.
-
-
-
Method Detail
-
setNewRevision
public void setNewRevision(Boolean newRevision)
The new revision number or ID for the revision after the action completes.
- Parameters:
newRevision
- The new revision number or ID for the revision after the action completes.
-
getNewRevision
public Boolean getNewRevision()
The new revision number or ID for the revision after the action completes.
- Returns:
- The new revision number or ID for the revision after the action completes.
-
withNewRevision
public PutActionRevisionResult withNewRevision(Boolean newRevision)
The new revision number or ID for the revision after the action completes.
- Parameters:
newRevision
- The new revision number or ID for the revision after the action completes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isNewRevision
public Boolean isNewRevision()
The new revision number or ID for the revision after the action completes.
- Returns:
- The new revision number or ID for the revision after the action completes.
-
setPipelineExecutionId
public void setPipelineExecutionId(String pipelineExecutionId)
The ID of the current workflow state of the pipeline.
- Parameters:
pipelineExecutionId
- The ID of the current workflow state of the pipeline.
-
getPipelineExecutionId
public String getPipelineExecutionId()
The ID of the current workflow state of the pipeline.
- Returns:
- The ID of the current workflow state of the pipeline.
-
withPipelineExecutionId
public PutActionRevisionResult withPipelineExecutionId(String pipelineExecutionId)
The ID of the current workflow state of the pipeline.
- Parameters:
pipelineExecutionId
- The ID of the current workflow state of the pipeline.- 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 PutActionRevisionResult clone()
-
-