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   504 use Moose;
  1         4  
  1         8  
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 StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest'], required => 1);
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Discovery::ExportInfo
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::Discovery::ExportInfo object:
26              
27             $service_obj->Method(Att1 => { ConfigurationsDownloadUrl => $value, ..., StatusMessage => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::Discovery::ExportInfo object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->ConfigurationsDownloadUrl
35              
36             =head1 DESCRIPTION
37              
38             Information regarding the export status of the discovered data. The
39             value is an array of objects.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 ConfigurationsDownloadUrl => Str
45              
46             A URL for an Amazon S3 bucket where you can review the configuration
47             data. The URL is displayed only if the export succeeded.
48              
49              
50             =head2 B<REQUIRED> ExportId => Str
51              
52             A unique identifier that you can use to query the export.
53              
54              
55             =head2 B<REQUIRED> ExportRequestTime => Str
56              
57             The time that the configuration data export was initiated.
58              
59              
60             =head2 B<REQUIRED> ExportStatus => Str
61              
62             The status of the configuration data export. The status can succeed,
63             fail, or be in-progress.
64              
65              
66             =head2 B<REQUIRED> StatusMessage => Str
67              
68             Helpful status messages for API callers. For example: Too many exports
69             in the last 6 hours. Export in progress. Export was successful.
70              
71              
72              
73             =head1 SEE ALSO
74              
75             This class forms part of L<Paws>, describing an object used in L<Paws::Discovery>
76              
77             =head1 BUGS and CONTRIBUTIONS
78              
79             The source code is located here: https://github.com/pplu/aws-sdk-perl
80              
81             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
82              
83             =cut
84