line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ELBv2::Listener; |
2
|
1
|
|
|
1
|
|
285
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has Certificates => (is => 'ro', isa => 'ArrayRef[Paws::ELBv2::Certificate]'); |
4
|
|
|
|
|
|
|
has DefaultActions => (is => 'ro', isa => 'ArrayRef[Paws::ELBv2::Action]'); |
5
|
|
|
|
|
|
|
has ListenerArn => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has LoadBalancerArn => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Port => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
has Protocol => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has SslPolicy => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::ELBv2::Listener |
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::ELBv2::Listener object: |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Certificates => $value, ..., SslPolicy => $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::ELBv2::Listener object: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
36
|
|
|
|
|
|
|
$result->Att1->Certificates |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 DESCRIPTION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Information about a listener. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 Certificates => ArrayRef[L<Paws::ELBv2::Certificate>] |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The SSL server certificate. You must provide a certificate if the |
48
|
|
|
|
|
|
|
protocol is HTTPS. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 DefaultActions => ArrayRef[L<Paws::ELBv2::Action>] |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The default actions for the listener. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 ListenerArn => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the listener. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 LoadBalancerArn => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the load balancer. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 Port => Int |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The port on which the load balancer is listening. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head2 Protocol => Str |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
The protocol for connections from clients to the load balancer. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 SslPolicy => Str |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
The security policy that defines which ciphers and protocols are |
79
|
|
|
|
|
|
|
supported. The default is the current predefined security policy. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 SEE ALSO |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ELBv2> |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=cut |
94
|
|
|
|
|
|
|
|