Skip to content

Bedrock Agent  >  Operations  >  get_agent_action_group

get_agent_action_group

Operation

get_agent_action_group async

get_agent_action_group(input: GetAgentActionGroupInput, plugins: list[Plugin] | None = None) -> GetAgentActionGroupOutput

Gets information about an action group for an agent.

Parameters:

Name Type Description Default
input GetAgentActionGroupInput

An instance of GetAgentActionGroupInput.

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
GetAgentActionGroupOutput

An instance of GetAgentActionGroupOutput.

Input

GetAgentActionGroupInput dataclass

Dataclass for GetAgentActionGroupInput structure.

Attributes

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

The unique identifier of the action group for which to get information.

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.

Output

GetAgentActionGroupOutput dataclass

Dataclass for GetAgentActionGroupOutput structure.

Attributes

agent_action_group instance-attribute
agent_action_group: AgentActionGroup

Contains details about the action group.