Jose Luis Martinez

Results 117 comments of Jose Luis Martinez

Hi, The AWS SDK doesn't have a polished off way to do multipart uploads and donwloads, although it should give you access to do them with the appropiate S3 calls....

Hmmm... strange, since Paws::Credentials::File should be honoring the ENV var. https://github.com/pplu/aws-sdk-perl/blob/master/lib/Paws/Credential/File.pm Can you try the following script? Does that behave correctly? It may help you isolate the problem. ``` use...

Thanks for your feedback! What got you to putting '_source' in the profile name? Is there a tool that does this? I'm trying to find out if we should support...

I've been able to send with this code: ``` use Paws; my $email = Paws->service('SES', region => 'eu-west-1'); # SendEmail # The following example sends a formatted email: my $SendEmailResponse...

The server name and port are derived from information from the service and the region. Watch out: SES is not available in us-west-2. I think it's only eu-west-1 and us-west-1!

Did you get this to work? (I've been on vacation) SES has two ways of sending mail: API and SMTP and is only available in some regions: https://docs.aws.amazon.com/general/latest/gr/rande.html#ses_region The ports...

Hi, This seems like an issue on old CentOS / RedHats with Perl 5.10 Take a look at https://github.com/pplu/aws-sdk-perl/issues/183. Basically the solution was to untar the Paws tar.gz manually and...

> And that has various dependencies with Carton that doesn't seem to work for other reasons, so no problem, I'm currently just using the ec2 console tools. Thanks for the...

Force installing (no tests) Paws on a Windows should give you a working Paws. It fails one test that should be skipped on Windows #259

Hi. This is definitely a Paws issue that needs looking into. The should be happening inside of Paws::Net::RestXmlCaller, line 67. I if you add a space to the safe characters...