File Coverage

blib/lib/Paws/ELBv2/ModifyTargetGroup.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ELBv2::ModifyTargetGroup;
3 1     1   914 use Moose;
  1         7  
  1         13  
4             has HealthCheckIntervalSeconds => (is => 'ro', isa => 'Int');
5             has HealthCheckPath => (is => 'ro', isa => 'Str');
6             has HealthCheckPort => (is => 'ro', isa => 'Str');
7             has HealthCheckProtocol => (is => 'ro', isa => 'Str');
8             has HealthCheckTimeoutSeconds => (is => 'ro', isa => 'Int');
9             has HealthyThresholdCount => (is => 'ro', isa => 'Int');
10             has Matcher => (is => 'ro', isa => 'Paws::ELBv2::Matcher');
11             has TargetGroupArn => (is => 'ro', isa => 'Str', required => 1);
12             has UnhealthyThresholdCount => (is => 'ro', isa => 'Int');
13              
14 1     1   7981 use MooseX::ClassAttribute;
  1         5  
  1         17  
15              
16             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ModifyTargetGroup');
17             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ELBv2::ModifyTargetGroupOutput');
18             class_has _result_key => (isa => 'Str', is => 'ro', default => 'ModifyTargetGroupResult');
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::ELBv2::ModifyTargetGroup - Arguments for method ModifyTargetGroup on Paws::ELBv2
26              
27             =head1 DESCRIPTION
28              
29             This class represents the parameters used for calling the method ModifyTargetGroup on the
30             Elastic Load Balancing service. Use the attributes of this class
31             as arguments to method ModifyTargetGroup.
32              
33             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ModifyTargetGroup.
34              
35             As an example:
36              
37             $service_obj->ModifyTargetGroup(Att1 => $value1, Att2 => $value2, ...);
38              
39             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 HealthCheckIntervalSeconds => Int
45              
46             The approximate amount of time, in seconds, between health checks of an
47             individual target.
48              
49              
50              
51             =head2 HealthCheckPath => Str
52              
53             The ping path that is the destination for the health check request.
54              
55              
56              
57             =head2 HealthCheckPort => Str
58              
59             The port to use to connect with the target.
60              
61              
62              
63             =head2 HealthCheckProtocol => Str
64              
65             The protocol to use to connect with the target.
66              
67             Valid values are: C<"HTTP">, C<"HTTPS">
68              
69             =head2 HealthCheckTimeoutSeconds => Int
70              
71             The amount of time, in seconds, during which no response means a failed
72             health check.
73              
74              
75              
76             =head2 HealthyThresholdCount => Int
77              
78             The number of consecutive health checks successes required before
79             considering an unhealthy target healthy.
80              
81              
82              
83             =head2 Matcher => L<Paws::ELBv2::Matcher>
84              
85             The HTTP codes to use when checking for a successful response from a
86             target.
87              
88              
89              
90             =head2 B<REQUIRED> TargetGroupArn => Str
91              
92             The Amazon Resource Name (ARN) of the target group.
93              
94              
95              
96             =head2 UnhealthyThresholdCount => Int
97              
98             The number of consecutive health check failures required before
99             considering the target unhealthy.
100              
101              
102              
103              
104             =head1 SEE ALSO
105              
106             This class forms part of L<Paws>, documenting arguments for method ModifyTargetGroup in L<Paws::ELBv2>
107              
108             =head1 BUGS and CONTRIBUTIONS
109              
110             The source code is located here: https://github.com/pplu/aws-sdk-perl
111              
112             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
113              
114             =cut
115