NAME
AWS::S3::Bucket - Object representation of S3 Buckets
SYNOPSIS
See The SYNOPSIS from AWS::S3 for usage details.
CONSTRUCTOR
Call new()
with the following parameters.
PUBLIC PROPERTIES
s3
Required. An AWS::S3 object.
Read-only.
name
Required. String.
The name of the bucket.
Read-only.
creation_date
String. Returned from the S3 service itself.
Read-only.
acl
String. Returns XML string.
Read-only.
TODO: Implement setting the ACL properly.
See also PUT Bucket ACL
location_constraint
String. Accepts valid location constraint values.
EU
us-west-1
us-west-2
ap-southeast-1
ap-northeast-1
The default value is 'US'.
See also PUT Bucket
policy
Read-only. String of JSON.
Looks something like this:
{
"Version":"2008-10-17",
"Id":"aaaa-bbbb-cccc-dddd",
"Statement" : [
{
"Effect":"Deny",
"Sid":"1",
"Principal" : {
"AWS":["1-22-333-4444","3-55-678-9100"]
},
"Action":["s3:*"],
"Resource":"arn:aws:s3:::bucket/*",
}
]
}
See also GET Bucket Policy
PUBLIC METHODS
files( page_size => $size, page_number => $number, [[marker => $marker,] pattern => qr/$pattern/ ] )
Returns a AWS::S3::FileIterator object with the supplied arguments.
Use the AWS::S3::FileIterator to page through your results.
file( $key )
Finds the file with that $key
and returns an AWS::S3::File object for it.
SEE ALSO
The Amazon S3 API Documentation
AUTHOR
John Drago <jdrago_999@yahoo.com>
LICENSE AND COPYRIGHT
This software is Free software and may be used and redistributed under the same terms as any version of perl itself.
Copyright John Drago 2011 all rights reserved.