You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use strict;
use warnings;
use Paws;
use Paws::Credential::Explicit;
use Data::Dumper::Concise;
my$cf_service = Paws->service('CloudFront',
region=>'us-east-1',
credentials=> Paws::Credential::Explicit->new(
access_key=>'***',
secret_key=>'***',
session_token=>'***'
)
);
my$response = $cf_service->ListDistributions();
say Dumper($response);
I'm trying this code:
And I just get:
There seems to be no data inside. Also tried
GetDistribution
and the result was the same.If I dump
$response->{content}
inPaws/Net/Caller.pm
, the data seems to be there:I guess Paws doesn't manage to transform that correctly to whatever it uses internally :-/
The text was updated successfully, but these errors were encountered: