Most voted questions in Cloud Computing

+1 vote
1 answer

What is the pricing for CloudWatch?

Many of the service is generate Cloud ...READ MORE

Dec 6, 2018 in AWS by Nitesh
430 views
+1 vote
1 answer

Accessing query parameter in Lambda with Python

Have you gone through the mapping template ...READ MORE

Dec 5, 2018 in AWS by bugseeker
49,602 views
+1 vote
1 answer

What is the pricing model for Route 53?

The pricing generally for the service of ...READ MORE

Dec 5, 2018 in AWS by Nabarupa
1,762 views
+1 vote
1 answer

What are the features of Route 53?

The features of Route 53 can be ...READ MORE

Dec 5, 2018 in AWS by Priyaj
• 58,090 points
533 views
+1 vote
1 answer

Hosting static website with AWS S3 and Route 53

Add an additional bucket called myblog.com and ...READ MORE

Dec 4, 2018 in AWS by Archana
• 5,640 points
841 views
+1 vote
1 answer

How to stop an Instance using python boto3?

Both terminating and stopping has same code ...READ MORE

Dec 3, 2018 in AWS by Nabarupa
10,919 views
+1 vote
1 answer

Getting error while terminating the Instance using Python boto3

You can visit the link here and ...READ MORE

Dec 3, 2018 in AWS by Nabarupa
6,369 views
+1 vote
1 answer

How to delete an EC2 instance using Python boto3

You just need to have the list ...READ MORE

Dec 3, 2018 in AWS by Nabarupa
8,179 views
+1 vote
1 answer

AttributeError: 'ec2.ServiceResource' object has no attribute 'create_instance'

This is an attribute error. There are ...READ MORE

Dec 3, 2018 in AWS by Nabarupa
6,923 views
+1 vote
1 answer

How to create an Ec2 instance using Python boto3?

You can use the following code, it ...READ MORE

Dec 3, 2018 in AWS by Nabarupa
10,416 views
+1 vote
1 answer

How to upload a file in a particular folder in S3 using Python boto3?

There is a particular format that works ...READ MORE

Nov 30, 2018 in AWS by Aniket
15,059 views
+1 vote
1 answer

How to delete a folder in S3 bucket using boto3 using Python?

You can delete the folder by using ...READ MORE

Nov 30, 2018 in AWS by Aniket
38,935 views
+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
10,040 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,603 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,425 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
663 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,280 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,810 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,891 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,847 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,936 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,658 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,980 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,388 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,608 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,101 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,920 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,981 views
+1 vote
1 answer

What API's can I use to upload data to AWS Glacier/

You have sdk's available in both Java ...READ MORE

Oct 11, 2018 in Cloud Computing by DragonLord999
• 8,450 points
711 views
+1 vote
1 answer

How do you upload data to AWS Glacier?

Amazon Glacier provides a management console, which ...READ MORE

Oct 11, 2018 in Cloud Computing by DragonLord999
• 8,450 points
3,954 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,049 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,837 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,774 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,830 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,767 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,180 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,785 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,781 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
493 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,238 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
608 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,420 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,864 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,428 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,421 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,067 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,588 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
714 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
684 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
839 views