Skip to content

This account does not have access to the Cloud9 service

0

I’m a student currently gaining hands-on experience with AWS services through a course called "Introduction to Machine Learning on AWS: Code, Build, and Test" on Coursera. As part of the course project, I need to use AWS Cloud9. However, when I attempt to access Cloud9, I receive the error message: "This account does not have access to the Cloud9 service." I’ve tried accessing it using both root and IAM accounts, but the issue persists. Not have access to the Cloud9

Region: Oregon (US-West-2) Exercise: https://aws-tc-largeobjects.s3.amazonaws.com/DEV-AWS-MO-MachineLearning/exercise-1.html

Can you help me understand why this is happening and suggest any solutions? I’ve explored some alternatives but would prefer to use Cloud9 for this project.

Thank you!

asked a year ago265 views
2 Answers
1

Access to Cloud9 has been deprecated. Existing users can still use it, but it is closed to new users.

See more in this blog post, where AWS also suggests alternatives https://aws.amazon.com/blogs/devops/how-to-migrate-from-aws-cloud9-to-aws-ide-toolkits-or-aws-cloudshell/

EXPERT
answered a year ago
EXPERT
reviewed a year ago
EXPERT
reviewed a year ago
0

I'm going through the "Getting Started with Amazon Textract: Tutorials" lesson and in there I have to use Cloud9 with the following script:

unzip "/home/ec2-user/environment/amazon-textract-idp-cdk-stack-samples.zip" -d "/home/ec2-user/environment"
chmod 755 /home/ec2-user/environment/amazon-textract-idp-cdk-stack-samples
chown -R ec2-user:ec2-user /home/ec2-user/environment/amazon-textract-idp-cdk-stack-samples
python3 -m venv .venv
source .venv/bin/activate
cd amazon-textract-idp-cdk-stack-samples/
pip install -r requirements.txt
cdk bootstrap
cdk synth SimpleSyncWorkflow
cdk deploy SimpleSyncWorkflow --require-approval never
cdk synth SimpleAsyncWorkflow
cdk deploy SimpleAsyncWorkflow --require-approval never

Since Cloud9 is deprecated, luckily I'm using a MacBook so I can run most of this locally in my Terminal. But just in case you are missing some packages, here are references:

answered 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.