File size: 171 Bytes
105b369
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from typing import Optional

from pydantic import BaseModel


class AwsBuildContext(BaseModel):
    aws_region: Optional[str] = None
    aws_profile: Optional[str] = None