Type hints for AWS ECR service in Python boto3 code
Type annotations for boto3 ECR 1.42.67 service generated with mypy-boto3-builder 8.12.0
$ python -c "from mypy_boto3_ecr import ECRClient; client: ECRClient"$ mypy --plugin mypy_boto3_ecr your_script.py$ from mypy_boto3_ecr import ECRClient
client = boto3.client('ecr') # type: ECRClient$ from mypy_boto3_ecr.client import ECRClient
response = client.describe_images()$ from mypy_boto3_ecr import ECRClient
client.put_image(repositoryName='my-repo', imageManifest='...')