Source code for runway.core.providers.aws.type_defs

"""AWS type definitions."""
from __future__ import annotations

from typing import List

from typing_extensions import TypedDict


[docs]class TagTypeDef(TypedDict): """AWS resource tags.""" Key: str Value: str
TagSetTypeDef = List[TagTypeDef]