Skip to content

Bedrock Agentcore Control  >  Structures  >  TargetSummary

TargetSummary

Structure Class

TargetSummary dataclass

Contains summary information about a gateway target. A target represents an endpoint that the gateway can connect to.

Attributes

authorization_data class-attribute instance-attribute
authorization_data: AuthorizationData | None = None

Contains the authorization data that is returned when a gateway target is configured with a credential provider with authorization code grant type and requires user federation.

created_at instance-attribute
created_at: datetime

The timestamp when the target was created.

description class-attribute instance-attribute
description: str | None = field(repr=False, default=None)

The description of the target.

last_synchronized_at class-attribute instance-attribute
last_synchronized_at: datetime | None = None

The timestamp when the target was last synchronized.

listing_mode class-attribute instance-attribute
listing_mode: ListingMode | None = None

The listing mode for the target. MCP resources for DEFAULT targets are cached at the control plane for faster access. MCP resources for DYNAMIC targets are retrieved dynamically when listing tools.

name class-attribute instance-attribute
name: str = field(repr=False)

The name of the target.

resource_priority class-attribute instance-attribute
resource_priority: int | None = None

Priority for resolving resource URI conflicts across targets. Lower values take precedence. Defaults to 1000 when not set.

status instance-attribute
status: TargetStatus

The current status of the target.

target_id instance-attribute
target_id: str

The unique identifier of the target.

target_type class-attribute instance-attribute
target_type: TargetType | None = None

The type of the target.

updated_at instance-attribute
updated_at: datetime

The timestamp when the target was last updated.