Class S3BucketResource

java.lang.Object
com.amazonaws.auth.policy.Resource
com.amazonaws.auth.policy.resources.S3BucketResource

public class S3BucketResource extends Resource
Represents a bucket resource involved in an AWS access control policy. This resource does not include any of the objects stored in the bucket. It represents only the bucket itself. This is the resource you want if you're writing a policy that restricts access to listing the contents of a bucket, deleting a bucket, setting bucket configuration options, or any other action that operates directly against a bucket (as opposed to an object).

If you want to write a policy that controls access to objects stored in your bucket, see S3ObjectResource.

Amazon S3 bucket resources can be used in policies with the following actions:

  • Constructor Details

    • S3BucketResource

      public S3BucketResource(String bucketName)
      Constructs a new bucket resource that represents the the specified bucket but not any of the contained objects.
      Parameters:
      bucketName - The name of the bucket represented by this AWS access control policy resource.