File Coverage

blib/lib/Paws/ElasticBeanstalk/EnvironmentResourceDescription.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::ElasticBeanstalk::EnvironmentResourceDescription;
2 1     1   487 use Moose;
  1         3  
  1         8  
3             has AutoScalingGroups => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::AutoScalingGroup]');
4             has EnvironmentName => (is => 'ro', isa => 'Str');
5             has Instances => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::Instance]');
6             has LaunchConfigurations => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::LaunchConfiguration]');
7             has LoadBalancers => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::LoadBalancer]');
8             has Queues => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::Queue]');
9             has Triggers => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::Trigger]');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::ElasticBeanstalk::EnvironmentResourceDescription
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::EnvironmentResourceDescription object:
28              
29             $service_obj->Method(Att1 => { AutoScalingGroups => $value, ..., Triggers => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::EnvironmentResourceDescription object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->AutoScalingGroups
37              
38             =head1 DESCRIPTION
39              
40             Describes the AWS resources in use by this environment. This data is
41             live.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 AutoScalingGroups => ArrayRef[L<Paws::ElasticBeanstalk::AutoScalingGroup>]
47              
48             The C<AutoScalingGroups> used by this environment.
49              
50              
51             =head2 EnvironmentName => Str
52              
53             The name of the environment.
54              
55              
56             =head2 Instances => ArrayRef[L<Paws::ElasticBeanstalk::Instance>]
57              
58             The Amazon EC2 instances used by this environment.
59              
60              
61             =head2 LaunchConfigurations => ArrayRef[L<Paws::ElasticBeanstalk::LaunchConfiguration>]
62              
63             The Auto Scaling launch configurations in use by this environment.
64              
65              
66             =head2 LoadBalancers => ArrayRef[L<Paws::ElasticBeanstalk::LoadBalancer>]
67              
68             The LoadBalancers in use by this environment.
69              
70              
71             =head2 Queues => ArrayRef[L<Paws::ElasticBeanstalk::Queue>]
72              
73             The queues used by this environment.
74              
75              
76             =head2 Triggers => ArrayRef[L<Paws::ElasticBeanstalk::Trigger>]
77              
78             The C<AutoScaling> triggers in use by this environment.
79              
80              
81              
82             =head1 SEE ALSO
83              
84             This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk>
85              
86             =head1 BUGS and CONTRIBUTIONS
87              
88             The source code is located here: https://github.com/pplu/aws-sdk-perl
89              
90             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
91              
92             =cut
93