Values.DeleteFlowVersionRequestSourceDeletes a version of a flow.
type nonrec t = {flowIdentifier : FlowIdentifier.t;The unique identifier of the flow whose version that you want to delete
*)flowVersion : NumericalVersion.t;The version of the flow that you want to delete.
*)skipResourceInUseCheck : Boolean.t option;By default, this value is false and deletion is stopped if the resource is in use. If you set it to true, the resource will be deleted even if the resource is in use.
*)}val make :
?skipResourceInUseCheck:??? ->
flowIdentifier:FlowIdentifier.t ->
flowVersion:NumericalVersion.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of FlowIdentifier.t ]) list ]