-
-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
🚀 enhancementNew feature or requestNew feature or request
Description
Describe your idea
QueryOutputTableTypeDef.Items is currently typed as List[Dict[str, TableAttributeValueTypeDef]]. It would be great if one could provide a type as a generic to QueryOutputTableTypeDef, such that Items could be typed as List[] instead.
Code sample
class MyExampleTableEntry(TypedDict):
id: int
name: str
teams: set[str]
result: QueryOutputTableTypeDef[MyExampleTableEntry] = someTable.query(...)
vemel
Metadata
Metadata
Assignees
Labels
🚀 enhancementNew feature or requestNew feature or request