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 PutActionRevisionRequest
clone()
Creates a shallow clone of this request.boolean
equals(Object obj)
String
getActionName()
The name of the action that will process the revision.ActionRevision
getActionRevision()
String
getPipelineName()
The name of the pipeline that will start processing the revision to the source.String
getStageName()
The name of the stage that contains the action that will act upon the revision.int
hashCode()
void
setActionName(String actionName)
The name of the action that will process the revision.void
setActionRevision(ActionRevision actionRevision)
void
setPipelineName(String pipelineName)
The name of the pipeline that will start processing the revision to the source.void
setStageName(String stageName)
The name of the stage that contains the action that will act upon the revision.String
toString()
Returns a string representation of this object; useful for testing and debugging.PutActionRevisionRequest
withActionName(String actionName)
The name of the action that will process the revision.PutActionRevisionRequest
withActionRevision(ActionRevision actionRevision)
PutActionRevisionRequest
withPipelineName(String pipelineName)
The name of the pipeline that will start processing the revision to the source.PutActionRevisionRequest
withStageName(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public PutActionRevisionRequest clone()
Description copied from class:AmazonWebServiceRequest
Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clone
in classAmazonWebServiceRequest
- See Also:
Object.clone()
-
-