1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
package Net::Amazon::S3::Request::CreateBucket;
use Moose 0.85;
extends 'Net::Amazon::S3::Request';
has 'bucket' => ( is => 'ro', isa => 'BucketName', required => 1 );
has 'acl_short' => ( is => 'ro', isa => 'Maybe[AclShort]', required => 0 );
has 'location_constraint' =>
( is => 'ro', isa => 'Maybe[LocationConstraint]', required => 0 );
__PACKAGE__->meta->make_immutable;
sub http_request {
my $self = shift;
my $headers
= ( $self->acl_short )
? { 'x-amz-acl' => $self->acl_short }
: {};
my $content = '';
if ( defined $self->location_constraint
&& $self->location_constraint eq 'EU' )
{
$content
= "<CreateBucketConfiguration><LocationConstraint>"
. $self->location_constraint
. "</LocationConstraint></CreateBucketConfiguration>";
}
return Net::Amazon::S3::HTTPRequest->new(
s3 => $self->s3,
method => 'PUT',
path => $self->bucket . '/',
headers => $headers,
content => $content,
)->http_request;
}
1;
__END__
=head1 NAME
Net::Amazon::S3::Request::CreateBucket - An internal class to create a bucket
=head1 SYNOPSIS
my $http_request = Net::Amazon::S3::Request::CreateBucket->new(
s3 => $s3,
bucket => $bucket,
acl_short => $acl_short,
location_constraint => $location_constraint,
)->http_request;
=head1 DESCRIPTION
This module creates a bucket.
=head1 METHODS
=head2 http_request
This method returns a HTTP::Request object.
|