Reputation: 157
I know how to create amazon contact flows manually, But I want to automate this process and want to create contact flows using scripts, so is it even possible in amazon connect to create contact flows using scripts?
Upvotes: 0
Views: 843
Reputation: 474
Yes you can. The contact flows are just json files that use the contact flow language as documented here...
https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html
You can then use the CreateContactFlow and UpdateContactFlowContent API calls to programatically update the flows. This can be incorporated into CloudFormation Scripts as well to automate the whole process.
This is all very useful when migrating between dev and prod environments, for example.
Upvotes: 3