from pydantic import BaseModel class AWSResource(BaseModel): """Represents an arbitrary AWS resource.""" arn: str account_id: str application_family: str | None = None environment: str | None = None resource_type: str region: str runtime: str | None = None terraform_github_repository: str | None = None terraform_github_path: str | None = None terraformed: bool = False