Skip to content

Bedrock Agent  >  Operations  >  delete_agent_action_group

delete_agent_action_group

Operation

delete_agent_action_group async

delete_agent_action_group(input: DeleteAgentActionGroupInput, plugins: list[Plugin] | None = None) -> DeleteAgentActionGroupOutput

Deletes an action group in an agent.

Parameters:

Name Type Description Default
input DeleteAgentActionGroupInput

An instance of DeleteAgentActionGroupInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
DeleteAgentActionGroupOutput

An instance of DeleteAgentActionGroupOutput.

Input

DeleteAgentActionGroupInput dataclass

Dataclass for DeleteAgentActionGroupInput structure.

Attributes

action_group_id class-attribute instance-attribute
action_group_id: str | None = None

The unique identifier of the action group to delete.

agent_id class-attribute instance-attribute
agent_id: str | None = None

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

agent_version class-attribute instance-attribute
agent_version: str | None = None

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

skip_resource_in_use_check class-attribute instance-attribute
skip_resource_in_use_check: bool = False

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.

Output

DeleteAgentActionGroupOutput dataclass

Dataclass for DeleteAgentActionGroupOutput structure.