Values_0.CreateContactFlowModuleAliasRequestSourceCreates a named alias that points to a specific version of a contact flow module.
type nonrec t = {instanceId : InstanceIdOrArn.t;The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
*)description : ContactFlowDescription.t option;The description of the alias.
*)contactFlowModuleId : ContactFlowModuleId.t;The identifier of the flow module.
*)contactFlowModuleVersion : ResourceVersion.t;The version of the flow module.
*)aliasName : ContactFlowModuleAlias.t;The name of the alias.
*)}val make :
?description:??? ->
instanceId:InstanceIdOrArn.t ->
contactFlowModuleId:ContactFlowModuleId.t ->
contactFlowModuleVersion:ResourceVersion.t ->
aliasName:ContactFlowModuleAlias.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Long of ResourceVersion.t | `String of InstanceIdOrArn.t ])
list ]