File Coverage

blib/lib/Paws/EC2/SnapshotTaskDetail.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::EC2::SnapshotTaskDetail;
2 1     1   607 use Moose;
  1         4  
  1         12  
3             has Description => (is => 'ro', isa => 'Str', request_name => 'description', traits => ['NameInRequest']);
4             has DiskImageSize => (is => 'ro', isa => 'Num', request_name => 'diskImageSize', traits => ['NameInRequest']);
5             has Format => (is => 'ro', isa => 'Str', request_name => 'format', traits => ['NameInRequest']);
6             has Progress => (is => 'ro', isa => 'Str', request_name => 'progress', traits => ['NameInRequest']);
7             has SnapshotId => (is => 'ro', isa => 'Str', request_name => 'snapshotId', traits => ['NameInRequest']);
8             has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']);
9             has StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest']);
10             has Url => (is => 'ro', isa => 'Str', request_name => 'url', traits => ['NameInRequest']);
11             has UserBucket => (is => 'ro', isa => 'Paws::EC2::UserBucketDetails', request_name => 'userBucket', traits => ['NameInRequest']);
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::EC2::SnapshotTaskDetail
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::EC2::SnapshotTaskDetail object:
30              
31             $service_obj->Method(Att1 => { Description => $value, ..., UserBucket => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::SnapshotTaskDetail object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->Description
39              
40             =head1 DESCRIPTION
41              
42             This class has no description
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 Description => Str
48              
49             The description of the snapshot.
50              
51              
52             =head2 DiskImageSize => Num
53              
54             The size of the disk in the snapshot, in GiB.
55              
56              
57             =head2 Format => Str
58              
59             The format of the disk image from which the snapshot is created.
60              
61              
62             =head2 Progress => Str
63              
64             The percentage of completion for the import snapshot task.
65              
66              
67             =head2 SnapshotId => Str
68              
69             The snapshot ID of the disk being imported.
70              
71              
72             =head2 Status => Str
73              
74             A brief status for the import snapshot task.
75              
76              
77             =head2 StatusMessage => Str
78              
79             A detailed status message for the import snapshot task.
80              
81              
82             =head2 Url => Str
83              
84             The URL of the disk image from which the snapshot is created.
85              
86              
87             =head2 UserBucket => L<Paws::EC2::UserBucketDetails>
88              
89             The S3 bucket for the disk image.
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, describing an object used in L<Paws::EC2>
96              
97             =head1 BUGS and CONTRIBUTIONS
98              
99             The source code is located here: https://github.com/pplu/aws-sdk-perl
100              
101             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
102              
103             =cut