Skip to content

Bedrock Agentcore  >  Operations  >  get_event

get_event

Operation

get_event async

get_event(input: GetEventInput, plugins: list[Plugin] | None = None) -> GetEventOutput

Retrieves information about a specific event in an AgentCore Memory resource.

To use this operation, you must have the bedrock-agentcore:GetEvent permission.

Parameters:

Name Type Description Default
input GetEventInput

An instance of GetEventInput.

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
GetEventOutput

An instance of GetEventOutput.

Input

GetEventInput dataclass

Dataclass for GetEventInput structure.

Attributes

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

The identifier of the actor associated with the event.

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

The identifier of the event to retrieve.

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

The identifier of the AgentCore Memory resource containing the event.

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

The identifier of the session containing the event.

Output

GetEventOutput dataclass

Dataclass for GetEventOutput structure.

Attributes

event instance-attribute
event: Event

The requested event information.