Module Values.DeleteAgentActionGroupRequestSource

Deletes an action group in an agent.

Sourcetype nonrec t = {
  1. agentId : Id.t;
    (*

    The unique identifier of the agent that the action group belongs to.

    *)
  2. agentVersion : DraftVersion.t;
    (*

    The version of the agent that the action group belongs to.

    *)
  3. actionGroupId : Id.t;
    (*

    The unique identifier of the action group to delete.

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?skipResourceInUseCheck:??? -> agentId:Id.t -> agentVersion:DraftVersion.t -> actionGroupId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of Id.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t