HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
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.