Class PutActionRevisionRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.codepipeline.model.PutActionRevisionRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class PutActionRevisionRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
Represents the input of a put action revision action.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description PutActionRevisionRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutActionRevisionRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetActionName()The name of the action that will process the revision.ActionRevisiongetActionRevision()StringgetPipelineName()The name of the pipeline that will start processing the revision to the source.StringgetStageName()The name of the stage that contains the action that will act upon the revision.inthashCode()voidsetActionName(String actionName)The name of the action that will process the revision.voidsetActionRevision(ActionRevision actionRevision)voidsetPipelineName(String pipelineName)The name of the pipeline that will start processing the revision to the source.voidsetStageName(String stageName)The name of the stage that contains the action that will act upon the revision.StringtoString()Returns a string representation of this object; useful for testing and debugging.PutActionRevisionRequestwithActionName(String actionName)The name of the action that will process the revision.PutActionRevisionRequestwithActionRevision(ActionRevision actionRevision)PutActionRevisionRequestwithPipelineName(String pipelineName)The name of the pipeline that will start processing the revision to the source.PutActionRevisionRequestwithStageName(String stageName)The name of the stage that contains the action that will act upon the revision.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setPipelineName
public void setPipelineName(String pipelineName)
The name of the pipeline that will start processing the revision to the source.
- Parameters:
pipelineName- The name of the pipeline that will start processing the revision to the source.
-
getPipelineName
public String getPipelineName()
The name of the pipeline that will start processing the revision to the source.
- Returns:
- The name of the pipeline that will start processing the revision to the source.
-
withPipelineName
public PutActionRevisionRequest withPipelineName(String pipelineName)
The name of the pipeline that will start processing the revision to the source.
- Parameters:
pipelineName- The name of the pipeline that will start processing the revision to the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStageName
public void setStageName(String stageName)
The name of the stage that contains the action that will act upon the revision.
- Parameters:
stageName- The name of the stage that contains the action that will act upon the revision.
-
getStageName
public String getStageName()
The name of the stage that contains the action that will act upon the revision.
- Returns:
- The name of the stage that contains the action that will act upon the revision.
-
withStageName
public PutActionRevisionRequest withStageName(String stageName)
The name of the stage that contains the action that will act upon the revision.
- Parameters:
stageName- The name of the stage that contains the action that will act upon the revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActionName
public void setActionName(String actionName)
The name of the action that will process the revision.
- Parameters:
actionName- The name of the action that will process the revision.
-
getActionName
public String getActionName()
The name of the action that will process the revision.
- Returns:
- The name of the action that will process the revision.
-
withActionName
public PutActionRevisionRequest withActionName(String actionName)
The name of the action that will process the revision.
- Parameters:
actionName- The name of the action that will process the revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActionRevision
public void setActionRevision(ActionRevision actionRevision)
- Parameters:
actionRevision-
-
getActionRevision
public ActionRevision getActionRevision()
- Returns:
-
withActionRevision
public PutActionRevisionRequest withActionRevision(ActionRevision actionRevision)
- Parameters:
actionRevision-- 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 PutActionRevisionRequest clone()
Description copied from class:AmazonWebServiceRequestCreates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clonein classAmazonWebServiceRequest- See Also:
Object.clone()
-
-