package
AWS::S3::Request::GetFileContents;
use
Moose;
use
AWS::S3::Signer;
has
'bucket'
=> (
is
=>
'ro'
,
isa
=>
'Str'
,
required
=> 1 );
has
'key'
=> (
is
=>
'ro'
,
isa
=>
'Str'
,
required
=> 1 );
has
'+_action'
=> (
default
=>
'GET'
);
has
'+_expect_nothing'
=> (
default
=> 0 );
__PACKAGE__->meta->make_immutable;