File Coverage

blib/lib/Paws/ElastiCache/DescribeEvents.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ElastiCache::DescribeEvents;
3 1     1   541 use Moose;
  1         2  
  1         9  
4             has Duration => (is => 'ro', isa => 'Int');
5             has EndTime => (is => 'ro', isa => 'Str');
6             has Marker => (is => 'ro', isa => 'Str');
7             has MaxRecords => (is => 'ro', isa => 'Int');
8             has SourceIdentifier => (is => 'ro', isa => 'Str');
9             has SourceType => (is => 'ro', isa => 'Str');
10             has StartTime => (is => 'ro', isa => 'Str');
11              
12 1     1   8286 use MooseX::ClassAttribute;
  1         5  
  1         13  
13              
14             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeEvents');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ElastiCache::EventsMessage');
16             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeEventsResult');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::ElastiCache::DescribeEvents - Arguments for method DescribeEvents on Paws::ElastiCache
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method DescribeEvents on the
28             Amazon ElastiCache service. Use the attributes of this class
29             as arguments to method DescribeEvents.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeEvents.
32              
33             As an example:
34              
35             $service_obj->DescribeEvents(Att1 => $value1, Att2 => $value2, ...);
36              
37             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 Duration => Int
43              
44             The number of minutes worth of events to retrieve.
45              
46              
47              
48             =head2 EndTime => Str
49              
50             The end of the time interval for which to retrieve events, specified in
51             ISO 8601 format.
52              
53             B<Example:> 2017-03-30T07:03:49.555Z
54              
55              
56              
57             =head2 Marker => Str
58              
59             An optional marker returned from a prior request. Use this marker for
60             pagination of results from this operation. If this parameter is
61             specified, the response includes only records beyond the marker, up to
62             the value specified by C<MaxRecords>.
63              
64              
65              
66             =head2 MaxRecords => Int
67              
68             The maximum number of records to include in the response. If more
69             records exist than the specified C<MaxRecords> value, a marker is
70             included in the response so that the remaining results can be
71             retrieved.
72              
73             Default: 100
74              
75             Constraints: minimum 20; maximum 100.
76              
77              
78              
79             =head2 SourceIdentifier => Str
80              
81             The identifier of the event source for which events are returned. If
82             not specified, all sources are included in the response.
83              
84              
85              
86             =head2 SourceType => Str
87              
88             The event source to retrieve events for. If no value is specified, all
89             events are returned.
90              
91             Valid values are: C<"cache-cluster">, C<"cache-parameter-group">, C<"cache-security-group">, C<"cache-subnet-group">, C<"replication-group">
92              
93             =head2 StartTime => Str
94              
95             The beginning of the time interval to retrieve events for, specified in
96             ISO 8601 format.
97              
98             B<Example:> 2017-03-30T07:03:49.555Z
99              
100              
101              
102              
103             =head1 SEE ALSO
104              
105             This class forms part of L<Paws>, documenting arguments for method DescribeEvents in L<Paws::ElastiCache>
106              
107             =head1 BUGS and CONTRIBUTIONS
108              
109             The source code is located here: https://github.com/pplu/aws-sdk-perl
110              
111             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
112              
113             =cut
114