Amazon::SQS::Simple::SendResponse - OO API for representing responses to


Amazon-SQS-Simple documentation Contained in the Amazon-SQS-Simple distribution.

Index


Code Index:

NAME

Top

Amazon::SQS::Simple::SendResponse - OO API for representing responses to messages sent to the Amazon Simple Queue Service.

INTRODUCTION

Top

Don't instantiate this class directly. Objects of this class are returned by SendMessage in Amazon::SQS::Simple::Queue. See Amazon::SQS::Simple::Queue for more details.

METHODS

Top

MessageId()

Get the message unique identifier

MD5OfMessageBody()

Get the MD5 checksum of the message body you sent

AUTHOR

Top

Copyright 2007-2008 Simon Whitaker <swhitaker@cpan.org>

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


Amazon-SQS-Simple documentation Contained in the Amazon-SQS-Simple distribution.

package Amazon::SQS::Simple::SendResponse;

use strict;
use warnings;

sub new {
    my ($class, $msg) = @_;
    return bless ($msg, $class);
}

sub MessageId {
    my $self = shift;
    return $self->{MessageId};
}

sub MD5OfMessageBody {
    my $self = shift;
    return $self->{MD5OfMessageBody};
}

1;

__END__