File Coverage

blib/lib/Paws/Discovery/DescribeExportTasksResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Discovery::DescribeExportTasksResponse;
3 1     1   578 use Moose;
  1         3  
  1         7  
4             has ExportsInfo => (is => 'ro', isa => 'ArrayRef[Paws::Discovery::ExportInfo]', traits => ['NameInRequest'], request_name => 'exportsInfo' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Discovery::DescribeExportTasksResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 ExportsInfo => ArrayRef[L<Paws::Discovery::ExportInfo>]
19              
20             Contains one or more sets of export request details. When the status of
21             a request is C<SUCCEEDED>, the response includes a URL for an Amazon S3
22             bucket where you can view the data in a CSV file.
23              
24              
25             =head2 NextToken => Str
26              
27             The C<nextToken> value to include in a future C<DescribeExportTasks>
28             request. When the results of a C<DescribeExportTasks> request exceed
29             C<maxResults>, this value can be used to retrieve the next page of
30             results. This value is null when there are no more results to return.
31              
32              
33             =head2 _request_id => Str
34              
35              
36             =cut
37              
38             1;