我想在aws s3中上传图片。
const (
S3_REGION = ""
S3_BUCKET = ""
)
func main() {
// Create a single AWS session (we can re use this if we're uploading many files)
s, err := session.NewSession(&aws.Config{Region: aws.String(S3_REGION)})
if err != nil {
log.Fatal(err)
}
// Upload
err = AddFileToS3(s, "result.csv")
if err != nil {
log.Fatal(err)
}
}
我被困在这里。 根据此代码标准,我在哪里可以获得S3_REGION? 资料来源:https://golangcode.com/uploading-a-file-to-s3/
答案 0 :(得分:0)