File Coverage

blib/lib/Paws/DAX/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::DAX::DescribeEvents;
3 1     1   610 use Moose;
  1         3  
  1         9  
4             has Duration => (is => 'ro', isa => 'Int');
5             has EndTime => (is => 'ro', isa => 'Str');
6             has MaxResults => (is => 'ro', isa => 'Int');
7             has NextToken => (is => 'ro', isa => 'Str');
8             has SourceName => (is => 'ro', isa => 'Str');
9             has SourceType => (is => 'ro', isa => 'Str');
10             has StartTime => (is => 'ro', isa => 'Str');
11              
12 1     1   8922 use MooseX::ClassAttribute;
  1         4  
  1         11  
13              
14             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeEvents');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DAX::DescribeEventsResponse');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::DAX::DescribeEvents - Arguments for method DescribeEvents on Paws::DAX
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method DescribeEvents on the
28             Amazon DynamoDB Accelerator (DAX) 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              
54              
55             =head2 MaxResults => Int
56              
57             The maximum number of results to include in the response. If more
58             results exist than the specified C<MaxResults> value, a token is
59             included in the response so that the remaining results can be
60             retrieved.
61              
62             The value for C<MaxResults> must be between 20 and 100.
63              
64              
65              
66             =head2 NextToken => Str
67              
68             An optional token returned from a prior request. Use this token for
69             pagination of results from this action. If this parameter is specified,
70             the response includes only results beyond the token, up to the value
71             specified by C<MaxResults>.
72              
73              
74              
75             =head2 SourceName => Str
76              
77             The identifier of the event source for which events will be returned.
78             If not specified, then all sources are included in the response.
79              
80              
81              
82             =head2 SourceType => Str
83              
84             The event source to retrieve events for. If no value is specified, all
85             events are returned.
86              
87             Valid values are: C<"CLUSTER">, C<"PARAMETER_GROUP">, C<"SUBNET_GROUP">
88              
89             =head2 StartTime => Str
90              
91             The beginning of the time interval to retrieve events for, specified in
92             ISO 8601 format.
93              
94              
95              
96              
97             =head1 SEE ALSO
98              
99             This class forms part of L<Paws>, documenting arguments for method DescribeEvents in L<Paws::DAX>
100              
101             =head1 BUGS and CONTRIBUTIONS
102              
103             The source code is located here: https://github.com/pplu/aws-sdk-perl
104              
105             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
106              
107             =cut
108