Values_0.CreateContactFlowRequestSourceCreates a flow for the specified Amazon Connect instance. You can also create and update flows using the Amazon Connect Flow language.
type nonrec t = {instanceId : InstanceId.t;The identifier of the Amazon Connect instance.
*)name : ContactFlowName.t;The name of the flow.
*)type_ : ContactFlowType.t;The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide.
*)description : ContactFlowDescription.t option;The description of the flow.
*)content : ContactFlowContent.t;The JSON string that represents the content of the flow. For an example, see Example flow in Amazon Connect Flow language. Length Constraints: Minimum length of 1. Maximum length of 256000.
*)status : ContactFlowStatus.t option;Indicates the flow status as either SAVED or PUBLISHED. The PUBLISHED status will initiate validation on the content. the SAVED status does not initiate validation of the content. SAVED | PUBLISHED.
*)}val make :
?description:??? ->
?status:??? ->
?tags:??? ->
instanceId:InstanceId.t ->
name:ContactFlowName.t ->
type_:ContactFlowType.t ->
content:ContactFlowContent.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of InstanceId.t ])
list ]