Through the AWS Identity and Access Management, I have a user account to the AWS account of my CTO (who is credited with some money).
I wanted to use this IAM user account to set up my own instances to ssh to it and run some BeautifulSoup python scripts.
However, following this tutorial, when arriving to the part where I need to go on the Security Credentials page, I can't access this page and I'm told I do not have the authorization to view it.
I checked my permissions with the IAM Manager, and I have administration rights, the highest possible clearance (so it seems to me).
What can I do to get this X.509 certificate ?
Preface
First and foremost, you might want to reconsider whether you actually need these X.509 certificates - the tutorial is correct in principle:
However, nowadays most modern APIs and tools are interacting with AWS by means of access keys only rather than X.509 certificates.
Unfortunately this is not the case for the EC2 API Tools the tutorial is based on though, which indeed require the use X.509 certificates due to being (mostly) based on the older EC2 SOAP API still.Update: The EC2 API Tools meanwhile support AWS access keys as well and deprecated using X.509 certificates accordingly:
Alternative
You might want to check out an alternative first though: If you are comfortable in Python, I'd highly recommend the excellent boto (An integrated interface to current and future infrastructural services offered by Amazon Web Services), which works just fine with access keys, offers almost the same feature set as the EC2 API tools (plus most other AWS APIs) and performs significantly faster due to targeting the newer AWS REST APIs only.
Solution
AWS Identity and Access Management (IAM) does not support accessing the actual AWS account, it only covers the AWS Management Console, and most AWS APIs of course. You'll need to sign in with the AWS account's login and password (i.e. those of the account owner) to access the Security Credentials page.
This is not recommended anymore though (see section Security Credentials within IAM Concepts):
However, you can still achieve your goal by using your own certificate as outlined further down in section X.509 Certificates:
How to actually do the latter is illustrated in Uploading a Signing Certificate.