line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ElasticBeanstalk::PlatformDescription; |
2
|
1
|
|
|
1
|
|
365
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has CustomAmiList => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::CustomAmi]'); |
4
|
|
|
|
|
|
|
has DateCreated => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has DateUpdated => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Frameworks => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::PlatformFramework]'); |
8
|
|
|
|
|
|
|
has Maintainer => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has OperatingSystemName => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has OperatingSystemVersion => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has PlatformArn => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has PlatformCategory => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
has PlatformName => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
has PlatformOwner => (is => 'ro', isa => 'Str'); |
15
|
|
|
|
|
|
|
has PlatformStatus => (is => 'ro', isa => 'Str'); |
16
|
|
|
|
|
|
|
has PlatformVersion => (is => 'ro', isa => 'Str'); |
17
|
|
|
|
|
|
|
has ProgrammingLanguages => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::PlatformProgrammingLanguage]'); |
18
|
|
|
|
|
|
|
has SolutionStackName => (is => 'ro', isa => 'Str'); |
19
|
|
|
|
|
|
|
has SupportedAddonList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
20
|
|
|
|
|
|
|
has SupportedTierList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
### main pod documentation begin ### |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 NAME |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Paws::ElasticBeanstalk::PlatformDescription |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 USAGE |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This class represents one of two things: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
36
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::PlatformDescription object: |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { CustomAmiList => $value, ..., SupportedTierList => $value }); |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head3 Results returned from an API call |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::PlatformDescription object: |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
47
|
|
|
|
|
|
|
$result->Att1->CustomAmiList |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 DESCRIPTION |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Detailed information about a platform. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 CustomAmiList => ArrayRef[L<Paws::ElasticBeanstalk::CustomAmi>] |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The custom AMIs supported by the platform. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 DateCreated => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The date when the platform was created. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 DateUpdated => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The date when the platform was last updated. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head2 Description => Str |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
The description of the platform. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 Frameworks => ArrayRef[L<Paws::ElasticBeanstalk::PlatformFramework>] |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
The frameworks supported by the platform. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head2 Maintainer => Str |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Information about the maintainer of the platform. |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head2 OperatingSystemName => Str |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
The operating system used by the platform. |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head2 OperatingSystemVersion => Str |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
The version of the operating system used by the platform. |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head2 PlatformArn => Str |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
The ARN of the platform. |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head2 PlatformCategory => Str |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
The category of the platform. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head2 PlatformName => Str |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
The name of the platform. |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=head2 PlatformOwner => Str |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
The AWS account ID of the person who created the platform. |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head2 PlatformStatus => Str |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
The status of the platform. |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
=head2 PlatformVersion => Str |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
The version of the platform. |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
=head2 ProgrammingLanguages => ArrayRef[L<Paws::ElasticBeanstalk::PlatformProgrammingLanguage>] |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
The programming languages supported by the platform. |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
=head2 SolutionStackName => Str |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
The name of the solution stack used by the platform. |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
=head2 SupportedAddonList => ArrayRef[Str|Undef] |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
The additions supported by the platform. |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head2 SupportedTierList => ArrayRef[Str|Undef] |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
The tiers supported by the platform. |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
=head1 SEE ALSO |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk> |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=cut |
158
|
|
|
|
|
|
|
|