Uses of Class
com.amazonaws.services.s3.model.CannedAccessControlList

Packages that use CannedAccessControlList
com.amazonaws.services.s3 Synchronous client for accessing Amazon S3. 
com.amazonaws.services.s3.model Classes modeling the various types represented by Amazon S3. 
 

Uses of CannedAccessControlList in com.amazonaws.services.s3
 

Methods in com.amazonaws.services.s3 with parameters of type CannedAccessControlList
 void AmazonS3.setBucketAcl(String bucketName, CannedAccessControlList acl)
          Set the AccessControlList for the specified Amazon S3 bucket using one of the pre-configured CannedAccessControlLists.
 void AmazonS3Client.setBucketAcl(String bucketName, CannedAccessControlList acl)
           
 void AmazonS3.setObjectAcl(String bucketName, String key, CannedAccessControlList acl)
          Set the AccessControlList for the specified object in Amazon S3 using one of the pre-configured CannedAccessControlLists.
 void AmazonS3Client.setObjectAcl(String bucketName, String key, CannedAccessControlList acl)
           
 void AmazonS3.setObjectAcl(String bucketName, String key, String versionId, CannedAccessControlList acl)
          Set the AccessControlList for the specified object at the specified version ID in Amazon S3 using one of the pre-configured CannedAccessControlLists.
 void AmazonS3Client.setObjectAcl(String bucketName, String key, String versionId, CannedAccessControlList acl)
           
 

Uses of CannedAccessControlList in com.amazonaws.services.s3.model
 

Methods in com.amazonaws.services.s3.model that return CannedAccessControlList
 CannedAccessControlList CopyObjectRequest.getCannedAccessControlList()
          Returns the canned ACL to use for the new, copied object.
 CannedAccessControlList PutObjectRequest.getCannedAcl()
          Returns the optional pre-configured access control policy to use for the new object.
static CannedAccessControlList CannedAccessControlList.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CannedAccessControlList[] CannedAccessControlList.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.amazonaws.services.s3.model with parameters of type CannedAccessControlList
 void CopyObjectRequest.setCannedAccessControlList(CannedAccessControlList cannedACL)
          Sets the canned ACL to use for the new, copied object.
 void PutObjectRequest.setCannedAcl(CannedAccessControlList cannedAcl)
          Sets the optional pre-configured access control policy to use for the new object.
 CopyObjectRequest CopyObjectRequest.withCannedAccessControlList(CannedAccessControlList cannedACL)
          Sets the canned ACL to use for the new, copied object, and returns this CopyObjectRequest so that additional method calls can be chained together.
 PutObjectRequest PutObjectRequest.withCannedAcl(CannedAccessControlList cannedAcl)
          Sets the optional pre-configured access control policy to use for the new object, and returns this object so that additional method calls may be chained together.
 



Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.