File Coverage

blib/lib/Paws/OpsWorks/ElasticLoadBalancer.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::OpsWorks::ElasticLoadBalancer;
2 1     1   596 use Moose;
  1         4  
  1         7  
3             has AvailabilityZones => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
4             has DnsName => (is => 'ro', isa => 'Str');
5             has Ec2InstanceIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
6             has ElasticLoadBalancerName => (is => 'ro', isa => 'Str');
7             has LayerId => (is => 'ro', isa => 'Str');
8             has Region => (is => 'ro', isa => 'Str');
9             has StackId => (is => 'ro', isa => 'Str');
10             has SubnetIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
11             has VpcId => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::OpsWorks::ElasticLoadBalancer
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::OpsWorks::ElasticLoadBalancer object:
30              
31             $service_obj->Method(Att1 => { AvailabilityZones => $value, ..., VpcId => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::OpsWorks::ElasticLoadBalancer object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->AvailabilityZones
39              
40             =head1 DESCRIPTION
41              
42             Describes an Elastic Load Balancing instance.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 AvailabilityZones => ArrayRef[Str|Undef]
48              
49             A list of Availability Zones.
50              
51              
52             =head2 DnsName => Str
53              
54             The instance's public DNS name.
55              
56              
57             =head2 Ec2InstanceIds => ArrayRef[Str|Undef]
58              
59             A list of the EC2 instances that the Elastic Load Balancing instance is
60             managing traffic for.
61              
62              
63             =head2 ElasticLoadBalancerName => Str
64              
65             The Elastic Load Balancing instance's name.
66              
67              
68             =head2 LayerId => Str
69              
70             The ID of the layer that the instance is attached to.
71              
72              
73             =head2 Region => Str
74              
75             The instance's AWS region.
76              
77              
78             =head2 StackId => Str
79              
80             The ID of the stack that the instance is associated with.
81              
82              
83             =head2 SubnetIds => ArrayRef[Str|Undef]
84              
85             A list of subnet IDs, if the stack is running in a VPC.
86              
87              
88             =head2 VpcId => Str
89              
90             The VPC ID.
91              
92              
93              
94             =head1 SEE ALSO
95              
96             This class forms part of L<Paws>, describing an object used in L<Paws::OpsWorks>
97              
98             =head1 BUGS and CONTRIBUTIONS
99              
100             The source code is located here: https://github.com/pplu/aws-sdk-perl
101              
102             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
103              
104             =cut
105