iam-veeramalla / iam-veeramalla/python-for-devops
Resolved the IllegalLocationConstrationException while creating Bucket in us-ease-1 region
Aperta
- Lingua principale
- Python
- Stelle
- 4.8k
- Fork
- 10.3k
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
### **Creating S3 bucket using Boto3**
I was creating an S3 bucket but, Exception **IllegalLocationConstrationException.** By default S3 bucket was created in US-east-1 region.
To solve this Exception, I provided the location to the bucket ap-south-1 and s3 bucket created successfully.
Here is the code:
import boto3
client = boto3.client('s3')
response = client.create_bucket(
Bucket='',
CreateBucketConfiguration={'LocationConstraint': 'ap-south-1'}
)
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.