kops/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl
Justin Santa Barbara b587c725df Update aws-sdk-go to 1.6.8
Fix #1221
2016-12-30 10:42:50 -05:00
..
README.md Update aws-sdk-go to 1.6.8 2016-12-30 10:42:50 -05:00
putObjectAcl.go Update aws-sdk-go to 1.6.8 2016-12-30 10:42:50 -05:00

README.md

Example

putObjectAcl is an example using the AWS SDK for Go to put an ACL on an S3 object.

Usage

putBucketAcl <params>
	-region <region> // required
	-bucket <bucket> // required
	-key <key> // required
	-owner-name <owner-name>
	-owner-id <owner-id>
	-grantee-type <some type> // required
	-uri <uri to group>
	-email <email address>
	-user-id <user-id>
	-display-name <display name>
go run -tags example putObjectAcl.go 
	-bucket <bucket> 
	-key <key> 
	-owner-name <name> 
	-owner-id <id>
	-grantee-type <some type>
	-user-id <user-id>

Depending on the type is used depends on which of the three, uri, email, or user-id, needs to be used.

  • s3.TypeCanonicalUser: user-id or display-name must be used
  • s3.TypeAmazonCustomerByEmail: email must be used
  • s3.TypeGroup: uri must be used

Output:

success {
} nil