私はAWSのスポット価格履歴を取得しようとしていますし、私はこのチュートリアルからの助けを得るされています:私はに接続することができる午前https://medium.com/cloud-uprising/the-data-science-of-aws-spot-pricing-8bed655caed2#.nk3k2m1z0私は、AWSのリージョンに接続できますが、スポット価格を取得するために許可されていないのです
私は接続オブジェクトを返すように与えられた領域。
しかし、私は次の行に達したときにエラーが発生します。
prices = ec2.get_spot_price_history(start_time=start, end_time=end, instance_type=instance)
をこれは私が取得エラーです:
will process from 2016-05-26T00:00:00 to 2016-05-26T11:59:59
EC2Connection:ec2.us-east-1.amazonaws.com
Traceback (most recent call last):
File "test.py", line 30, in <module>
prices = conn.get_spot_price_history(start_time=start, end_time=end, instance_type=instance_types[0])
File "/usr/lib/python2.7/dist-packages/boto/ec2/connection.py", line 1420, in get_spot_price_history
[('item', SpotPriceHistory)], verb='POST')
File "/usr/lib/python2.7/dist-packages/boto/connection.py", line 1186, in get_list
raise self.ResponseError(response.status, response.reason, body)
boto.exception.EC2ResponseError: EC2ResponseError: 401 Unauthorized
<?xml version="1.0" encoding="UTF-8"?>
<Response><Errors><Error><Code>AuthFailure</Code><Message>AWS was not able to validate the provided access credentials</Message></Error></Errors><RequestID>70a8b7bd-28e2-4526-83df-d0cb86e1f491</RequestID></Response>
誰もが、それは私が接続できる可能性があり、私の方法を教えてもらえますが、許可されていませんか?
接続資格情報のいずれかのネットワーク要求または検証を行いませんを作成します。 –