Pass region to client resources
Open
- Dominant language
- Python
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
While testing some spark script I notice that it's necessary to pass the region been used to boto3 client.
```
# S3
s3_client = boto3.client('s3')
s3_resource = boto3.resource('s3')
# Dynamodb
dynamo_client = boto3.client('dynamodb')
dynamo_resource = boto3.resource('dynamodb')
# Glue
glue_client = boto3.client("glue")
# Lambda
lambda_client = boto3.client('lambda')
# SSM
ssm_client = boto3.client('ssm')
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.