https://github.com/mohitjaiswal28/aws-boto3
A repository containing Boto3 scripts for various AWS services organized by service name.
https://github.com/mohitjaiswal28/aws-boto3
aws aws-sdk boto3 boto3-script devops python-boto3 python-boto3-scripts
Last synced: 2 months ago
JSON representation
A repository containing Boto3 scripts for various AWS services organized by service name.
- Host: GitHub
- URL: https://github.com/mohitjaiswal28/aws-boto3
- Owner: mohitjaiswal28
- Created: 2024-05-16T06:01:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-16T06:24:48.000Z (about 2 years ago)
- Last Synced: 2025-08-16T10:43:39.434Z (11 months ago)
- Topics: aws, aws-sdk, boto3, boto3-script, devops, python-boto3, python-boto3-scripts
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS Boto3
Welcome to the AWS Boto Scripts Repository! This repository contains a collection of scripts written in Boto3 for various AWS services.
A repository containing Boto3 scripts for various AWS services organized by service name.
## Structure
The repository is organized by AWS service. Each service has its own directory containing relevant scripts.
```
AWS-Boto3/
│
├── DynamoDB/
│ ├── Put_Item.py
│ ├── Delete_Item.py
│ ├── Get_Item.py
│ └── Update_Item.py
│
├── EC2/
│ ├── Security_Group.py
│ ├── Add_Policy.py
│ ├── Describe_KeyPair.py
│ ├── Create_KeyPair.py
│ ├── Delete_KeyPair.py
│ └── Create_Instance.py
│
├── IAM/
│ ├── List_Users.py
│ ├── List_Roles.py
│ ├── List_Groups.py
│ ├── Create_User.py
│ ├── Create_Role.py
│ ├── Create_Group.py
│ ├── Attach_Group_Policy.py
│ ├── Add_User_to_Group.py
│ └── Delete_Role.py
│
├── RDS/
│ ├── Create_DB.py
│ └── Command_to_connect_to_RDS.txt
│
├── S3/
│ ├── Create_Bucket.py
│ ├── Put_Object.py
│ ├── Delete_Object.py
│ ├── Versioning.py
│ ├── Delete_Versioning.py
│ └── Delete_Bucket.py
|
└── VPC/
├── Create_VPC.py
├── Create_Subnet.py
├── Route_Table.py
└── Internet_Gateway.py
```
## Getting Started
To get started, clone this repository to your local machine:
```bash
git clone https://github.com/mohitjaiswal28/AWS-Boto3
```
```bash
cd AWS-Boto3
```
## Contributing
Contributions are welcome! If you have a script you'd like to add, or if you find any issues, feel free to submit a pull request or open an issue.