Delete Flow Version
bedrockagent_delete_flow_version | R Documentation |
Deletes a version of a flow¶
Description¶
Deletes a version of a flow.
Usage¶
bedrockagent_delete_flow_version(flowIdentifier, flowVersion,
skipResourceInUseCheck)
Arguments¶
flowIdentifier |
[required] The unique identifier of the flow whose version that you want to delete |
flowVersion |
[required] The version of the flow that you want to delete. |
skipResourceInUseCheck |
By default, this value is |
Value¶
A list with the following syntax:
list(
id = "string",
version = "string"
)
Request syntax¶
svc$delete_flow_version(
flowIdentifier = "string",
flowVersion = "string",
skipResourceInUseCheck = TRUE|FALSE
)