README
管理对 Amazon s3 的 get 和 put 操作。
使用前需要创建 bucket 和 IAM 凭证。
S3 存储桶访问
为了访问 S3 资源,使用具有以下策略附加的 IAM 用户
{
"Version": "2012-10-17",
"Statement":[{
"Effect": "Allow",
"Action": "s3:*",
"Resource": ["arn:aws:s3:::your-bucket",
"arn:aws:s3:::your-bucket/*"]
}
]
}