| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Discovery::DescribeExportConfigurationsResponse; |
|
3
|
1
|
|
|
1
|
|
490
|
use Moose; |
|
|
1
|
|
|
|
|
5
|
|
|
|
1
|
|
|
|
|
11
|
|
|
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::DescribeExportConfigurationsResponse |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 ExportsInfo => ArrayRef[L<Paws::Discovery::ExportInfo>] |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Returns export details. When the status is complete, the response |
|
21
|
|
|
|
|
|
|
includes a URL for an Amazon S3 bucket where you can view the data in a |
|
22
|
|
|
|
|
|
|
CSV file. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 NextToken => Str |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
A token to get the next set of results. For example, if you specify 100 |
|
28
|
|
|
|
|
|
|
IDs for C<DescribeExportConfigurationsRequest$exportIds> but set |
|
29
|
|
|
|
|
|
|
C<DescribeExportConfigurationsRequest$maxResults> to 10, you get |
|
30
|
|
|
|
|
|
|
results in a set of 10. Use the token in the query to get the next set |
|
31
|
|
|
|
|
|
|
of 10. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
1; |