James Saryerwinnie
James Saryerwinnie
Boto3 doesn't support parsing additional parameters from exceptions, it only adds a `Code` and a `Message`. Labeling as a feature request, I think this is something we should add, but...
I think this would be a great feature to have.
The approach with the aws-shell is to differentiate the AWS CLI commands vs. other special commands by requiring non AWS CLI commands to be prefixed with `!`. I borrowed this...
Definitely fair points you raise. One minor thing worth mentioning is that because of a clear syntactic distinction between AWS CLI commands vs. shell commands (i.e does it start with...
Exceptions coming from boto3/botocore when running boto3.client('sts') too many times simultaneously
You're correct about this behavior. Historically we've said that session methods aren't thread safe, but once you've created a client or resource, we guarantee that those calls are thread safe...
You should be able to do that via `aws configure set`: ``` $ cat /tmp/fakecreds.sh fake_access_key,fake_secret_key,fake_session_token /tmp $ AKID=$(cut -d',' -f 1 < fakecreds.sh) /tmp $ SK=$(cut -d',' -f 2...
I'm ok with supporting common formats that give credentials. For example: - Creating a profile from the output of `aws iam create-access-key`, which gives creds in a JSON format (by...
Based on community feedback, we have decided to return feature requests to GitHub issues.
Looks like an issue only on python2.6: http://bugs.python.org/issue13358 The patch from the linked issue doesn't seem easy to backport in a safe way. I'll need to see what other options...
I'm not sure why you're getting `'""'` is not recognized as an internal or external command, but I've seen similar issues when the `aws` command is not on your PATH....