Class S3BucketResource
java.lang.Object
com.amazonaws.auth.policy.Resource
com.amazonaws.auth.policy.resources.S3BucketResource
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:
-
S3Actions.CreateBucket
-
S3Actions.DeleteBucket
-
S3Actions.ListObjects
-
S3Actions.ListObjectVersions
-
S3Actions.ListBuckets
-
S3Actions.GetBucketAcl
-
S3Actions.SetBucketAcl
-
S3Actions.GetBucketVersioningConfiguration
-
S3Actions.SetBucketVersioningConfiguration
-
S3Actions.GetBucketRequesterPays
-
S3Actions.SetBucketRequesterPays
-
S3Actions.GetBucketLocation
-
S3Actions.GetBucketPolicy
-
S3Actions.SetBucketPolicy
-
S3Actions.SetBucketNotificationConfiguration
-
S3Actions.GetBucketNotificationConfiguration
-
Constructor Summary
ConstructorsConstructorDescriptionS3BucketResource
(String bucketName) Constructs a new bucket resource that represents the the specified bucket but not any of the contained objects. -
Method Summary
-
Constructor Details
-
S3BucketResource
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.
-