File Coverage

blib/lib/Paws/SQS/MessageSystemAttributeMap.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Paws::SQS::MessageSystemAttributeMap;
2 1     1   663 use Moose;
  1     1   3  
  1         11  
  1         662  
  1         3  
  1         8  
3             with 'Paws::API::MapParser';
4              
5 1     1   5647 use MooseX::ClassAttribute;
  1     1   3  
  1         10  
  1         5570  
  1         2  
  1         8  
6             class_has xml_keys =>(is => 'ro', default => 'Name');
7             class_has xml_values =>(is => 'ro', default => 'Value');
8              
9             has ApproximateFirstReceiveTimestamp => (is => 'ro', isa => 'Str');
10             has ApproximateReceiveCount => (is => 'ro', isa => 'Str');
11             has MessageDeduplicationId => (is => 'ro', isa => 'Str');
12             has MessageGroupId => (is => 'ro', isa => 'Str');
13             has SenderId => (is => 'ro', isa => 'Str');
14             has SentTimestamp => (is => 'ro', isa => 'Str');
15             has SequenceNumber => (is => 'ro', isa => 'Str');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::SQS::MessageSystemAttributeMap
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::SQS::MessageSystemAttributeMap object:
34              
35             $service_obj->Method(Att1 => { ApproximateFirstReceiveTimestamp => $value, ..., SequenceNumber => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::SQS::MessageSystemAttributeMap object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->ApproximateFirstReceiveTimestamp
43              
44             =head1 DESCRIPTION
45              
46             This class has no description
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 ApproximateFirstReceiveTimestamp => Str
52              
53              
54             =head2 ApproximateReceiveCount => Str
55              
56              
57             =head2 MessageDeduplicationId => Str
58              
59              
60             =head2 MessageGroupId => Str
61              
62              
63             =head2 SenderId => Str
64              
65              
66             =head2 SentTimestamp => Str
67              
68              
69             =head2 SequenceNumber => Str
70              
71              
72              
73             =head1 SEE ALSO
74              
75             This class forms part of L<Paws>, describing an object used in L<Paws::SQS>
76              
77             =head1 BUGS and CONTRIBUTIONS
78              
79             The source code is located here: https://github.com/pplu/aws-sdk-perl
80              
81             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
82              
83             =cut
84