Questions tagged [access-keys]
120 questions
230
votes
8 answers
How do I get AWS_ACCESS_KEY_ID for Amazon?
I'm totally new to AWS.
I downloaded some sample code from Amazon and I need to set a number of constants:
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
MERCHANT_ID
MARKETPLACE_ID
I just created an AWS account. I want some type of sandbox account so I…

Padraig
- 3,197
- 4
- 18
- 26
29
votes
7 answers
JavaScript keyboard shortcuts for web application
I want to develop a web application, which should (ideally) be fully usable via the keyboard. I know how to handle keyboard events in JavaScript, but managing them for a larger application is quite boring.
Is there a library which makes that process…

Achim
- 15,415
- 15
- 80
- 144
14
votes
2 answers
Declaring an IAM Access Key Resource by CloudFormation
I created a user in my template with an access key:
"MyAccessKey" : {
"Type" : "AWS::IAM::AccessKey",
"Properties" : {
"UserName" : { "Ref" : "User12" }
}
}
I need to get the access key ID and the secret key in the output of the…

JavaQueen
- 1,155
- 2
- 19
- 44
9
votes
1 answer
Why AccessKeyId is included in s3 pre-signed URL?
Why AccessKeyId is included in s3 pre-signed URL? Is it really necessary? The pre-signed URL already includes the Signature field, why it still requires the AccessKeyId as well? Wouldn't be the Signature sufficient?

injoy
- 3,993
- 10
- 40
- 69
8
votes
2 answers
accesskey VS navigator keyboard shortcut
It seems to be a recurrent tricky question but I still don't have a fix nor workaround for it:
Is there a way to intercept accesskeys before keyboard shortcuts?
I need to use accesskeys on my favorites navigator IE and also FF, but I don't wan't to…

sinsedrix
- 4,336
- 4
- 29
- 53
8
votes
4 answers
Spark is inventing his own AWS secretKey
I'm trying to read a s3 bucket from Spark and up until today Spark always complain that the request return 403
hadoopConf = spark_context._jsc.hadoopConfiguration()
hadoopConf.set("fs.s3a.access.key", "ACCESSKEY")
hadoopConf.set("fs.s3a.secret.key",…

Johny19
- 5,364
- 14
- 61
- 99
8
votes
1 answer
(python) Spark .textFile(s3://...) access denied 403 with valid credentials
In order to access my S3 bucket i have exported my creds
export AWS_SECRET_ACCESS_KEY=
export AWS_ACCESSS_ACCESS_KEY=
I can verify that everything works by doing
aws s3 ls mybucket
I can also verify with boto3 that it works in python
resource =…

Johny19
- 5,364
- 14
- 61
- 99
7
votes
3 answers
Access key getting selected even we did not press 'Alt' key in WPF
I have WPF application which is having tool bar. In tool bar I have some user controls as tools.
I have set access key to each control, it is working fine.
The issue is: If I click a user control(which is consist of Button and Label, I have set…

Syed
- 931
- 13
- 28
7
votes
1 answer
How to use an accesskey on a WPF Button with a custom ContentTemplate?
Scenario:
Currently I have this XAML code:

Herman Cordes
- 4,628
- 9
- 51
- 87
7
votes
3 answers
Getting the browser+platform keyboard modifiers
I am creating a Web app that should be completely operated through the keyboard. I must provide the user the accesskey combination for different buttons, but the way accessing them is different for each browser and platform. E.g. For Chrome or…

gal007
- 6,911
- 8
- 47
- 70
6
votes
1 answer
How to access a public S3 bucket from another AWS account?
In one of the blog post, the author has mentioned that he uploaded dataset into a s3 bucket and gave public access.
s3://us-east-1.elasticmapreduce.samples/flightdata/input
Now I want to download/see the data from my chrome browser.
When I copy…

santhosh
- 439
- 8
- 17
6
votes
2 answers
HTML accesskey 'e' not working in Chrome
I assigned access key e to email input field in a simple html form. I am currently testing this in chrome. So on pressing Alt + e, instead of switching focus to the email input field, the Chrome menu get activated.
How should I go around with this?…

mtk
- 13,221
- 16
- 72
- 112
5
votes
1 answer
Amazon Web Services credentials may be exposed
Recently Google provided alert to one of my Apps that
Your Amazon Web Services credentials may be exposed. This exposure of
your credentials could lead to unauthorized access to your AWS
account, which may include associated excessive charges,…

Deepak Goyal
- 4,747
- 2
- 21
- 46
5
votes
1 answer
Access keys in ASP.NET MVC
I'm intending to extend the Display DataAnnotation attribute to hold a value for the AccessKey for an input field so I can use it in my own LabelFor<> and TextBoxFor<> HtmlHelper extensions, something like this:
[Display(Name = "User name",…

Oundless
- 5,425
- 4
- 31
- 33
4
votes
1 answer
how can I hide my access key in pre-signed url by aws s3 using python
I am generating pre-signed url on aws s3 using python. ater generating it shows my access key in the url. how can I generate url with showing my access key?
https://console.wasabisys.com/testing-usman/?AWSAccessKeyId=
This is the code i am using:
s3…

usman
- 41
- 1
- 3