line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ElasticBeanstalk::PlatformSummary; |
2
|
1
|
|
|
1
|
|
316
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has OperatingSystemName => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has OperatingSystemVersion => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has PlatformArn => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has PlatformCategory => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has PlatformOwner => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has PlatformStatus => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has SupportedAddonList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
10
|
|
|
|
|
|
|
has SupportedTierList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::ElasticBeanstalk::PlatformSummary |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 USAGE |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This class represents one of two things: |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
26
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::PlatformSummary object: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { OperatingSystemName => $value, ..., SupportedTierList => $value }); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head3 Results returned from an API call |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::PlatformSummary object: |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
37
|
|
|
|
|
|
|
$result->Att1->OperatingSystemName |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 DESCRIPTION |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Detailed information about a platform. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 OperatingSystemName => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The operating system used by the platform. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 OperatingSystemVersion => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The version of the operating system used by the platform. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 PlatformArn => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The ARN of the platform. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 PlatformCategory => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The category of platform. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 PlatformOwner => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The AWS account ID of the person who created the platform. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head2 PlatformStatus => Str |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
The status of the platform. You can create an environment from the |
74
|
|
|
|
|
|
|
platform once it is ready. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 SupportedAddonList => ArrayRef[Str|Undef] |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The additions associated with the platform. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 SupportedTierList => ArrayRef[Str|Undef] |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The tiers in which the platform runs. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=head1 SEE ALSO |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk> |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=cut |
99
|
|
|
|
|
|
|
|