Skip to content

Delete Agent Action Group

bedrockagent_delete_agent_action_group R Documentation

Deletes an action group in an agent

Description

Deletes an action group in an agent.

Usage

bedrockagent_delete_agent_action_group(agentId, agentVersion,
  actionGroupId, skipResourceInUseCheck)

Arguments

agentId

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

agentVersion

[required] The version of the agent that the action group belongs to.

actionGroupId

[required] The unique identifier of the action group to delete.

skipResourceInUseCheck

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.

Value

An empty list.

Request syntax

svc$delete_agent_action_group(
  agentId = "string",
  agentVersion = "string",
  actionGroupId = "string",
  skipResourceInUseCheck = TRUE|FALSE
)