line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::EC2::ImportInstanceLaunchSpecification; |
2
|
1
|
|
|
1
|
|
403
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has AdditionalInfo => (is => 'ro', isa => 'Str', request_name => 'additionalInfo', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has Architecture => (is => 'ro', isa => 'Str', request_name => 'architecture', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has GroupIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'GroupId', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
has GroupNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'GroupName', traits => ['NameInRequest']); |
7
|
|
|
|
|
|
|
has InstanceInitiatedShutdownBehavior => (is => 'ro', isa => 'Str', request_name => 'instanceInitiatedShutdownBehavior', traits => ['NameInRequest']); |
8
|
|
|
|
|
|
|
has InstanceType => (is => 'ro', isa => 'Str', request_name => 'instanceType', traits => ['NameInRequest']); |
9
|
|
|
|
|
|
|
has Monitoring => (is => 'ro', isa => 'Bool', request_name => 'monitoring', traits => ['NameInRequest']); |
10
|
|
|
|
|
|
|
has Placement => (is => 'ro', isa => 'Paws::EC2::Placement', request_name => 'placement', traits => ['NameInRequest']); |
11
|
|
|
|
|
|
|
has PrivateIpAddress => (is => 'ro', isa => 'Str', request_name => 'privateIpAddress', traits => ['NameInRequest']); |
12
|
|
|
|
|
|
|
has SubnetId => (is => 'ro', isa => 'Str', request_name => 'subnetId', traits => ['NameInRequest']); |
13
|
|
|
|
|
|
|
has UserData => (is => 'ro', isa => 'Paws::EC2::UserData', request_name => 'userData', traits => ['NameInRequest']); |
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::EC2::ImportInstanceLaunchSpecification |
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::ImportInstanceLaunchSpecification object: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AdditionalInfo => $value, ..., UserData => $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::ImportInstanceLaunchSpecification object: |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
40
|
|
|
|
|
|
|
$result->Att1->AdditionalInfo |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 DESCRIPTION |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This class has no description |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 AdditionalInfo => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Reserved. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 Architecture => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The architecture of the instance. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 GroupIds => ArrayRef[Str|Undef] |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
One or more security group IDs. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 GroupNames => ArrayRef[Str|Undef] |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
One or more security group names. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 InstanceInitiatedShutdownBehavior => Str |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
Indicates whether an instance stops or terminates when you initiate |
72
|
|
|
|
|
|
|
shutdown from the instance (using the operating system command for |
73
|
|
|
|
|
|
|
system shutdown). |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 InstanceType => Str |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
The instance type. For more information about the instance types that |
79
|
|
|
|
|
|
|
you can import, see Instance Types in the VM Import/Export User Guide. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 Monitoring => Bool |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
Indicates whether monitoring is enabled. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head2 Placement => L<Paws::EC2::Placement> |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The placement information for the instance. |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head2 PrivateIpAddress => Str |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
[EC2-VPC] An available IP address from the IP address range of the |
95
|
|
|
|
|
|
|
subnet. |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head2 SubnetId => Str |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
[EC2-VPC] The ID of the subnet in which to launch the instance. |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head2 UserData => L<Paws::EC2::UserData> |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
The user data to make available to the instance. If you are using an |
106
|
|
|
|
|
|
|
AWS SDK or command line tool, Base64-encoding is performed for you, and |
107
|
|
|
|
|
|
|
you can load the text from a file. Otherwise, you must provide |
108
|
|
|
|
|
|
|
Base64-encoded text. |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=head1 SEE ALSO |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::EC2> |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
=cut |