line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SQS::SendMessageResult; |
3
|
1
|
|
|
1
|
|
313
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
302
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
4
|
|
|
|
|
|
|
has MD5OfMessageAttributes => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has MD5OfMessageBody => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has MessageId => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has SequenceNumber => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::SQS::SendMessageResult |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 MD5OfMessageAttributes => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
An MD5 digest of the non-URL-encoded message attribute string. You can |
24
|
|
|
|
|
|
|
use this attribute to verify that Amazon SQS received the message |
25
|
|
|
|
|
|
|
correctly. Amazon SQS URL-decodes the message before creating the MD5 |
26
|
|
|
|
|
|
|
digest. For information about MD5, see RFC1321. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 MD5OfMessageBody => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
An MD5 digest of the non-URL-encoded message attribute string. You can |
32
|
|
|
|
|
|
|
use this attribute to verify that Amazon SQS received the message |
33
|
|
|
|
|
|
|
correctly. Amazon SQS URL-decodes the message before creating the MD5 |
34
|
|
|
|
|
|
|
digest. For information about MD5, see RFC1321. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 MessageId => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
An attribute containing the C<MessageId> of the message sent to the |
40
|
|
|
|
|
|
|
queue. For more information, see Queue and Message Identifiers in the |
41
|
|
|
|
|
|
|
I<Amazon SQS Developer Guide>. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 SequenceNumber => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This parameter applies only to FIFO (first-in-first-out) queues. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The large, non-consecutive number that Amazon SQS assigns to each |
49
|
|
|
|
|
|
|
message. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The length of C<SequenceNumber> is 128 bits. C<SequenceNumber> |
52
|
|
|
|
|
|
|
continues to increase for a particular C<MessageGroupId>. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 _request_id => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|