7

It's easy to create or rename a contact flow in Amazon Connect, but how do you delete one? The documentation doesn't mention anything about it and a Google search has come up empty.

FlippingBinary
  • 1,357
  • 10
  • 21

2 Answers2

7

Currently, in Amazon Connect, the only way to delete a flow is via API:

From the Administrator Guide for Amazon Connect:

To delete flows use the DeleteContactFlow API.

Currently, there's no way to delete flows using the Amazon Connect admin console.

Sean Summers
  • 2,514
  • 19
  • 26
Zachary A.
  • 86
  • 3
  • 1
    Google shows this as first result, so it would be nice to update it, as currently you can delete flow using cli. – Giedrius Aug 26 '22 at 11:01
7

AWS CLI now supports contact flow deletion.

From the Documentation:

    delete-contact-flow
--instance-id <value>
--contact-flow-id <value>
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]

Edit: Alternatively you can use the DeleteContactFlow API.

lkrimphove
  • 229
  • 2
  • 7