Most voted questions in AWS

+1 vote
2 answers

CreateBucket operation: Access Denied

Make sure to add S3 Full access ...READ MORE

Apr 21, 2019 in AWS by Kesavan
• 460 points
9,965 views
+1 vote
2 answers

How to launch and access an instance using AWS-CLI?

aws ec2 run-instances --image-id ami-id --key-name yourkeyname ...READ MORE

Feb 23, 2019 in AWS by Shashank
• 1,370 points
1,586 views
+1 vote
1 answer

How to install Boto?

You can install Boto using pip. There ...READ MORE

Nov 21, 2018 in AWS by Nabarupa
1,392 views
+1 vote
1 answer

How to load data to Amazon redshift from different sources eg DynamoDB or Amazon EC2?

Hey @Jino, If you are talking about ...READ MORE

Nov 20, 2018 in AWS by Nabarupa
639 views
+1 vote
1 answer

How is VPC Security Group different than a DB Security Group?

There are 3 different security groups that ...READ MORE

Nov 20, 2018 in AWS by Rishav Ram
2,221 views
+1 vote
2 answers

Can there be communication between VPC in two different regions?

Hello,  VPC peering supports between different regions. If ...READ MORE

Nov 20, 2018 in AWS by Sankar
5,750 views
+1 vote
1 answer

In GoDaddy how to validate a Domain For AWS ACM

For validate www.example.com you have to write just the ...READ MORE

Oct 29, 2018 in AWS by Priyaj
• 58,090 points
3,851 views
+1 vote
2 answers

Use AWS CloudWatch to start/stop EC2 instances. How to implement it?

What you can do is set a ...READ MORE

Oct 26, 2018 in AWS by Priyaj
• 58,090 points
3,819 views
+1 vote
2 answers

On decrypting file using KMS key in Amazon S3 i get an error

Try figuring out your error with the ...READ MORE

Oct 26, 2018 in AWS by Priyaj
• 58,090 points
4,870 views
+1 vote
2 answers

How to read a csv file stored in Amazon S3 using csv.DictReader

The code would be something like this: import ...READ MORE

Oct 25, 2018 in AWS by Archana
• 5,640 points
53,527 views
+1 vote
1 answer

How to make an application private on AWS Elastic Beanstalk?

Like you said by default, your application ...READ MORE

Oct 25, 2018 in AWS by Archana
• 5,640 points
1,943 views
+1 vote
2 answers

Read file content from S3 bucket with boto3

s3_client=boto3.resource('s3') bucket = s3_client.Bucket('test') for obj in bucket.objects.all(): contents=obj.get()['Body'].read().decode(encoding="utf-8",errors="ignore") for line ...READ MORE

Jul 4, 2019 in AWS by reddy

edited Jul 4, 2019 by Kalgi 43,252 views
+1 vote
1 answer

Cannot create a Default VPC

Okay so from a document from AWS, ...READ MORE

Oct 23, 2018 in AWS by Priyaj
• 58,090 points

edited Oct 24, 2018 by Priyaj 3,563 views
+1 vote
1 answer

Llimit to number of objects in a S3 bucket

If you are referring to the number of objects ...READ MORE

Oct 12, 2018 in AWS by Archana
• 4,170 points
4,045 views
+1 vote
1 answer

Do i need to use Amazon EC2 with DynamoDB?

You can use Amazon DynamoDB without restrictions ...READ MORE

Oct 11, 2018 in AWS by Archana
• 4,170 points
1,903 views
+1 vote
1 answer

Invalid hostname error when connecting to S3 using secret key

Hey, it works perfectly fine you just ...READ MORE

Oct 11, 2018 in AWS by Archana
• 4,170 points
3,929 views
+1 vote
1 answer

AWS API Gateway CORS ok for OPTIONS, fail for POST

The problem has been that the API ...READ MORE

Oct 9, 2018 in AWS by Priyaj
• 58,090 points
5,031 views
+1 vote
1 answer

AWS CLI installation error

Try this command sudo pip install awscli --force-reinstall ...READ MORE

Oct 8, 2018 in AWS by Archana
• 4,170 points
1,806 views
+1 vote
4 answers

AWS CLI - couldn't connect to endpoint URL

You probably have something wrong in your ...READ MORE

Oct 5, 2018 in AWS by Archana
• 4,170 points
32,605 views
+1 vote
1 answer

aws lambda function chromedriver is not executable

Lambda has a limit of 300 seconds ...READ MORE

Oct 4, 2018 in AWS by Priyaj
• 58,090 points
1,803 views
+1 vote
1 answer

Hosting a website on multiple ec2 instances

I think its quite similar but not ...READ MORE

Oct 3, 2018 in AWS by Priyaj
• 58,090 points
1,746 views
+1 vote
1 answer

Trying to connect to redis running on ec2 instance locally but getting error despite all traffic inbound

Your redis is not listening for connections from outside, ...READ MORE

Sep 26, 2018 in AWS by Priyaj
• 58,090 points
5,134 views
+1 vote
1 answer

How to issue a parsing json from case class using jackson?

Do you use jackson-module-scala or any other Scala-aware configuration ...READ MORE

Sep 26, 2018 in AWS by Priyaj
• 58,090 points
2,756 views
+1 vote
1 answer

Error: Save Batch Record throws @DynamoDBTyped or @DynamoDBTypeConverted

There is simpler way by use annotation @DynamoDBDocument For ...READ MORE

Sep 26, 2018 in AWS by Priyaj
• 58,090 points
3,733 views
+1 vote
2 answers

AWS Lambda Function Issues

If you have created AWS Lambda Deployment JAR ...READ MORE

Sep 14, 2018 in AWS by datageek
• 2,530 points
479 views
+1 vote
2 answers

AWS Cloudformation nested Functions (Split, Select, Join, Ref)

"Join" is not a function. "Fn::Join" is. READ MORE

May 16, 2019 in AWS by Nalin Kant Gupta
4,199 views
+1 vote
1 answer

How to Deploy RESTful API with .net framework 4.5 in AWS Lambda

Is it necessary to migrate to .Net ...READ MORE

Sep 4, 2018 in AWS by Priyaj
• 58,090 points
601 views
+1 vote
1 answer

AWS Elasticsearch VPC connectivity

VPC Endpoint cannot be accessed outside the ...READ MORE

Sep 4, 2018 in AWS by Priyaj
• 58,090 points
4,358 views
+1 vote
1 answer

Memory Utilization for auto scaling group AWS

Here is link to AWS support with same ...READ MORE

Aug 30, 2018 in AWS by Priyaj
• 58,090 points
2,835 views
+1 vote
1 answer

Redirect working from www.xyz.com to https://xyz.com but not from https://www.xyz.com

Make sure you have created the certificate ...READ MORE

Aug 28, 2018 in AWS by Priyaj
• 58,090 points
1,398 views
+1 vote
1 answer

How to authenticate session in application running on Beanstalk with boto3

The recommended way of managing credentials used ...READ MORE

Aug 28, 2018 in AWS by Priyaj
• 58,090 points
1,411 views
+1 vote
1 answer

How do I get to AccessToken and IdToken following successful Amazon Cognito Login from iOS

Figured it out now: func getSession(){ ...READ MORE

Aug 28, 2018 in AWS by Priyaj
• 58,090 points
2,039 views
+1 vote
1 answer

How to auto-scale MYSQL database in AWS EC2 instance?

You could always use the Amazon RDS ...READ MORE

Aug 24, 2018 in AWS by Archana
• 4,170 points
2,559 views
+1 vote
1 answer

Can we use AWS Public DNS as Domian name to enable https on our instance

I don't believe you can get a ...READ MORE

Aug 23, 2018 in AWS by Priyaj
• 58,090 points
699 views
+1 vote
1 answer

Does SQS kill long running jobs that have Thread.sleep?

SQS doesn't kill jobs - and I ...READ MORE

Aug 23, 2018 in AWS by Priyaj
• 58,090 points
670 views
+1 vote
1 answer

How does AWS EC2 Bitnami Wordpress setting security permissions for outsourced developer

cd /opt/bitnami/apps/wordpress/ sudo ./bnconfig --userpassword YOUR_NEW_PASSWORD Change password ...READ MORE

Aug 23, 2018 in AWS by Priyaj
• 58,090 points
815 views
+1 vote
1 answer

AWS Network load balancer - What is client reset count (and why is it high)

There are many reasons for an TCP ...READ MORE

Aug 23, 2018 in AWS by Priyaj
• 58,090 points
10,696 views
+1 vote
1 answer

I cannot install aws cli on mac os with pip - awscli: command not found

Here are the two steps to install ...READ MORE

Aug 2, 2018 in AWS by bug_seeker
• 15,520 points
2,633 views
+1 vote
2 answers

Using reserved instances in an Elastic Beanstalk Load Balancer

A Reserved Instance a method of pre-paying ...READ MORE

Aug 1, 2018 in AWS by Priyaj
• 58,090 points
556 views
+1 vote
2 answers

How to install Python MySQLdb module using pip?

It's easy to do, but hard to ...READ MORE

Aug 1, 2018 in AWS by Priyaj
• 58,090 points
5,445 views
+1 vote
2 answers

Is there a API to get AWS Marketplace Products

AWS Marketplace Entitlement Service API Reference The AWS ...READ MORE

Aug 1, 2018 in AWS by findingbugs
• 4,780 points
860 views
+1 vote
3 answers

AWS Pricing for upgrading reserved instances

Depending on your situation, you may be ...READ MORE

Sep 3, 2018 in AWS by findingbugs
• 4,780 points
711 views
+1 vote
1 answer

New Exam AWS Certified Solutions Architect - Associate

Amazon publishes details of both exams on ...READ MORE

Jul 31, 2018 in AWS by Priyaj
• 58,090 points
1,192 views
+1 vote
1 answer

Can AWS CloudFormation templates for AWS Inspector add an SNS Topic

I see the SNS option is available ...READ MORE

Jul 30, 2018 in AWS by Priyaj
• 58,090 points
1,669 views
+1 vote
2 answers

Spring data with AWS ElastiCache

AWS ElastiCache APIs don't expose any abstraction ...READ MORE

Jul 27, 2018 in AWS by Priyaj
• 58,090 points
3,404 views
+1 vote
1 answer

How many times can one receive the AWS free tier?

Yes, it is possible to create a ...READ MORE

Jul 27, 2018 in AWS by Priyaj
• 58,090 points
1,285 views
+1 vote
1 answer

How to load CSV data to RDS Aurora table using lambda?

Launch an Amazon RDS MySQL database engine ...READ MORE

Jul 26, 2018 in AWS by Priyaj
• 58,090 points
4,269 views
+1 vote
1 answer

AWS billing information using AWS java sdk

There are no APIs to get AWS ...READ MORE

Jul 26, 2018 in AWS by Priyaj
• 58,090 points
630 views
+1 vote
2 answers

How to use jenkinsfile to get content from AWS SQS?

You can import standard AWS SDK to ...READ MORE

Jul 20, 2018 in AWS by Flying geek
• 3,280 points
2,090 views
+1 vote
1 answer

How to clear all data from AWS CloudSearch?

Best answer I've been able to find ...READ MORE

Jul 20, 2018 in AWS by Priyaj
• 58,090 points
1,952 views