You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
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
result: QueryOutputTableTypeDef[MyExampleTableEntry] = someTable.query(...)
The text was updated successfully, but these errors were encountered: