Values.DeleteAgentActionGroupRequestSourceDeletes an action group in an agent.
type nonrec t = {agentId : Id.t;The unique identifier of the agent that the action group belongs to.
*)agentVersion : DraftVersion.t;The version of the agent that the action group belongs to.
*)actionGroupId : Id.t;The unique identifier of the action group 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:??? ->
agentId:Id.t ->
agentVersion:DraftVersion.t ->
actionGroupId:Id.t ->
unit ->
t