HEX
Server: Apache
System: Linux vmi1259262.contaboserver.net 5.15.0-170-generic #180-Ubuntu SMP Fri Jan 9 16:10:31 UTC 2026 x86_64
User: aqarnomics (1008)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //usr/share/doc/awscli/examples/codepipeline/delete-custom-action-type.rst
**To delete a custom action**

This example deletes a custom action in AWS CodePipeline by using an already-created JSON file (here named DeleteMyCustomAction.json) that contains the action type, provider name, and version number of the action to be deleted. Use the list-action-types command to view the correct values for category, version, and provider.

Command::

  aws codepipeline delete-custom-action-type --cli-input-json file://DeleteMyCustomAction.json
  
JSON file sample contents::
  
  {
    "category": "Build",
    "version": "1",
    "provider": "MyJenkinsProviderName"
  }

Output::

  None.