mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
10 lines
265 B
Python
10 lines
265 B
Python
from typing import Any
|
|
|
|
import boto3
|
|
|
|
REGION = "us-east-1"
|
|
|
|
|
|
def make_boto_client(service_name: str) -> Any:
|
|
factory: Any = boto3.client # pyright: ignore[reportUnknownMemberType, reportUnknownVariableType]
|
|
return factory(service_name, region_name=REGION)
|