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 PutActionRevisionResultclone()booleanequals(Object obj)BooleangetNewRevision()The new revision number or ID for the revision after the action completes.StringgetPipelineExecutionId()The ID of the current workflow state of the pipeline.inthashCode()BooleanisNewRevision()The new revision number or ID for the revision after the action completes.voidsetNewRevision(Boolean newRevision)The new revision number or ID for the revision after the action completes.voidsetPipelineExecutionId(String pipelineExecutionId)The ID of the current workflow state of the pipeline.StringtoString()Returns a string representation of this object; useful for testing and debugging.PutActionRevisionResultwithNewRevision(Boolean newRevision)The new revision number or ID for the revision after the action completes.PutActionRevisionResultwithPipelineExecutionId(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public PutActionRevisionResult clone()
-
-