예제 #1
0
파일: test.go 프로젝트: hadesbox/aws-sdk-go
func getBucketAcl(c *s3.S3) {
	_, err := c.GetBucketACL(
		&s3.GetBucketACLInput{
			Bucket: &bucket,
		},
	)
	if err != nil {
		panic(err)
	}
}