本文整理匯總了Golang中github.com/ks3sdklib/aws-sdk-go/service/s3.S3.GetObjectACL方法的典型用法代碼示例。如果您正苦於以下問題:Golang S3.GetObjectACL方法的具體用法?Golang S3.GetObjectACL怎麽用?Golang S3.GetObjectACL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/ks3sdklib/aws-sdk-go/service/s3.S3
的用法示例。
在下文中一共展示了S3.GetObjectACL方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: getObjectAcl
func getObjectAcl(c *s3.S3) {
putObject(c)
key := "aws/config.go"
out, err := c.GetObjectACL(
&s3.GetObjectACLInput{
Bucket: &bucket,
Key: &key,
},
)
if err != nil {
panic(err)
}
grants := out.Grants
for i := 0; i < len(grants); i++ {
grant := grants[i]
grantee := grant.Grantee
if grantee.DisplayName != nil {
fmt.Println(*grantee.DisplayName)
}
if grantee.ID != nil {
fmt.Println(*grantee.ID)
}
if grantee.Type != nil {
fmt.Println(*grantee.Type)
}
if grantee.URI != nil {
fmt.Println(*grantee.URI)
}
if grant.Permission != nil {
fmt.Println(*grant.Permission)
}
fmt.Println("---------")
}
}