Class DeleteCustomActionTypeRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.codepipeline.model.DeleteCustomActionTypeRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class DeleteCustomActionTypeRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
Represents the input of a delete custom action operation. The custom action will be marked as deleted.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description DeleteCustomActionTypeRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteCustomActionTypeRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetCategory()The category of the custom action that you want to delete, such as source or deploy.StringgetProvider()The provider of the service used in the custom action, such as AWS CodeDeploy.StringgetVersion()The version of the custom action to delete.inthashCode()voidsetCategory(ActionCategory category)The category of the custom action that you want to delete, such as source or deploy.voidsetCategory(String category)The category of the custom action that you want to delete, such as source or deploy.voidsetProvider(String provider)The provider of the service used in the custom action, such as AWS CodeDeploy.voidsetVersion(String version)The version of the custom action to delete.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeleteCustomActionTypeRequestwithCategory(ActionCategory category)The category of the custom action that you want to delete, such as source or deploy.DeleteCustomActionTypeRequestwithCategory(String category)The category of the custom action that you want to delete, such as source or deploy.DeleteCustomActionTypeRequestwithProvider(String provider)The provider of the service used in the custom action, such as AWS CodeDeploy.DeleteCustomActionTypeRequestwithVersion(String version)The version of the custom action to delete.-
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
-
setCategory
public void setCategory(String category)
The category of the custom action that you want to delete, such as source or deploy.
- Parameters:
category- The category of the custom action that you want to delete, such as source or deploy.- See Also:
ActionCategory
-
getCategory
public String getCategory()
The category of the custom action that you want to delete, such as source or deploy.
- Returns:
- The category of the custom action that you want to delete, such as source or deploy.
- See Also:
ActionCategory
-
withCategory
public DeleteCustomActionTypeRequest withCategory(String category)
The category of the custom action that you want to delete, such as source or deploy.
- Parameters:
category- The category of the custom action that you want to delete, such as source or deploy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionCategory
-
setCategory
public void setCategory(ActionCategory category)
The category of the custom action that you want to delete, such as source or deploy.
- Parameters:
category- The category of the custom action that you want to delete, such as source or deploy.- See Also:
ActionCategory
-
withCategory
public DeleteCustomActionTypeRequest withCategory(ActionCategory category)
The category of the custom action that you want to delete, such as source or deploy.
- Parameters:
category- The category of the custom action that you want to delete, such as source or deploy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionCategory
-
setProvider
public void setProvider(String provider)
The provider of the service used in the custom action, such as AWS CodeDeploy.
- Parameters:
provider- The provider of the service used in the custom action, such as AWS CodeDeploy.
-
getProvider
public String getProvider()
The provider of the service used in the custom action, such as AWS CodeDeploy.
- Returns:
- The provider of the service used in the custom action, such as AWS CodeDeploy.
-
withProvider
public DeleteCustomActionTypeRequest withProvider(String provider)
The provider of the service used in the custom action, such as AWS CodeDeploy.
- Parameters:
provider- The provider of the service used in the custom action, such as AWS CodeDeploy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setVersion
public void setVersion(String version)
The version of the custom action to delete.
- Parameters:
version- The version of the custom action to delete.
-
getVersion
public String getVersion()
The version of the custom action to delete.
- Returns:
- The version of the custom action to delete.
-
withVersion
public DeleteCustomActionTypeRequest withVersion(String version)
The version of the custom action to delete.
- Parameters:
version- The version of the custom action to delete.- 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 DeleteCustomActionTypeRequest 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()
-
-