Values_0.CreateContactFlowModuleRequestSourceCreates a flow module for the specified Amazon Connect instance.
type nonrec t = {instanceId : InstanceId.t;The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
*)name : ContactFlowModuleName.t;The name of the flow module.
*)description : ContactFlowModuleDescription.t option;The description of the flow module.
*)content : ContactFlowModuleContent.t;The JSON string that represents the content of the flow. For an example, see Example flow in Amazon Connect Flow language.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
*)settings : FlowModuleSettings.t option;The configuration settings for the flow module.
*)externalInvocationConfiguration : ExternalInvocationConfiguration.t option;The external invocation configuration for the flow module.
*)}val make :
?description:??? ->
?tags:??? ->
?clientToken:??? ->
?settings:??? ->
?externalInvocationConfiguration:??? ->
instanceId:InstanceId.t ->
name:ContactFlowModuleName.t ->
content:ContactFlowModuleContent.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of InstanceId.t
| `Structure of (string * [> `Boolean of Boolean.t ]) list ])
list ]