File Coverage

blib/lib/Paws/Discovery/ExportInfo.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             package Paws::Discovery::ExportInfo;
2 1     1   416 use Moose;
  1         4  
  1         6  
3             has ConfigurationsDownloadUrl => (is => 'ro', isa => 'Str', request_name => 'configurationsDownloadUrl', traits => ['NameInRequest']);
4             has ExportId => (is => 'ro', isa => 'Str', request_name => 'exportId', traits => ['NameInRequest'], required => 1);
5             has ExportRequestTime => (is => 'ro', isa => 'Str', request_name => 'exportRequestTime', traits => ['NameInRequest'], required => 1);
6             has ExportStatus => (is => 'ro', isa => 'Str', request_name => 'exportStatus', traits => ['NameInRequest'], required => 1);
7             has IsTruncated => (is => 'ro', isa => 'Bool', request_name => 'isTruncated', traits => ['NameInRequest']);
8             has RequestedEndTime => (is => 'ro', isa => 'Str', request_name => 'requestedEndTime', traits => ['NameInRequest']);
9             has RequestedStartTime => (is => 'ro', isa => 'Str', request_name => 'requestedStartTime', traits => ['NameInRequest']);
10             has StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest'], required => 1);
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::Discovery::ExportInfo
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::Discovery::ExportInfo object:
29              
30             $service_obj->Method(Att1 => { ConfigurationsDownloadUrl => $value, ..., StatusMessage => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::Discovery::ExportInfo object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->ConfigurationsDownloadUrl
38              
39             =head1 DESCRIPTION
40              
41             Information regarding the export status of discovered data. The value
42             is an array of objects.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 ConfigurationsDownloadUrl => Str
48              
49             A URL for an Amazon S3 bucket where you can review the exported data.
50             The URL is displayed only if the export succeeded.
51              
52              
53             =head2 B<REQUIRED> ExportId => Str
54              
55             A unique identifier used to query an export.
56              
57              
58             =head2 B<REQUIRED> ExportRequestTime => Str
59              
60             The time that the data export was initiated.
61              
62              
63             =head2 B<REQUIRED> ExportStatus => Str
64              
65             The status of the data export job.
66              
67              
68             =head2 IsTruncated => Bool
69              
70             If true, the export of agent information exceeded the size limit for a
71             single export and the exported data is incomplete for the requested
72             time range. To address this, select a smaller time range for the export
73             by using C<startDate> and C<endDate>.
74              
75              
76             =head2 RequestedEndTime => Str
77              
78             The C<endTime> used in the C<StartExportTask> request. If no C<endTime>
79             was requested, this result does not appear in C<ExportInfo>.
80              
81              
82             =head2 RequestedStartTime => Str
83              
84             The value of C<startTime> parameter in the C<StartExportTask> request.
85             If no C<startTime> was requested, this result does not appear in
86             C<ExportInfo>.
87              
88              
89             =head2 B<REQUIRED> StatusMessage => Str
90              
91             A status message provided for API callers.
92              
93              
94              
95             =head1 SEE ALSO
96              
97             This class forms part of L<Paws>, describing an object used in L<Paws::Discovery>
98              
99             =head1 BUGS and CONTRIBUTIONS
100              
101             The source code is located here: https://github.com/pplu/aws-sdk-perl
102              
103             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
104              
105             =cut
106