File Coverage

blib/lib/Paws/Route53/HealthCheck.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::Route53::HealthCheck;
2 1     1   297 use Moose;
  1         3  
  1         6  
3             has CallerReference => (is => 'ro', isa => 'Str', required => 1);
4             has CloudWatchAlarmConfiguration => (is => 'ro', isa => 'Paws::Route53::CloudWatchAlarmConfiguration');
5             has HealthCheckConfig => (is => 'ro', isa => 'Paws::Route53::HealthCheckConfig', required => 1);
6             has HealthCheckVersion => (is => 'ro', isa => 'Int', required => 1);
7             has Id => (is => 'ro', isa => 'Str', required => 1);
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Route53::HealthCheck
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::Route53::HealthCheck object:
26              
27             $service_obj->Method(Att1 => { CallerReference => $value, ..., Id => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::Route53::HealthCheck object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->CallerReference
35              
36             =head1 DESCRIPTION
37              
38             A complex type that contains information about one health check that is
39             associated with the current AWS account.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 B<REQUIRED> CallerReference => Str
45              
46             A unique string that you specified when you created the health check.
47              
48              
49             =head2 CloudWatchAlarmConfiguration => L<Paws::Route53::CloudWatchAlarmConfiguration>
50              
51             A complex type that contains information about the CloudWatch alarm
52             that Amazon Route 53 is monitoring for this health check.
53              
54              
55             =head2 B<REQUIRED> HealthCheckConfig => L<Paws::Route53::HealthCheckConfig>
56              
57             A complex type that contains detailed information about one health
58             check.
59              
60              
61             =head2 B<REQUIRED> HealthCheckVersion => Int
62              
63             The version of the health check. You can optionally pass this value in
64             a call to C<UpdateHealthCheck> to prevent overwriting another change to
65             the health check.
66              
67              
68             =head2 B<REQUIRED> Id => Str
69              
70             The identifier that Amazon Route 53assigned to the health check when
71             you created it. When you add or update a resource record set, you use
72             this value to specify which health check to use. The value can be up to
73             64 characters long.
74              
75              
76              
77             =head1 SEE ALSO
78              
79             This class forms part of L<Paws>, describing an object used in L<Paws::Route53>
80              
81             =head1 BUGS and CONTRIBUTIONS
82              
83             The source code is located here: https://github.com/pplu/aws-sdk-perl
84              
85             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
86              
87             =cut
88