AWS-S3

 view release on metacpan or  search on metacpan

lib/AWS/S3/Request/GetBucketPolicy.pm  view on Meta::CPAN


package AWS::S3::Request::GetBucketPolicy;

use Moose;
use AWS::S3::ResponseParser;

with 'AWS::S3::Roles::BucketAction';

has '+_action' => ( default => 'GET' );

has 'bucket' => ( is => 'ro', isa => 'Str', required => 1 );

has '_subresource' => (
  is       => 'ro',
  isa      => 'Str',
  init_arg => undef,
  default  => 'policy'
);

has '+_expect_nothing' => ( default => 0 );

__PACKAGE__->meta->make_immutable;



( run in 0.588 second using v1.01-cache-2.11-cpan-39bf76dae61 )