我试图通过遵循SDK documentation来弄清楚如何将对象放入S3中。我已将凭据放在~/.aws/credentials
中,但我不清楚如何从存储的凭据中获取访问密钥。是否有一个aws-sdk调用从~/.aws/credentials
获取密钥?
var myKey = 'myBucketKey'; // <--- aws-sdk to get the key from the credentials file?
答案 0 :(得分:2)
存储在Amazon S3中的对象的Key
是对文件名的引用。它与访问凭据(使用访问密钥和密钥)无关。
它被称为密钥,因为Amazon S3实际上是一个大型的键/值存储,其中Key是文件的名称,值是文件的内容。