File Coverage

blib/lib/Paws/CloudWatchLogs/DescribeExportTasks.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::CloudWatchLogs::DescribeExportTasks;
3 1     1   774 use Moose;
  1         2  
  1         10  
4             has Limit => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'limit' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6             has StatusCode => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'statusCode' );
7             has TaskId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'taskId' );
8              
9 1     1   8461 use MooseX::ClassAttribute;
  1         4  
  1         10  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeExportTasks');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudWatchLogs::DescribeExportTasksResponse');
13             class_has _result_key => (isa => 'Str', is => 'ro');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::CloudWatchLogs::DescribeExportTasks - Arguments for method DescribeExportTasks on Paws::CloudWatchLogs
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method DescribeExportTasks on the
25             Amazon CloudWatch Logs service. Use the attributes of this class
26             as arguments to method DescribeExportTasks.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeExportTasks.
29              
30             As an example:
31              
32             $service_obj->DescribeExportTasks(Att1 => $value1, Att2 => $value2, ...);
33              
34             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.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 Limit => Int
40              
41             The maximum number of items returned. If you don't specify a value, the
42             default is up to 50 items.
43              
44              
45              
46             =head2 NextToken => Str
47              
48             The token for the next set of items to return. (You received this token
49             from a previous call.)
50              
51              
52              
53             =head2 StatusCode => Str
54              
55             The status code of the export task. Specifying a status code filters
56             the results to zero or more export tasks.
57              
58             Valid values are: C<"CANCELLED">, C<"COMPLETED">, C<"FAILED">, C<"PENDING">, C<"PENDING_CANCEL">, C<"RUNNING">
59              
60             =head2 TaskId => Str
61              
62             The ID of the export task. Specifying a task ID filters the results to
63             zero or one export tasks.
64              
65              
66              
67              
68             =head1 SEE ALSO
69              
70             This class forms part of L<Paws>, documenting arguments for method DescribeExportTasks in L<Paws::CloudWatchLogs>
71              
72             =head1 BUGS and CONTRIBUTIONS
73              
74             The source code is located here: https://github.com/pplu/aws-sdk-perl
75              
76             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
77              
78             =cut
79