
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Ashish Anand has Published 213 Articles

Ashish Anand
2K+ Views
Problem Statement − Use boto3 library in Python to delete a table, created in your account.Example − Delete a table ‘security’ from database ‘test’ that is created in your account.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − Pass the parameter database_name ... Read More

Ashish Anand
369 Views
Problem Statement − Use boto3 library in Python to delete a crawler that is created in your account.Example − Delete a crawler ‘Portfolio’ that is created in your account.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − Pass the parameter crawler_name that ... Read More

Ashish Anand
150 Views
Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − No parameter is required for this function. It will fetch all listed triggers for user account and then display metadata of each triggers.Step 3 − Create an AWS session using boto3 library. Make ... Read More

Ashish Anand
152 Views
Problem Statement − Use boto3 library in Python to get the triggers that are available in your account. For example, get the details of triggers that are allowed in your account.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − No parameter is ... Read More

Ashish Anand
1K+ Views
In this article, we will see how to get a list of resource metadata for a given list of job names.Problem Statement − Use boto3 library in Python to get the jobs available in your account. For example, get the details of jobs those are available in your account.Approach/Algorithm to ... Read More

Ashish Anand
3K+ Views
Problem Statement − Use boto3 library in Python to run a glue job and get status whether it succeeded or failed. For example, run the job run_s3_file_job and get it status.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − job_name is the ... Read More

Ashish Anand
1K+ Views
Problem Statement − Use boto3 library in Python to check whether a glue job exists or not. For example, check whether run_s3_file_job exists in AWS glue or not.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − job_name is the parameters in function.Step ... Read More

Ashish Anand
266 Views
Problem Statement − Use boto3 library in Python to check whether a key does not exist in a bucket, using waiters functionality. For example, use waiters to check whether a key test1.zip does not exist in Bucket_1.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle ... Read More

Ashish Anand
795 Views
Problem Statement − Use boto3 library in Python to get ownership control detail of a S3 bucket.For example, find the ownership control detail of Bucket_1 in S3.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − Use bucket_name as the parameter in the ... Read More

Ashish Anand
647 Views
Problem Statement − Use boto3 library in Python to get the notification configuration of a S3 bucket. For example, find the notification configuration details of Bucket_1 in S3.Approach/Algorithm to solve this problemStep 1 − Import boto3 and botocore exceptions to handle exceptions.Step 2 − Use bucket_name as the parameter in ... Read More