Amazon-SES
view release on metacpan or search on metacpan
lib/Amazon/SES/Response.pm view on Meta::CPAN
Same as C<result()>, except converts the data into JSON notation
=cut
method result_as_json() {
return JSON::XS->new->allow_nonref->encode([$self->result]);
};
=head2 raw_content()
This is the raw (unparsed) by decoded HTTP content as returned from the AWS SES. Usually you do not need it. If you think you need it just knock yourself out!
=cut
method raw_content() {
return $self->response->decoded_content;
};
=head2 is_success()
=head2 is_error()
This is the first thing you should check after each request().
=cut
( run in 0.339 second using v1.01-cache-2.11-cpan-26ccb49234f )