deleteCustomAction

Deletes a custom action.

Samples


fun main() { 
   //sampleStart 
   // Delete a custom action
val resp = chatbotClient.deleteCustomAction {
    customActionArn = "arn:aws:chatbot::1234567890:custom-action/my-custom-action"
} 
   //sampleEnd
}