File Coverage

blib/lib/Paws/EC2/ImportImageTask.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::ImportImageTask;
2 1     1   577 use Moose;
  1         4  
  1         8  
3             has Architecture => (is => 'ro', isa => 'Str', request_name => 'architecture', traits => ['NameInRequest']);
4             has Description => (is => 'ro', isa => 'Str', request_name => 'description', traits => ['NameInRequest']);
5             has Hypervisor => (is => 'ro', isa => 'Str', request_name => 'hypervisor', traits => ['NameInRequest']);
6             has ImageId => (is => 'ro', isa => 'Str', request_name => 'imageId', traits => ['NameInRequest']);
7             has ImportTaskId => (is => 'ro', isa => 'Str', request_name => 'importTaskId', traits => ['NameInRequest']);
8             has LicenseType => (is => 'ro', isa => 'Str', request_name => 'licenseType', traits => ['NameInRequest']);
9             has Platform => (is => 'ro', isa => 'Str', request_name => 'platform', traits => ['NameInRequest']);
10             has Progress => (is => 'ro', isa => 'Str', request_name => 'progress', traits => ['NameInRequest']);
11             has SnapshotDetails => (is => 'ro', isa => 'ArrayRef[Paws::EC2::SnapshotDetail]', request_name => 'snapshotDetailSet', traits => ['NameInRequest']);
12             has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']);
13             has StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest']);
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::EC2::ImportImageTask
21              
22             =head1 USAGE
23              
24             This class represents one of two things:
25              
26             =head3 Arguments in a call to a service
27              
28             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
29             Each attribute should be used as a named argument in the calls that expect this type of object.
30              
31             As an example, if Att1 is expected to be a Paws::EC2::ImportImageTask object:
32              
33             $service_obj->Method(Att1 => { Architecture => $value, ..., StatusMessage => $value });
34              
35             =head3 Results returned from an API call
36              
37             Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::ImportImageTask object:
38              
39             $result = $service_obj->Method(...);
40             $result->Att1->Architecture
41              
42             =head1 DESCRIPTION
43              
44             This class has no description
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 Architecture => Str
50              
51             The architecture of the virtual machine.
52              
53             Valid values: C<i386> | C<x86_64>
54              
55              
56             =head2 Description => Str
57              
58             A description of the import task.
59              
60              
61             =head2 Hypervisor => Str
62              
63             The target hypervisor for the import task.
64              
65             Valid values: C<xen>
66              
67              
68             =head2 ImageId => Str
69              
70             The ID of the Amazon Machine Image (AMI) of the imported virtual
71             machine.
72              
73              
74             =head2 ImportTaskId => Str
75              
76             The ID of the import image task.
77              
78              
79             =head2 LicenseType => Str
80              
81             The license type of the virtual machine.
82              
83              
84             =head2 Platform => Str
85              
86             The description string for the import image task.
87              
88              
89             =head2 Progress => Str
90              
91             The percentage of progress of the import image task.
92              
93              
94             =head2 SnapshotDetails => ArrayRef[L<Paws::EC2::SnapshotDetail>]
95              
96             Information about the snapshots.
97              
98              
99             =head2 Status => Str
100              
101             A brief status for the import image task.
102              
103              
104             =head2 StatusMessage => Str
105              
106             A descriptive status message for the import image task.
107              
108              
109              
110             =head1 SEE ALSO
111              
112             This class forms part of L<Paws>, describing an object used in L<Paws::EC2>
113              
114             =head1 BUGS and CONTRIBUTIONS
115              
116             The source code is located here: https://github.com/pplu/aws-sdk-perl
117              
118             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
119              
120             =cut